forked from jeremykendall/php-domain-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
102 lines (102 loc) · 3.24 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
{
"name": "jeremykendall/php-domain-parser",
"description": "Public Suffix List and IANA Root Zone Database based Domain parsing implemented in PHP.",
"homepage": "https://github.com/jeremykendall/php-domain-parser",
"support": {
"issues": "https://github.com/jeremykendall/php-domain-parser/issues",
"source": "https://github.com/jeremykendall/php-domain-parser"
},
"license": "MIT",
"authors": [
{
"name": "Jeremy Kendall",
"homepage": "http://about.me/jeremykendall",
"role": "Developer"
},
{
"name": "Ignace Nyamagana Butera",
"homepage": "http://nyamsprod.com",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/jeremykendall/php-domain-parser/graphs/contributors"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nyamsprod"
}
],
"keywords": [
"Public Suffix List",
"Top Level Domains",
"domain parsing",
"icann",
"iana",
"idn",
"tld",
"psl"
],
"require": {
"php": "^7.4 || ^8.0",
"ext-filter": "*",
"ext-intl": "*",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19||^3.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/psr7": "^1.6||^2.0",
"phpstan/phpstan": "^0.12.89",
"phpstan/phpstan-phpunit": "^0.12.20",
"phpstan/phpstan-strict-rules": "^0.12.9",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.15.0",
"psr/http-factory": "^1.0",
"psr/simple-cache": "^1.0",
"symfony/cache": "^v5.0",
"vimeo/psalm": "^4.3"
},
"suggest": {
"psr/http-client-implementation": "To use the storage functionnality which depends on PSR-18",
"psr/http-factory-implementation": "To use the storage functionnality which depends on PSR-17",
"psr/simple-cache-implementation": "To use the storage functionnality which depends on PSR-16",
"league/uri": "To parse URL and validate host"
},
"autoload": {
"psr-4": {
"Pdp\\": "src/"
}
},
"scripts": {
"phpcs": "php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
"phpcs:fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
"phpstan": "phpstan analyse -l max -c phpstan.neon src --memory-limit=256M --ansi",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --coverage-text",
"test": [
"@phpunit",
"@phpstan",
"@psalm",
"@phpcs"
]
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"phpcs:fix": "Fix the package coding style",
"phpstan": "Runs complete codebase static analysis",
"psalm": "Runs complete codebase static analysis",
"phpunit": "Runs unit and functional testing",
"test": "Runs the complete test suite"
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
}
},
"config": {
"sort-packages": true
}
}