-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 979 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
{
"name": "secondtruth/wumbo",
"description": "A simple web application framework",
"homepage": "https://www.secondtruth.de",
"keywords": ["webapp", "framework", "mvc"],
"license": "MIT",
"authors": [
{
"name": "Christian Neff",
"email": "[email protected]",
"homepage": "https://www.secondtruth.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/secondtruth/wumbo/issues",
"wiki": "https://github.com/secondtruth/wumbo/wiki"
},
"require": {
"slim/slim": "^4.10",
"psr/http-message": "^1.0",
"psr/container": "^1.0",
"laminas/laminas-diactoros": "^2.14",
"twig/twig": "^3.4",
"league/plates": "^3.4"
},
"require-dev": {
"symplify/easy-coding-standard": "^11.1"
},
"autoload": {
"psr-4": {
"Secondtruth\\Wumbo\\": "src/"
}
}
}