2024-11-24 18:38:29 -08:00
|
|
|
{
|
2024-11-24 18:39:43 -08:00
|
|
|
"name": "hi-powered-dev/cake-products",
|
|
|
|
|
"description": "A CakePHP plugin for managing product catalog(s)",
|
2024-11-24 18:38:29 -08:00
|
|
|
"type": "cakephp-plugin",
|
2025-04-07 23:57:41 -07:00
|
|
|
"license": "MIT",
|
2025-03-29 03:11:31 -07:00
|
|
|
"minimum-stability": "dev",
|
2024-11-24 18:38:29 -08:00
|
|
|
"require": {
|
2025-09-05 23:31:58 -07:00
|
|
|
"php": ">=8.2",
|
2025-03-26 00:07:05 -07:00
|
|
|
"dereuromark/cakephp-tools": "^3.9",
|
2025-04-08 01:30:40 -07:00
|
|
|
"muffin/trash": "^4.2",
|
2025-09-05 02:51:43 -07:00
|
|
|
"cakephp/cakephp": "^5.0.1",
|
2026-08-21 23:57:55 -07:00
|
|
|
"bentools/cartesian-product": "^2.0"
|
2024-11-24 18:38:29 -08:00
|
|
|
},
|
|
|
|
|
"require-dev": {
|
2025-04-07 23:57:41 -07:00
|
|
|
"phpunit/phpunit": "^10.1",
|
2026-08-21 23:57:55 -07:00
|
|
|
"cakephp/migrations": "^4.0.0",
|
|
|
|
|
"cakedc/cakephp-phpstan": "^4.1",
|
|
|
|
|
"dereuromark/composer-prefer-lowest": "^0.1.10",
|
|
|
|
|
"fig-r/psr2r-sniffer": "^2.7"
|
2024-11-24 18:38:29 -08:00
|
|
|
},
|
2025-10-11 22:50:44 -07:00
|
|
|
"suggest": {
|
|
|
|
|
"hi-powered-dev/cake-carts": "Allow users to add products/SKUs to a cart"
|
|
|
|
|
},
|
2024-11-24 18:38:29 -08:00
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"CakeProducts\\": "src/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"CakeProducts\\Test\\": "tests/",
|
2025-03-26 00:07:05 -07:00
|
|
|
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
|
|
|
|
|
"TestApp\\": "tests/test_app/src/"
|
2024-11-24 18:38:29 -08:00
|
|
|
}
|
2026-08-21 23:57:55 -07:00
|
|
|
},
|
|
|
|
|
"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": true
|
|
|
|
|
}
|
2024-11-24 18:38:29 -08:00
|
|
|
}
|
|
|
|
|
}
|