-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 3.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "mallardduck/whois-server-list",
"description": "A php library to look up the whois servers or a domain.",
"license": "MIT",
"type": "library",
"keywords": [
"iana",
"icann",
"tld",
"whois"
],
"authors": [
{
"name": "Dan Pock",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"thecodingmachine/safe": "^2.4"
},
"require-dev": {
"ext-intl": "*",
"mallardduck/whois-client": "dev-3.0-main",
"pestphp/pest": "^1.21",
"phpbench/phpbench": "^1.2",
"ramsey/devtools": "^1.7",
"ramsey/devtools-lib": "dev-fix-compatibility as 1.2.3",
"symfony/console": "^6.1",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"vimeo/psalm": "^4.30"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/upyx/devtools-lib"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"MallardDuck\\WhoisDomainList\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MallardDuck\\Test\\WhoisDomainList\\": "tests/",
"MallardDuck\\WhoisDomainList\\Generator\\": "generator"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"captainhook/plugin-composer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"ramsey/composer-repl": true,
"pestphp/pest-plugin": true,
"ramsey/devtools": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"command-prefix": "dev",
"commands": {
"test:coverage:ci": {
"override": true,
"script": [
"XDEBUG_MODE=coverage ./vendor/bin/pest --coverage --coverage-clover build/coverage/clover.xml --coverage-cobertura build/coverage/cobertura.xml --coverage-crap4j build/coverage/crap4j.xml --coverage-xml build/coverage/coverage-xml --log-junit build/junit.xml"
]
},
"test:coverage:html": {
"override": true,
"script": [
"XDEBUG_MODE=coverage ./vendor/bin/pest --coverage --coverage-html build/coverage/coverage-html"
]
},
"test:unit": {
"override": true,
"script": [
"./vendor/bin/pest"
]
}
}
}
},
"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",
"generate": "php bin/generate",
"phpcbf": "./vendor/bin/phpcbf -p --standard=PSR12",
"phpcs": "./vendor/bin/phpcs -p --standard=PSR12"
}
}