-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.05 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
{
"name": "king23/king23",
"type": "library",
"description": "the King23 Framework",
"keywords": ["framework", "king23"],
"homepage": "http://king23.net",
"license": "MIT",
"authors": [ { "name": "Peter Petermann", "email": "[email protected]", "homepage": "https://devedge.eu" }],
"require": {
"twig/twig": "~2.5",
"psr/log-implementation": "~1.0",
"psr/http-message-implementation": "~1.0",
"psr/http-message": "~1.0",
"psr/http-server-handler": "~1.0",
"psr/http-server-middleware": "~1.0",
"psr/http-factory": "~1.0",
"psr/http-factory-implementation": "~1.0",
"psr/container-implementation": "~1.0"
},
"require-dev": {
"devedge/stubs": "~3.0",
"nyholm/psr7": "~1.0",
"king23/di": "~2.0",
"filp/whoops": "~1.1",
"alcaeus/mongo-php-adapter": "^1.1"
},
"autoload": {
"psr-4": { "King23\\": "src/"}
},
"config": {
"platform": {
"ext-mongo": "1.6.16"
}
}
}