forked from steampixel/simplePHPRouter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 764 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 764 Bytes
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
{
"name": "splashsky/simplerouter",
"description": "A very light, easy-to-use router for small PHP apps.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "@Splashsky",
"email": "sky@surf.gg",
"homepage": "https://surf.gg"
},
{
"name": "Christoph Stitz",
"email": "info@steampixel.de",
"homepage": "https://steampixel.de/"
},
{
"name": "Maximilian Götz",
"email": "contact@maxbits.net",
"homepage": "https://www.maxbits.net/"
}
],
"minimum-stability": "dev",
"require": {},
"autoload": {
"psr-4": {
"Splashsky\\": "src/"
}
}
}