Merge pull request #8838 from cakephp/issue-8765

Improve out of the box composer experience for 2.x
This commit is contained in:
Mark Story 2016-05-18 21:47:25 -04:00
commit 8f6c18f9d8
2 changed files with 38 additions and 1 deletions

35
app/composer.json Normal file
View file

@ -0,0 +1,35 @@
{
"name": "cakephp/app",
"description": "CakePHP Application skeleton",
"type": "library",
"keywords": ["application", "cakephp"],
"homepage": "http://cakephp.org",
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/cakephp/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/cakephp/issues",
"forum": "http://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/cakephp"
},
"require": {
"php": ">=5.3.0",
"ext-mcrypt": "*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"cakephp/cakephp": "~2.8",
"cakephp/cakephp-codesniffer": "^1.0.0"
},
"bin": [
"lib/Cake/Console/cake"
],
"config": {
"vendor-dir": "Vendor/"
}
}

View file

@ -23,9 +23,11 @@
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"cakephp/debug_kit" : "^2.2.0",
"cakephp/cakephp-codesniffer": "^1.0.0"
},
"config": {
"vendor-dir": "vendors/"
},
"bin": [
"lib/Cake/Console/cake"
]