-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.48 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
{
"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.12 || ^0.13",
"psr/log": "^3.0",
"rowbot/idna": "^0.3.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/cache": "^5.0 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Rowbot\\URL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rowbot\\URL\\Tests\\": "tests/",
"Rowbot\\URL\\PHPStan\\": "PHPStan/"
}
},
"scripts": {
"phpunit": "phpunit --coverage-text",
"test": [
"@phpunit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}