-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.52 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "pimlie/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.6.3",
"authors": [
{
"name": "pimlie",
"email": "[email protected]",
"role": "Author"
}
],
"require": {
"roundcube/plugin-installer": ">=0.1.3",
"pimlie/php-dkim": ">=0.2.2"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "3.*"
},
"autoload-dev": {
"psr-4": {
"": "./",
"AuthresStatusTest\\": "tests/"
}
},
"support":
{
"email": "[email protected]",
"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 ./"
},
"config": {
"allow-plugins": {
"roundcube/plugin-installer": true
}
}
}