-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 2.37 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
{
"name": "mallardduck/whois-client",
"type": "library",
"description": "A very basic Whois client for PHP. The library is limited in function since it's intended to be a low-level client that handles only request and raw output.",
"keywords": [
"RFC 3912",
"domain",
"lookup",
"whois",
"whois-client"
],
"homepage": "https://github.com/mallardduck/whois-client",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Dan Pock",
"email": "[email protected]",
"homepage": "https://danpock.me",
"role": "Developer"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"infection/infection": "^0.26",
"pestphp/pest": "^1.22",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"roave/better-reflection": "^5.11.1",
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^5.4.17",
"vimeo/psalm": "^5.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"MallardDuck\\Whois\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MallardDuck\\Whois\\Test\\": "tests"
}
},
"scripts": {
"phpcs": "./vendor/bin/phpcs -p --standard=PSR12",
"phpcbf": "./vendor/bin/phpcbf -p --standard=PSR12",
"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 --threads=4 --configuration=./infection.json.dist",
"semver": "php-semver-checker-git suggest --allow-detached -vvv --details --include-before=src --include-after=src",
"test": "XDEBUG_MODE=coverage ./vendor/bin/pest --colors=auto",
"versions": "./vendor/bin/phpcs -p ./src/ ./tests/ --standard=PHPCompatibility --runtime-set testVersion 8.0"
}
}