1
0
Files
breadcrumb-the-shire/composer.json

34 lines
786 B
JSON
Raw Normal View History

2026-02-04 23:31:53 +01:00
{
"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"
},
"require-dev": {
"mintyphp/tools": "*",
"mintyphp/debugger": "*",
"phpunit/phpunit": "*",
"phpstan/phpstan": "^1.9"
},
"autoload-dev": {
"psr-4": {
"MintyPHP\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"MintyPHP\\": "lib/"
}
}
}