-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.19 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
{
"name": "innmind/url",
"type": "library",
"description": "Library to abstract url handling",
"keywords": ["url"],
"homepage": "http://github.com/Innmind/Url",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "baptiste.langlade@hey.com"
}
],
"support": {
"issues": "http://github.com/Innmind/Url/issues"
},
"require": {
"php": "~8.2",
"innmind/immutable": "~4.15|~5.0",
"league/uri-parser": "~1.2",
"league/uri-components": "~2.0"
},
"autoload": {
"psr-4": {
"Innmind\\Url\\": "src/",
"Fixtures\\Innmind\\Url\\": "fixtures/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Innmind\\Url\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~10.2",
"vimeo/psalm": "~5.26",
"innmind/black-box": "~5.0",
"innmind/coding-standard": "~2.0"
},
"conflict": {
"innmind/black-box": "<5.0|~6.0"
},
"suggest": {
"innmind/black-box": "For property based testing"
},
"provide": {
"innmind/black-box-sets": "5.0"
}
}