-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 969 Bytes
/
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
{
"name": "innmind/url-template",
"type": "library",
"description": "Url template expansion processor",
"keywords": ["url template", "rfc6570"],
"homepage": "http://github.com/Innmind/UrlTemplate",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "baptiste.langlade@hey.com"
}
],
"support": {
"issues": "http://github.com/Innmind/UrlTemplate/issues"
},
"require": {
"php": "~8.2",
"innmind/url": "~4.1",
"innmind/immutable": "~4.3|~5.0"
},
"autoload": {
"psr-4": {
"Innmind\\UrlTemplate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Innmind\\UrlTemplate\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~10.2",
"vimeo/psalm": "~5.12",
"innmind/black-box": "~5.5",
"innmind/coding-standard": "~2.0"
}
}