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": {
|
2024-06-05 20:21:39 +00:00
|
|
|
"php": "^8.0",
|
|
|
|
"ext-mbstring": "*",
|
|
|
|
"symfony/polyfill-intl-icu": "^1.29",
|
|
|
|
"php81_bc/strftime": "^0.7.5"
|
2018-01-19 14:35:39 +00:00
|
|
|
},
|
|
|
|
"suggest": {
|
|
|
|
"ext-openssl": "You need to install ext-openssl or ext-mcrypt to use AES-256 encryption",
|
2024-06-05 20:21:39 +00:00
|
|
|
"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": {
|
2022-12-28 05:54:21 +00:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2015-09-25 14:51:47 +00:00
|
|
|
"cakephp/cakephp-codesniffer": "^1.0.0"
|
2014-04-22 19:48:22 +00:00
|
|
|
},
|
2016-05-18 02:24:00 +00:00
|
|
|
"config": {
|
2017-07-10 22:31:41 +00:00
|
|
|
"vendor-dir": "vendors/",
|
|
|
|
"process-timeout": 0
|
2016-05-18 02:24:00 +00:00
|
|
|
},
|
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
|
|
|
}
|