{ "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": "^11.0" }, "autoload": { "psr-4": { "KTXM\\ProviderImap\\": "lib/", "Gricob\\IMAP\\": "lib/Client" } }, "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" } }