25 lines
555 B
JSON
25 lines
555 B
JSON
{
|
|
"name": "your-name-here/cake-products",
|
|
"description": "CakeProducts plugin for CakePHP",
|
|
"type": "cakephp-plugin",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"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/"
|
|
}
|
|
}
|
|
}
|