forked from mlocati/spf-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mlocati/spf-lib",
"description": "Parse, build and validate SPF (Sender Policy Framework) DNS records",
"type": "library",
"keywords": [
"spf",
"Sender Policy Framework",
"email",
"mail",
"smtp",
"dns",
"mx"
],
"homepage": "https://github.com/mlocati/spf-lib",
"license": "MIT",
"authors": [
{
"name": "Michele Locati",
"email": "[email protected]",
"homepage": "https://mlocati.github.io",
"role": "author"
}
],
"support": {
"issues": "https://github.com/mlocati/spf-lib/issues",
"source": "https://github.com/mlocati/spf-lib"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mlocati"
},
{
"type": "other",
"url": "https://paypal.me/mlocati"
}
],
"require": {
"php": ">=7.2.0",
"mlocati/idna": "^1",
"mlocati/ip-lib": "^1.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5",
"symfony/yaml": "^5.1"
},
"autoload": {
"psr-4": {
"SPFLib\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SPFLib\\Test\\": "test/src/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"phpcs": "php-cs-fixer fix --path-mode=intersection --config=./.php_cs.dist"
}
}