-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
41 lines (41 loc) · 1.17 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
{
"name": "mesour/dns-checker",
"description": "DNS checker written in PHP for check and compare real DNS records for domain.",
"license": ["BSD-3-Clause","GPL-3.0-or-later"],
"keywords": ["DNS","dns checker"],
"authors": [{
"name": "Matouš Němec",
"homepage": "http://mesour.com"
}],
"require": {
"php": ">=8.0",
"mesour/ip-addresses": "^0.3.0"
},
"require-dev": {
"tracy/tracy": "^2.9.0",
"orisai/coding-standard": "^3.7",
"phpstan/phpstan": "^1.10.0",
"phpstan/phpstan-deprecation-rules": "^1.1.0",
"grifart/phpstan-oneline": "^0.4.2",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^8.5",
"php-parallel-lint/php-parallel-lint": "^1.3.0",
"nette/di": "^3.1"
},
"suggest": {
"nette/di": "to use class DnsCheckerExtension"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Mesour\\": "src/Mesour",
"Mesour\\DnsCheckerTests\\": "tests/Mesour/DnsCheckerTests"
}
}
}