mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-14 10:58:24 +00:00
b918df8008
* Intl extension requirement. * CakeTime migrated to Intl. * FormHelper migration strftime to Intl. * Readme update.
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "cakephp/cakephp",
|
|
"description": "The CakePHP framework",
|
|
"type": "library",
|
|
"keywords": ["framework"],
|
|
"homepage": "https://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": "https://stackoverflow.com/tags/cakephp",
|
|
"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."
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"cakephp/cakephp-codesniffer": "^1.0.0"
|
|
},
|
|
"config": {
|
|
"vendor-dir": "vendors/",
|
|
"process-timeout": 0
|
|
},
|
|
"bin": [
|
|
"lib/Cake/Console/cake"
|
|
],
|
|
"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 --verbose"
|
|
}
|
|
}
|