-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.41 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
{
"name": "rowbot/url",
"description": "A WHATWG URL spec compliant URL parser for working with URLs and their query strings.",
"keywords": ["url", "url-parser", "uri", "querystring", "query-string", "url-parsing", "whatwg"],
"license": "MIT",
"authors": [
{
"name": "Trevor Rowbotham",
"homepage": "https://trowbotham.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"brick/math": "^0.8.13 || ^0.9",
"psr/log": "^3.0",
"rowbot/idna": "^0.1.5"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^10.0",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/cache": "^5.0 || ^6.0"
},
"autoload": {
"psr-4": {
"Rowbot\\URL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rowbot\\URL\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "phpunit --coverage-text",
"test": [
"@phpunit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}