{ "name": "phpmailer/dkimvalidator", "description": "A DKIM signature validator in PHP.", "license": "MIT", "authors": [ { "name": "angrychimp", "email": "rk@angrychimp.net" }, { "name": "Teon d.o.o. - Bostjan Skufca", "email": "bostjan@teon.si" }, { "name": "Marcus Bointon", "email": "phpmailer@synchromedia.co.uk" } ], "minimum-stability": "dev", "prefer-stable": true, "require": { "php": ">=7.2.0", "ext-openssl": "*", "ext-hash": "*", "ext-mbstring": "*" }, "require-dev": { "nunomaduro/phpinsights": "^v1.9.0", "phpunit/phpunit": "8.4.1", "friendsofphp/php-cs-fixer": "^2.15", "roave/security-advisories": "dev-master" }, "autoload": { "psr-4": { "PHPMailer\\DKIMValidator\\": "src/" } }, "scripts": { "lint": "php-cs-fixer fix -v", "beautify": "phpcbf --standard=PSR12 src/*", "test:lint": "php-cs-fixer fix -v --dry-run src/", "test:insights": "phpinsights analyse --min-quality=100 src/", "test:unit": "phpunit", "test:types": "phpstan analyse src/", "test": [ "@test:lint", "@test:insights", "@test:unit", "@test:types" ] } }