-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.28 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.28 KB
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/framework",
"type": "library",
"description": "Http/Cli framework",
"keywords": ["framework", "http", "cli"],
"homepage": "http://github.com/Innmind/framework",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "baptiste.langlade@hey.com"
}
],
"support": {
"issues": "http://github.com/Innmind/framework/issues"
},
"require": {
"php": "~8.4",
"innmind/foundation": "~2.1",
"innmind/di": "~3.0"
},
"autoload": {
"psr-4": {
"Innmind\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Innmind\\Framework\\": "tests/"
}
},
"require-dev": {
"innmind/static-analysis": "~1.3",
"innmind/black-box": "~6.5",
"innmind/coding-standard": "~2.0",
"innmind/async-http-server": "~5.0"
},
"conflict": {
"innmind/black-box": "<6.0|~7.0",
"innmind/async-http-server": "<4.0|~6.0"
},
"suggest": {
"innmind/black-box": "For property based testing",
"innmind/async-http-server": "To run a local asynchronous http server"
},
"provide": {
"innmind/framework-middlewares": "1.0"
}
}