Skip to content

Instantly share code, notes, and snippets.

@sankitch
Last active December 16, 2015 22:29
Show Gist options
  • Select an option

  • Save sankitch/5507393 to your computer and use it in GitHub Desktop.

Select an option

Save sankitch/5507393 to your computer and use it in GitHub Desktop.
Install cakephp with composer.
{
"minimum-stability": "dev",
"config": {
"vendor-dir": "Vendor"
},
"repositories" : [
{
"type": "package",
"package": {
"name" : "cakephp/cakephp",
"version" : "2.4.1",
"source" : {
"type" : "git",
"url" : "git://github.com/cakephp/cakephp.git",
"reference" : "2.4.1"
},
"bin" : ["lib/Cake/Console/cake"]
}
}
],
"extra": {
"installer-paths": {
"app/Plugin/DebugKit": ["cakephp/debug_kit"]
}
},
"require" : {
"php": ">=5.2",
"cakephp/cakephp" : "2.4.1",
"cakephp/debug_kit": "2.2.*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment