cakephp2-php8/composer.json

44 lines
998 B
JSON
Raw Normal View History

2013-12-28 23:24:22 +00:00
{
2014-04-22 19:48:22 +00:00
"name": "cakephp/cakephp",
"description": "The CakePHP framework",
"type": "library",
"keywords": ["framework"],
2017-03-11 12:24:39 +00:00
"homepage": "https://cakephp.org",
2014-04-22 19:48:22 +00:00
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/cakephp/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/cakephp/issues",
2017-03-11 12:24:39 +00:00
"forum": "https://stackoverflow.com/tags/cakephp",
2014-04-22 19:48:22 +00:00
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/cakephp"
},
"require": {
"php": ">=5.3.0",
2014-04-22 19:48:22 +00:00
"ext-mcrypt": "*"
},
"require-dev": {
"phpunit/phpunit": "^3.7",
"cakephp/cakephp-codesniffer": "^1.0.0"
2014-04-22 19:48:22 +00:00
},
"config": {
"vendor-dir": "vendors/",
"process-timeout": 0
},
2014-04-22 19:48:22 +00:00
"bin": [
"lib/Cake/Console/cake"
2017-07-10 21:12:35 +00:00
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "./vendors/bin/phpcs -p --extensions=php --standard=CakePHP ./lib/Cake",
"test": "./lib/Cake/Console/cake test core AllTests --stderr"
}
2013-12-28 23:24:22 +00:00
}