-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "opis/uri",
"description": "Build, parse and validate URIs and URI-templates",
"keywords": ["uri", "uri template", "url", "parse url", "uri components", "validate uri", "punycode"],
"homepage": "https://opis.io",
"license": "Apache-2.0",
"authors": [
{
"name": "Marius Sarca",
"email": "[email protected]"
},
{
"name": "Sorin Sarca",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"opis/string": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Opis\\Uri\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Opis\\Uri\\Test\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}