Files
cake-contact-us/composer.json
Brandon Shipley d7fa7108a6
Some checks failed
CI / testsuite (pgsql, 8.2, ) (push) Failing after 4m38s
CI / testsuite (mysql, 8.2, ) (push) Failing after 9m2s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 8m59s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Failing after 3m30s
CI / testsuite (sqlite, 8.2, ) (push) Failing after 8m10s
CI / testsuite (mysql, 8.4, ) (push) Successful in 19m59s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 6m18s
CI / Coding Standard & Static Analysis (push) Successful in 12m34s
CI, read me update, php composer version min = 8.2
2026-01-26 23:41:25 -08:00

47 lines
1.5 KiB
JSON

{
"name": "hi-powered-dev/cake-contact-us",
"description": "Contact Us plugin for CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.2",
"cakephp/cakephp": "^5.0.1"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/migrations": "^4.0.0",
"phpstan/phpstan": "^2.1",
"dereuromark/composer-prefer-lowest": "^0.1.10",
"cakedc/cakephp-phpstan": "^4.1",
"dereuromark/cakephp-captcha": "^2.0",
"fig-r/psr2r-sniffer": "^2.7"
},
"suggest": {
"dereuromark/cakephp-captcha": "^2.0"
},
"autoload": {
"psr-4": {
"CakeContactUs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeContactUs\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/src/"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs --colors --parallel=16",
"cs-fix": "vendor/bin/phpcbf --colors --parallel=16",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"stan": "phpstan analyze"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}