CI / testsuite (mysql, 8.5, ) (push) Successful in 2m49s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 4m27s
CI / testsuite (pgsql, 8.5, ) (push) Successful in 2m53s
CI / testsuite (mysql, 8.2, ) (push) Successful in 5m47s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 4m34s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 3m42s
CI / Coding Standard & Static Analysis (push) Successful in 3m31s
CI / testsuite (sqlite, 8.5, ) (push) Successful in 10m25s
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "hi-powered-dev/cake-products",
|
|
"description": "A CakePHP plugin for managing product catalog(s)",
|
|
"type": "cakephp-plugin",
|
|
"license": "MIT",
|
|
"minimum-stability": "dev",
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"dereuromark/cakephp-tools": "^3.9",
|
|
"muffin/trash": "^4.2",
|
|
"cakephp/cakephp": "^5.0.1",
|
|
"bentools/cartesian-product": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.3",
|
|
"cakephp/migrations": "^4.5.0",
|
|
"cakedc/cakephp-phpstan": "^4.1",
|
|
"dereuromark/composer-prefer-lowest": "^0.1.10",
|
|
"fig-r/psr2r-sniffer": "^2.7"
|
|
},
|
|
"suggest": {
|
|
"hi-powered-dev/cake-carts": "Allow users to add products/SKUs to a cart"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CakeProducts\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CakeProducts\\Test\\": "tests/",
|
|
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
|
|
"TestApp\\": "tests/test_app/src/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@test",
|
|
"@cs-check"
|
|
],
|
|
"test": "phpunit --colors=always",
|
|
"cs-check": "vendor/bin/phpcs --colors",
|
|
"cs-fix": "vendor/bin/phpcbf --colors",
|
|
"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
|
|
}
|
|
}
|
|
}
|