Files
mail_manager/composer.json
Sebastian Krupinski 3d77eb4a0b
Some checks failed
JS Unit Tests / test (pull_request) Successful in 22s
Build Test / test (pull_request) Successful in 25s
PHP Unit Tests / test (pull_request) Failing after 51s
chore: implemement basic tests
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-15 22:25:33 -05:00

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"
}
}