-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (34 loc) · 835 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (34 loc) · 835 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
29
30
31
32
33
34
{
"name":"wa72/url",
"description":"Class for handling and manipulating URLs",
"homepage":"http://github.com/wasinger/url",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Christoph Singer",
"email":"singer@webagentur72.de",
"homepage":"http://www.webagentur72.de"
}
],
"autoload":{
"psr-4":{
"Wa72\\Url\\": "src/Wa72/Url"
}
},
"autoload-dev": {
"psr-4": {
"Wa72\\Url\\Tests\\": "tests"
}
},
"require": {
"php": ">=5.6"
},
"suggest": {
"psr/http-message": "For using the Psr7Uri class implementing Psr\\Http\\Message\\UriInterface"
},
"require-dev": {
"phpunit/phpunit": "^4|^5|^6|^7",
"psr/http-message": "^1.0"
}
}