Files
provider_system_mail/composer.json
T
Sebastian 4d0b7259b1
renovate/artifacts Artifact file update failure
PHP Integration Tests / Integration Tests (pull_request) Failing after 2m0s
PHP Unit Tests / test (pull_request) Failing after 2m30s
chore(deps): update dependency phpunit/phpunit to v13
2026-07-24 03:14:49 +00:00

39 lines
903 B
JSON

{
"name": "ktxm/provider-mail-system",
"type": "project",
"authors": [
{
"name": "Sebastian Krupinski",
"email": "krupinski01@gmail.com"
}
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.3"
},
"autoloader-suffix": "ProviderMailSystem",
"vendor-dir": "lib/vendor"
},
"require": {
"php": ">=8.3 <=8.5"
},
"require-dev": {
"phpunit/phpunit": "^13.0"
},
"autoload": {
"psr-4": {
"KTXM\\ProviderMailSystem\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"KTXT\\ProviderMailSystem\\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"
}
}