2020-05-29 13:41:58 +02:00
{
"name" : "cakephp/app" ,
"description" : "CakePHP skeleton app" ,
"homepage" : "https://cakephp.org" ,
"type" : "project" ,
"license" : "MIT" ,
"require" : {
2022-11-18 13:08:31 +01:00
"php" : ">=8.0" ,
2021-09-24 01:47:03 +02:00
"admad/cakephp-social-auth" : "^1.1" ,
2020-06-21 21:24:13 +02:00
"cakephp/authentication" : "^2.0" ,
"cakephp/authorization" : "^2.0" ,
2021-11-24 01:52:03 +01:00
"cakephp/cakephp" : "^4.3" ,
2020-05-29 13:41:58 +02:00
"cakephp/migrations" : "^3.0" ,
"cakephp/plugin-installer" : "^1.2" ,
2020-06-21 21:24:13 +02:00
"erusev/parsedown" : "^1.7" ,
2022-10-21 15:25:52 +02:00
"mobiledetect/mobiledetectlib" : "^2.8" ,
"pear/crypt_gpg" : "^1.6"
2020-05-29 13:41:58 +02:00
} ,
"require-dev" : {
"cakephp/bake" : "^2.0.3" ,
2022-10-21 15:25:52 +02:00
"cakephp/cakephp-codesniffer" : "^4.0" ,
2020-05-29 13:41:58 +02:00
"cakephp/debug_kit" : "^4.0" ,
2022-03-02 16:31:39 +01:00
"cebe/php-openapi" : "^1.6" ,
2022-01-07 13:45:52 +01:00
"fzaninotto/faker" : "^1.9" ,
2020-05-29 13:41:58 +02:00
"josegonzalez/dotenv" : "^3.2" ,
2022-03-02 16:31:39 +01:00
"league/openapi-psr7-validator" : "^0.17" ,
2020-05-29 13:41:58 +02:00
"phpunit/phpunit" : "^8.5" ,
2022-01-17 16:02:15 +01:00
"psy/psysh" : "@stable" ,
2022-05-17 09:28:26 +02:00
"wiremock-php/wiremock-php" : "^2.33"
2020-05-29 13:41:58 +02:00
} ,
"suggest" : {
"markstory/asset_compress" : "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification." ,
"dereuromark/cakephp-ide-helper" : "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility." ,
"phpstan/phpstan" : "PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code."
} ,
"autoload" : {
"psr-4" : {
2021-09-02 11:30:09 +02:00
"App\\" : "src/" ,
"Tags\\" : "plugins/Tags/src/"
2020-05-29 13:41:58 +02:00
}
} ,
"autoload-dev" : {
"psr-4" : {
"App\\Test\\" : "tests/" ,
2021-09-02 11:30:09 +02:00
"Tags\\Test\\" : "plugins/Tags/tests/" ,
2020-05-29 13:41:58 +02:00
"Cake\\Test\\" : "vendor/cakephp/cakephp/tests/"
}
} ,
"scripts" : {
"post-install-cmd" : "App\\Console\\Installer::postInstall" ,
"post-create-project-cmd" : "App\\Console\\Installer::postInstall" ,
"check" : [
"@test" ,
"@cs-check"
] ,
"cs-check" : "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/" ,
"cs-fix" : "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/" ,
"stan" : "phpstan analyse src/" ,
2022-01-17 16:02:15 +01:00
"test" : [
2022-01-20 16:29:31 +01:00
"nohup sh ./tests/Helper/wiremock/start.sh >/dev/null 2>&1 &" ,
2022-01-17 16:02:15 +01:00
"phpunit" ,
"sh ./tests/Helper/wiremock/stop.sh"
2022-03-08 15:51:07 +01:00
] ,
"migrate" : [
"./bin/cake migrations migrate" ,
"./bin/cake migrations migrate -p tags" ,
"./bin/cake migrations migrate -p ADmad/SocialAuth"
2022-01-17 16:02:15 +01:00
]
2020-05-29 13:41:58 +02:00
} ,
"prefer-stable" : true ,
"config" : {
2022-10-21 15:25:52 +02:00
"sort-packages" : true ,
"allow-plugins" : {
"dealerdirect/phpcodesniffer-composer-installer" : true ,
"cakephp/plugin-installer" : true
}
2020-05-29 13:41:58 +02:00
} ,
"minimum-stability" : "dev"
2022-10-21 15:25:52 +02:00
}