forked from agentejo/cockpit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (32 loc) · 872 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
36
37
{
"name" : "aheinze/cockpit",
"type" : "project",
"homepage" : "http://getcockpit.com",
"description": "An api-driven CMS without forcing you to make compromises in how you implement your site.",
"authors" : [
{
"name": "Artur Heinze",
"email": "[email protected]"
}
],
"keywords": ["cms", "api", "nosql"],
"license" : "MIT",
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0"
},
"autoload": {
"files": ["bootstrap.php"]
},
"archive": {
"exclude": [
"/storage/cache/*.css",
"/storage/cache/*.js",
"/storage/tmp/*.php",
"/storage/thumbs/*.jpg",
"/storage/thumbs/*.jpeg",
"/storage/thumbs/*.png",
"/storage/thumbs/*.gif"
]
}
}