CakeCarts/composer.json

33 lines
921 B
JSON
Raw Permalink Normal View History

{
"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.0.1"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/migrations": "^4.0.0"
},
2025-10-12 04:46:16 +00:00
"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/",
2025-10-12 03:41:59 +00:00
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/src/"
}
}
}