-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.03 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "kp-wiki/MapPlatform",
"description": "A map sharing platform build upon the Slim-framework",
"keywords": ["microframework", "rest", "router", "psr7", "sharing", "platform"],
"homepage": "https://github.com/KP-Wiki/Map_Platform",
"license": "MIT",
"authors": [
{
"name": "Thimo Braker",
"email": "thibmorozier@gmail.com",
"homepage": "https://kp-wiki.org/"
},
{
"name": "Krom Stern",
"email": "kromster80@gmail.com",
"homepage": "http://www.knightsprovince.com/"
}
],
"require": {
"php": ">=5.5.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"slim/pdo": "^1.10",
"oscarotero/psr7-middlewares": "^3.20",
"monolog/monolog": "^1.17",
"matthiasmullie/minify": "^1.3"
},
"autoload": {
"psr-4": {
"MapPlatform\\": "src/"
}
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php"
}
}