cakephp2-php8/composer.json

51 lines
1.4 KiB
JSON
Raw Permalink 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": "^8.0",
"ext-mbstring": "*",
"symfony/polyfill-intl-icu": "^1.29",
"php81_bc/strftime": "^0.7.5"
},
"suggest": {
"ext-openssl": "You need to install ext-openssl or ext-mcrypt to use AES-256 encryption",
"ext-mcrypt": "You need to install ext-openssl or ext-mcrypt to use AES-256 encryption",
"ext-intl": "Required to use IntlDateFormatter instead of strftime, if not Symfony polyfill will be used."
2014-04-22 19:48:22 +00:00
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"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",
2019-03-18 12:04:09 +00:00
"test": "./lib/Cake/Console/cake test core AllTests --stderr --verbose"
2017-07-10 21:12:35 +00:00
}
2013-12-28 23:24:22 +00:00
}