-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 791 Bytes
/
Copy pathcomposer.json
File metadata and controls
28 lines (28 loc) · 791 Bytes
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
{
"name": "pedroac/url4php",
"type": "library",
"description": "URL value object and related tools.",
"keywords": ["php", "url", "value object", "parser", "components", "normalization"],
"authors": [
{
"name": "Pedro Amaral Couto",
"email": "pedro.amaral.couto@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {"pedroac\\url\\": "src"}
},
"require": {
"php": ">=7.1",
"ext-mbstring": "*",
"true/punycode": "v2.1.1"
},
"require-dev": {
"phpunit/phpunit": "6.1.3",
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd" : "@stable",
"phpdocumentor/phpdocumentor": "@stable",
"codacy/coverage": "dev-master"
}
}