forked from layershifter/TLDExtract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 921 Bytes
/
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
{
"name": "drom/tld-extract",
"type": "library",
"description": "TLDExtract, library for extracting parts of domain, e.q. domain parser",
"keywords": [
"TLDExtract",
"domain parser"
],
"minimum-stability": "stable",
"license": "Apache-2.0",
"authors": [
{
"name": "Alexander Fedyashov",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"layershifter/tld-database": "^1.0",
"layershifter/tld-support": "^1.1",
"symfony/polyfill-intl-idn": "^1.10"
},
"require-dev": {
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"files": [
"src/static.php"
],
"psr-4": {
"LayerShifter\\TLDExtract\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LayerShifter\\TLDExtract\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}