Files
provider_imap/composer.json
Sebastian Krupinski 8093c031d9
Some checks failed
renovate/artifacts Artifact file update failure
chore(deps): update dependency phpunit/phpunit to v13
2026-05-19 03:03:48 +00:00

46 lines
1.1 KiB
JSON

{
"name": "ktxm/provider-imap",
"description": "IMAP Mail Provider Module",
"type": "library",
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"autoloader-suffix": "ProviderImap",
"vendor-dir": "lib/vendor",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"require": {
"php": ">=8.2 <=8.5",
"ext-iconv": "*",
"ext-ctype": "*",
"psr/log": "^1.0|^2.0|^3.0",
"doctrine/lexer": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^13.0"
},
"autoload": {
"psr-4": {
"KTXM\\ProviderImap\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"KTXM\\ProviderImap\\": "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"
}
}