-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 926 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
{
"name": "larium/http-responder",
"description": "Responder for http messages",
"keywords": ["responder", "http", "payload"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Kollaros",
"email": "andreas@larium.net"
}
],
"require": {
"php": ">=8.1",
"psr/http-factory": "~1.0.1",
"larium/template-bridge": "~0.0.3",
"aura/payload-interface": "~3.1.0",
"shrikeh/teapot": "~2.3.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"laminas/laminas-diactoros": "^2.25",
"aura/payload": "~3.0.1",
"twig/twig": "~3.16"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Larium\\Responder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Larium\\Responder\\": "tests/"
}
}
}