forked from angrychimp/php-dkim
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
52 lines (52 loc) · 1.2 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
51
52
{
"name": "phpmailer/dkimvalidator",
"description": "A DKIM signature validator in PHP.",
"license": "MIT",
"authors": [
{
"name": "angrychimp",
"email": "[email protected]"
},
{
"name": "Teon d.o.o. - Bostjan Skufca",
"email": "[email protected]"
},
{
"name": "Marcus Bointon",
"email": "[email protected]"
}
],
"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"
]
}
}