Files
cake-products/composer.json

35 lines
977 B
JSON
Raw Normal View History

{
2024-11-24 18:39:43 -08:00
"name": "hi-powered-dev/cake-products",
"description": "A CakePHP plugin for managing product catalog(s)",
"type": "cakephp-plugin",
2025-04-07 23:57:41 -07:00
"license": "MIT",
2025-03-29 03:11:31 -07:00
"minimum-stability": "dev",
"require": {
2025-09-05 23:31:58 -07:00
"php": ">=8.2",
"dereuromark/cakephp-tools": "^3.9",
"muffin/trash": "^4.2",
"hi-powered-dev/cheese-cake": "dev-prod",
"cakephp/cakephp": "^5.0.1",
"bentools/cartesian-product": "dev-master"
},
"require-dev": {
2025-04-07 23:57:41 -07:00
"phpunit/phpunit": "^10.1",
"cakephp/migrations": "^4.0.0"
},
2025-10-11 22:50:44 -07:00
"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/"
}
}
}