40 lines
895 B
JSON
40 lines
895 B
JSON
{
|
|
"name": "ktxm/mail-manager",
|
|
"type": "project",
|
|
"authors": [
|
|
{
|
|
"name": "Sebastian Krupinski",
|
|
"email": "krupinski01@gmail.com"
|
|
}
|
|
],
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"platform": {
|
|
"php": "8.2"
|
|
},
|
|
"autoloader-suffix": "MailManager",
|
|
"vendor-dir": "lib/vendor"
|
|
},
|
|
"require": {
|
|
"php": ">=8.2 <=8.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"KTXM\\MailManager\\": "lib/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"KTXT\\MailManager\\Tests\\": "tests/php/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
],
|
|
"post-update-cmd": [
|
|
],
|
|
"test:unit": "phpunit --configuration tests/php/phpunit.unit.xml --colors=always --testdox",
|
|
"test:coverage": "XDEBUG_MODE=coverage phpunit --configuration tests/php/phpunit.unit.xml --coverage-html .phpunit.coverage --coverage-text"
|
|
}
|
|
}
|