CakeAccounting/composer.json

40 lines
998 B
JSON
Raw Permalink Normal View History

2025-08-09 21:07:39 +00:00
{
"name": "hi-powered-dev/cake-accounting",
"description": "A CakePHP plugin for double entry accounting/bookkeeping",
2025-08-09 21:07:39 +00:00
"type": "cakephp-plugin",
"license": "MIT",
2025-08-09 21:07:39 +00:00
"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",
2025-08-09 21:07:39 +00:00
"cakephp/cakephp": "^5.0.1",
"ext-bcmath" : "*"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/migrations": "^4.0.0"
2025-08-09 21:07:39 +00:00
},
"autoload": {
"psr-4": {
"CakeAccounting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeAccounting\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/src/"
2025-08-09 21:07:39 +00:00
}
}
}