30 lines
801 B
JSON
30 lines
801 B
JSON
{
|
|
"name": "hi-powered-dev/cake-products",
|
|
"description": "A CakePHP plugin for managing product catalog(s)",
|
|
"type": "cakephp-plugin",
|
|
"license": "AGPL-3.0-or-later",
|
|
"minimum-stability": "dev",
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"dereuromark/cakephp-tools": "^3.9",
|
|
"hi-powered-dev/cheese-cake": "dev-prod",
|
|
"cakephp/migrations": "^4.0.0",
|
|
"cakephp/cakephp": "^5.0.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CakeProducts\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CakeProducts\\Test\\": "tests/",
|
|
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
|
|
"TestApp\\": "tests/test_app/src/"
|
|
}
|
|
}
|
|
}
|