Files
provider_imap/composer.json
T
Sebastian ace5d000bb
renovate/artifacts Artifact file update failure
Build Test / test (pull_request) Successful in 52s
JS Unit Tests / test (pull_request) Successful in 47s
PHP Integration Tests / Integration Tests (pull_request) Failing after 1m5s
PHP Unit Tests / test (pull_request) Failing after 1m11s
fix(deps): update dependency symfony/mime to v8
2026-07-24 14:10:20 +00:00

50 lines
1.3 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.3"
},
"autoloader-suffix": "ProviderImap",
"vendor-dir": "lib/vendor",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"require": {
"php": ">=8.3 <=8.5",
"ext-iconv": "*",
"ext-ctype": "*",
"psr/log": "^1.0|^2.0|^3.0",
"doctrine/lexer": "^3.0",
"symfony/mime": "^8.0",
"egulias/email-validator": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"KTXM\\ProviderImap\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"KTXT\\ProviderImap\\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"
}
}