All checks were successful
CI / testsuite (pgsql, 8.2, ) (push) Successful in 4m55s
CI / testsuite (mysql, 8.2, ) (push) Successful in 5m13s
CI / testsuite (mysql, 8.4, ) (push) Successful in 9m14s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 4m49s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 8m13s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 4m56s
CI / Coding Standard & Static Analysis (push) Successful in 3m9s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 6m28s
63 lines
1.8 KiB
JSON
63 lines
1.8 KiB
JSON
{
|
|
"name": "hi-powered-dev/cheese-cake",
|
|
"description": "A CakePHP plugin with misc. goodies ",
|
|
"type": "cakephp-plugin",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"cakephp"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "HiPoweredDev",
|
|
"homepage": "https://hipowered.dev",
|
|
"role": "Author"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"cakephp/cakephp": "^5.0"
|
|
},
|
|
"require-dev": {
|
|
"cakedc/cakephp-phpstan": "^4.1",
|
|
"cakephp/bake": "^3.0.0",
|
|
"cakephp/cakephp-codesniffer": "^5.0",
|
|
"cakephp/debug_kit": "^5.0.0",
|
|
"dereuromark/cakephp-ide-helper": "^2.13",
|
|
"dereuromark/cakephp-test-helper": "^2.6",
|
|
"fig-r/psr2r-sniffer": "^2.7",
|
|
"josegonzalez/dotenv": "^4.0",
|
|
"php-collective/decimal-object": "^1.3",
|
|
"phpstan/phpstan": "^2.1",
|
|
"phpunit/phpunit": "^10.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CheeseCake\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CheeseCake\\Test\\": "tests/",
|
|
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
|
|
"TestApp\\": "tests/test_app/src/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": "App\\Console\\Installer::postInstall",
|
|
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
|
|
"check": [
|
|
"@test",
|
|
"@cs-check"
|
|
],
|
|
"test": "phpunit --colors=always",
|
|
"cs-check": "vendor/bin/phpcs --colors --parallel=16",
|
|
"cs-fix": "vendor/bin/phpcbf --colors --parallel=16",
|
|
"stan": "phpstan analyze"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|