12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "roundcube/authres_status",
- "type": "roundcube-plugin",
- "description": "This authres_status plugin checks the Authentication-Results headers of your emails and displays the verification status. The verification status is displayed when you read an email, but you can also add a column to your message list.",
- "keywords": ["authentication","results","dkim","domainkeys","spf","sender-id","rfc5451"],
- "homepage": "https://github.com/pimlie/authres_status",
- "license": "GPL-3.0+",
- "version": "0.5.0",
- "authors": [
- {
- "name": "pimlie",
- "email": "pimlie@hotmail.com",
- "role": "Author"
- }
- ],
- "repositories": [
- {
- "type": "composer",
- "url": "https://plugins.roundcube.net"
- },
- {
- "type": "vcs",
- "url": "https://github.com/pimlie/php-dkim"
- }
- ],
- "require": {
- "roundcube/plugin-installer": ">=0.1.3",
- "angrychimp/php-dkim": "@dev"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.1",
- "squizlabs/php_codesniffer": "3.*"
- },
- "autoload-dev": {
- "psr-4": {
- "": "./",
- "AuthresStatusTest\\": "tests/"
- }
- },
- "support":
- {
- "email": "pimlie@hotmail.com",
- "issues": "https://github.com/pimlie/authres_status/issues",
- "source": "https://github.com/pimlie/authres_status"
- },
- "extra": {
- "roundcube": {
- "min-version": "1.0.0"
- }
- },
- "scripts": {
- "test": "vendor/bin/phpunit",
- "cs": "vendor/bin/phpcs ./"
- }
- }
|