44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "ktxm/mail-manager",
|
|
"type": "project",
|
|
"authors": [
|
|
{
|
|
"name": "Sebastian Krupinski",
|
|
"email": "krupinski01@gmail.com"
|
|
}
|
|
],
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"platform": {
|
|
"php": "8.3"
|
|
},
|
|
"autoloader-suffix": "MailManager",
|
|
"vendor-dir": "lib/vendor"
|
|
},
|
|
"require": {
|
|
"php": ">=8.3 <=8.5"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^12.0"
|
|
},
|
|
"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.xml --testsuite \"Unit Tests\" --colors=always --testdox",
|
|
"test:integration": "phpunit --configuration tests/php/phpunit.xml --testsuite \"Integration Tests\" --colors=always --testdox",
|
|
"test:coverage": "XDEBUG_MODE=coverage phpunit --configuration tests/php/phpunit.xml --testsuite \"Unit Tests\" --coverage-html .phpunit.coverage --coverage-text"
|
|
}
|
|
}
|