forked from craftsmancoding/repoman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (54 loc) · 1.63 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
54
55
{
"name": "craftsmancoding/repoman",
"description": "Repository manager for MODX Revolution.",
"type": "modx-package",
"keywords": ["modx","composer","repository","manager","autoload","git"],
"homepage": "https://github.com/craftsmancoding/repoman",
"license": "GPL-2.0+",
"authors": [
{
"name": "Everett Griffiths",
"email": "[email protected]",
"homepage" : "https://github.com/craftsmancoding/repoman"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftsmancoding/repoman/issues",
"forum": "http://forums.modx.com/",
"wiki": "https://github.com/craftsmancoding/repoman/wiki",
"source": "https://github.com/craftsmancoding/repoman"
},
"require": {
"php": ">=5.3"
},
"autoload": {
"classmap":["model/repoman/"],
"psr-4": {
"Repoman\\":"model/repoman/"
}
},
"extra": {
"repoman": "1.1.2",
"package_name": "Repoman",
"namespace": "repoman",
"version": "1.1.2",
"release": "pl",
"category":"repoman",
"core_path": "",
"assets_path" : "assets/",
"seeds_path": ["model/seeds/"],
"build_attributes":{
"modSystemSetting": {
"unique_key": "key",
"preserve_keys": true,
"update_object": false
},
"modMediaSource":{
"unique_key":"name",
"preserve_keys": true,
"update_object": true
}
}
}
}