mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-17 01:16:22 +00:00
Fix default installation path for vendors.
By default global vendors go into `/vendors`. This config change helps people get started with less friction. I've removed debugkit as a dependency, as it isn't _really_ a dependency for CakePHP itself. Refs #8765
This commit is contained in:
parent
326583153a
commit
c02b269bcb
1 changed files with 3 additions and 1 deletions
|
@ -23,9 +23,11 @@
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "3.7.*",
|
"phpunit/phpunit": "3.7.*",
|
||||||
"cakephp/debug_kit" : "^2.2.0",
|
|
||||||
"cakephp/cakephp-codesniffer": "^1.0.0"
|
"cakephp/cakephp-codesniffer": "^1.0.0"
|
||||||
},
|
},
|
||||||
|
"config": {
|
||||||
|
"vendor-dir": "vendors/"
|
||||||
|
},
|
||||||
"bin": [
|
"bin": [
|
||||||
"lib/Cake/Console/cake"
|
"lib/Cake/Console/cake"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue