40 lines
998 B
JSON
40 lines
998 B
JSON
{
|
|
"name": "hi-powered-dev/cake-accounting",
|
|
"description": "A CakePHP plugin for double entry accounting/bookkeeping",
|
|
"type": "cakephp-plugin",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"cakephp"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "HiPoweredDev",
|
|
"homepage": "https://hipowered.dev",
|
|
"role": "Author"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"dereuromark/cakephp-tools": "^3.9",
|
|
"hi-powered-dev/cheese-cake": "dev-prod",
|
|
"cakephp/cakephp": "^5.0.1",
|
|
"ext-bcmath" : "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.1",
|
|
"cakephp/migrations": "^4.0.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CakeAccounting\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CakeAccounting\\Test\\": "tests/",
|
|
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
|
|
"TestApp\\": "tests/test_app/src/"
|
|
}
|
|
}
|
|
}
|