Last active
December 16, 2015 22:29
-
-
Save sankitch/5507393 to your computer and use it in GitHub Desktop.
Install cakephp with composer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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