-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "shapito27/whois-parser",
"description": "Tool to parse whois response",
"keywords": ["whois","parser"],
"version": "1.10.4",
"license": "MIT",
"authors": [
{
"name": "Ruslan Saifullin",
"email": "[email protected]",
"homepage": "https://thisis-blog.ru"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"nesbot/carbon": "^2.41"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"Shapito27\\Whois\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapito27\\Tests\\": "tests/"
}
},
"scripts": {
"check-style": "./vendor/bin/phpcs -p --standard=PSR12 ./src/ ./tests/",
"fix-style": "./vendor/bin/phpcbf -p --standard=PSR12 src/ tests/",
"test": "./vendor/bin/phpunit --colors=always --verbose -c ./phpunit.xml.dist"
}
}