-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 884 Bytes
/
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
{
"name": "mika56/spfcheck-dns-direct",
"description": "Provide a DNSRecordGetterInterface for using custom DNS servers for mika56/spfcheck",
"type": "library",
"authors": [
{
"name": "Mikael Peigney",
"email": "mikael.56@live.fr"
},
{
"name": "Brian Tafoya",
"email": "btafoya@briantafoya.com"
}
],
"require": {
"php": ">=7.4",
"mika56/spfcheck": "^2.0",
"purplepixie/phpdns": "^2.0"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^9.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Mika56\\SPFCheckDNSDirect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mika56\\SPFCheckDNSDirect\\Test\\": "tests"
}
},
"minimum-stability": "stable"
}