forked from mikepultz/netdns2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1009 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "jdwx/dns-query",
"autoload": {
"psr-4": {
"JDWX\\DNSQuery\\": "src/"
}
},
"type": "library",
"description": "Native PHP DNS Resolver and Updater Library (PHP 8.1+)",
"keywords": [
"dns",
"network"
],
"homepage": "https://github.com/jdwx/dns-query/",
"license": "BSD-2-Clause",
"support": {
"issues": "https://github.com/jdwx/dns-query/issues",
"source": "https://github.com/jdwx/dns-query"
},
"authors": [
{
"name": "Jeff W",
"homepage": "https://github.com/jdwx/"
},
{
"name": "Mike Pultz",
"email": "[email protected]",
"homepage": "https://mikepultz.com/"
}
],
"require": {
"php": ">=8.1",
"ext-filter": "*",
"ext-openssl": "*",
"ext-sockets": "*",
"ext-ctype": "*",
"jdwx/array-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"jetbrains/phpstorm-attributes": "^1.0"
},
"autoload-dev": {
"psr-0": {
"Tests_Net_DNS2": "tests/"
}
}
}