-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 2.34 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "mallardduck/whodis",
"description": "A simple to use whois client for PHP",
"license": "MIT",
"keywords": [
"domain",
"lookup",
"whois",
"whodis",
"whois-client"
],
"authors": [
{
"name": "Dan Pock",
"email": "[email protected]",
"homepage": "https://danpock.me",
"role": "Developer"
}
],
"homepage": "https://github.com/mallardduck",
"require": {
"php": "^8.0",
"jeremykendall/php-domain-parser": "^6.1",
"mallardduck/whois-client": "3.0.0",
"mallardduck/whois-server-list": "^2.0",
"symfony/polyfill-intl-idn": "^1.27"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"infection/infection": "^0.26",
"pestphp/pest": "^1.11",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^5.4",
"vimeo/psalm": "^5.0"
},
"suggest": {
"ext-intl": "If installed will use this instead of symfony polyfill."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"MallardDuck\\Whodis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MallardDuck\\Whodis\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check-style": "@phpcs --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "@phpcbf --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"infect": "XDEBUG_MODE=coverage ./vendor/bin/infection --test-framework=pest --show-mutations",
"phpcbf": "./vendor/bin/phpcbf -p --standard=PSR12",
"phpcs": "./vendor/bin/phpcs -p --standard=PSR12",
"semver": "php-semver-checker-git suggest --allow-detached -vvv --details --include-before=src --include-after=src",
"test": "./vendor/bin/pest"
}
}