Files
cheese-cake/composer.json

63 lines
1.8 KiB
JSON
Raw Normal View History

2024-03-31 01:45:24 -07:00
{
"name": "hi-powered-dev/cheese-cake",
"description": "A CakePHP plugin with misc. goodies ",
"type": "cakephp-plugin",
2026-01-02 22:04:03 -08:00
"license": "MIT",
2024-03-31 01:45:24 -07:00
"keywords": [
"cakephp"
],
"authors": [
{
"name": "HiPoweredDev",
"homepage": "https://hipowered.dev",
"role": "Author"
}
],
"require": {
"php": ">=8.1",
2026-01-02 22:04:03 -08:00
"cakephp/cakephp": "^5.0"
2024-03-31 01:45:24 -07:00
},
"require-dev": {
2026-03-17 01:35:40 -07:00
"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.5.5 || ^11.1.3 || ^12.1"
2024-03-31 01:45:24 -07:00
},
"autoload": {
"psr-4": {
"CheeseCake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CheeseCake\\Test\\": "tests/",
2026-03-17 01:35:40 -07:00
"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
2024-03-31 01:45:24 -07:00
}
}
}