-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.47 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.47 KB
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
{
"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": "michele@locati.com",
"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.1.0",
"mlocati/idna": "^1",
"mlocati/ip-lib": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
"symfony/yaml": "^4.4 || ^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"
}
}