Files
mail/composer.json
T
Sebastian 0d5effcb22
JS Unit Tests / test (pull_request) Successful in 1m19s
Build Test / test (pull_request) Successful in 1m23s
PHP Integration Tests / Integration Tests (pull_request) Successful in 2m23s
PHP Unit Tests / test (pull_request) Successful in 2m34s
chore(deps): update dependency phpunit/phpunit to v13
2026-07-25 03:05:37 +00:00

27 lines
711 B
JSON

{
"name": "ktrix/mail",
"description": "Mail client module",
"type": "library",
"license": "proprietary",
"autoload": {
"psr-4": {
"KTXM\\Mail\\": "lib/"
}
},
"require": {
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^13.0"
},
"autoload-dev": {
"psr-4": {
"KTXT\\Mail\\Tests\\": "tests/php/"
}
},
"scripts": {
"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"
}
}