-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·36 lines (36 loc) · 1.02 KB
/
composer.json
File metadata and controls
executable file
·36 lines (36 loc) · 1.02 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": "groucho75/phmisk",
"description": "Php Html5 Micro Starter Kit",
"type": "library",
"keywords": ["php", "microframework"],
"homepage": "https://github.com/groucho75/phmisk",
"license": "MIT",
"authors": [
{
"name": "Alessandro Massasso",
"email": "alo@eventualo.net",
"homepage": "http://www.eventualo.net",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/groucho75/phmisk/issues",
"wiki": "https://github.com/groucho75/phmisk/wiki",
"source": "https://github.com/groucho75/phmisk"
},
"config": {
"vendor-dir": "app/vendor"
},
"require": {
"php": ">=5.3.3",
"bramus/router": "~1.4",
"unlight/sparrow": "dev-master"
},
"require-dev": {
"erusev/parsedown": "dev-master"
},
"autoload": {
"classmap": ["app/core/", "app/controllers/", "app/classes/", "app/models/"],
"files": ["app/helpers.php"]
}
}