1
0
Files
breadcrumb-the-shire/composer.json
fs a0d7670dd7 feat(helpdesk): align module with core list/drawer standards
- add helpdesk module pages, services, settings and tests

- standardize debtor list on drawer/grid contracts and robust filter drawer behavior

- add helpdesk aside panel navigation and settings visibility provider

- switch primary list slug to helpdesk/debitor and remove helpdesk/search compatibility

- include required core contract updates for list contracts and detail/drawer integration
2026-04-02 17:48:27 +02:00

48 lines
1.6 KiB
JSON

{
"name": "mintyphp/mintyphp",
"description": "A refreshingly different PHP web framework that is easy to learn",
"license": "MIT",
"authors": [
{
"name": "Maurits van der Schee",
"email": "maurits@vdschee.nl",
"homepage": "https://www.tqdev.com"
}
],
"require": {
"php": "^8.5",
"mintyphp/core": "*",
"phpmailer/phpmailer": "^7.0",
"dompdf/dompdf": "^3.1",
"endroid/qr-code": "^6.0",
"league/commonmark": "^2.8",
"opis/json-schema": "^2.6"
},
"require-dev": {
"mintyphp/tools": "*",
"mintyphp/debugger": "*",
"phpunit/phpunit": "*",
"phpstan/phpstan": "^1.9",
"icanhazstring/composer-unused": "^0.9.6",
"friendsofphp/php-cs-fixer": "^3.66"
},
"autoload-dev": {
"psr-4": {
"MintyPHP\\Tests\\": "tests/",
"MintyPHP\\Tests\\Module\\Audit\\": "modules/audit/tests/Module/Audit/",
"MintyPHP\\Tests\\Module\\Helpdesk\\": "modules/helpdesk/tests/Module/Helpdesk/"
}
},
"autoload": {
"psr-4": {
"MintyPHP\\": "lib/",
"MintyPHP\\Module\\Audit\\": "modules/audit/lib/Module/Audit/",
"MintyPHP\\Module\\Helpdesk\\": "modules/helpdesk/lib/Module/Helpdesk/"
}
},
"scripts": {
"cs:check": "php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.dist.php --dry-run --diff --verbose",
"cs:fix": "php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.dist.php --verbose"
}
}