-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 961 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
{
"name": "arrayaccess/dns-client",
"description": "Php DNS Client Resolver",
"keywords": [
"dns-client",
"dns-resolver",
"dns",
"php-dns",
"nameserver",
"RFC1035"
],
"license": ["LGPL-3.0-or-later"],
"require": {
"php": ">=8.1"
},
"require-dev": {
"psr/cache": "^3",
"squizlabs/php_codesniffer": "3.7.2",
"slevomat/coding-standard": "^8.14",
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "^1.10"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"ArrayAccess\\DnsRecord\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArrayAccess\\DnsRecord\\": "src/",
"Tests\\ArrayAccess\\DnsRecord\\": "tests/"
}
}
}