-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (51 loc) · 1.5 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "craftsmancoding/lunchbox",
"description": "Turn a MODX folder into a paginated container to cut on manager load times.",
"type": "library",
"keywords": ["modx","pagination"],
"homepage": "https://github.com/craftsmancoding/lunchbox",
"license": "GPL-2.0+",
"authors": [
{
"name": "Everett Griffiths",
"email": "[email protected]",
"homepage" : "http://craftsmancoding.com/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftsmancoding/lunchbox/issues",
"forum": "http://forums.modx.com/",
"wiki": "https://github.com/craftsmancoding/lunchbox/wiki",
"source": "https://github.com/craftsmancoding/lunchbox"
},
"require": {
"php": ">=5.3",
"craftsmancoding/pagination": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:craftsmancoding/pagination.git"
}
],
"autoload": {
"classmap":[
"model/"
],
"psr-4": {
"Lunchbox\\": ["model/","controllers/"]
}
},
"extra": {
"package_name": "Lunchbox",
"namespace": "lunchbox",
"version": "0.8.0",
"release": "dev",
"category":"Lunchbox",
"core_path": "",
"assets_path" : "assets/",
"seeds_path": ["model/seeds/"],
"docs_path" : "docs/"
}
}