mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
c02b269bcb
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
34 lines
759 B
JSON
34 lines
759 B
JSON
{
|
|
"name": "cakephp/cakephp",
|
|
"description": "The CakePHP framework",
|
|
"type": "library",
|
|
"keywords": ["framework"],
|
|
"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-codesniffer": "^1.0.0"
|
|
},
|
|
"config": {
|
|
"vendor-dir": "vendors/"
|
|
},
|
|
"bin": [
|
|
"lib/Cake/Console/cake"
|
|
]
|
|
}
|