I'm looking to integrate ckeditor into a project but would really like it as a dependency managed with composer. Does anyone know if a package exists, there are other packages for use with franeworks like symfony but I just need the straight ckeditor as a package that I can keep easily updated with composer.
Thanks, Kev
I checked there git
I checked there git repositorys and saw no composer configuration, so the answere is no.
http://getcomposer.org/doc/05
http://getcomposer.org/doc/05-repositories.md#loading-a-package-from-a-vcs-repository
Here is an example
Example of composer.json, when the librairie doesn't contain its composer.json :
"repositories": {
"ckeditor": {
"type": "package",
"package": {
"name": "ckeditor",
"version": "4.2.1",
"source": {
"url": "https://github.com/ckeditor/ckeditor-releases.git",
"type": "git",
"reference": "4.2/full"
}
}
}
},
"require": {
"ckeditor": "4.2.*"
}
Composer and Bower support in CKEditor
With the 4.3.3 release we introduced both Bower and Composer support. For more information on how to fetch CKEditor using package managers see:
http://docs.ckeditor.com/#!/guide/dev_package_managers