first commit splitting onto its own repo

This commit is contained in:
2025-10-11 18:31:07 -07:00
commit 48df5db468
27 changed files with 1661 additions and 0 deletions

29
composer.json Normal file
View File

@@ -0,0 +1,29 @@
{
"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",
"hi-powered-dev/cheese-cake": "dev-prod",
"cakephp/cakephp": "^5.0.1"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/migrations": "^4.0.0"
},
"autoload": {
"psr-4": {
"CakeCarts\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeCarts\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
}
}