Some checks failed
CI / testsuite (mysql, 8.4, ) (push) Successful in 10m8s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 3m21s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 14m18s
CI / testsuite (mysql, 8.2, ) (push) Successful in 14m19s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Failing after 4m11s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 18m4s
CI / Coding Standard & Static Analysis (push) Failing after 8m35s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 21m13s
51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"name": "hi-powered-dev/cake-carts",
|
|
"description": "A CakePHP plugin for storing entities in carts",
|
|
"type": "cakephp-plugin",
|
|
"license": "MIT",
|
|
"minimum-stability": "dev",
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"dereuromark/cakephp-tools": "^3.9",
|
|
"muffin/trash": "^4.2",
|
|
"cakephp/cakephp": "^5.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.3",
|
|
"cakephp/migrations": "^4.0.0",
|
|
"phpstan/phpstan": "^2.1",
|
|
"dereuromark/composer-prefer-lowest": "^0.1.10",
|
|
"cakedc/cakephp-phpstan": "^4.1",
|
|
"cakephp/authentication": "^3.0",
|
|
"fig-r/psr2r-sniffer": "^2.7",
|
|
"cakephp/authorization": "3.x-dev"
|
|
},
|
|
"suggest": {
|
|
"hi-powered-dev/cake-products": "Manage products and SKUs with a heirarhical category structure, includes attributes and variants"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CakeCarts\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CakeCarts\\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
|
|
}
|
|
}
|
|
}
|