-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (66 loc) · 2.27 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "rk/eventphotos-module",
"version": "1.0.2",
"description": "Event Photos Module is offering the possibility to share interesting photos. If you want to share yourself your photos please contact the site administrator and ask for the rights.",
"type": "zikula-module",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Ralf Koester",
"email": "[email protected]",
"homepage": "http://k62.de",
"role": "owner"
}
],
"autoload": {
"psr-4": { "RK\\EventPhotosModule\\": "" }
},
"require": {
"php": ">=5.5.9"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "*",
"phploc/phploc": "*",
"pdepend/pdepend": "2.*",
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "4.*",
"theseer/phpdox": "*",
"phpmd/phpmd": "2.*",
"sebastian/phpcpd": "*"
},
"extra": {
"zikula": {
"core-compatibility": ">=1.5.4 <3.0",
"class": "RK\\EventPhotosModule\\RKEventPhotosModule",
"displayname": "Event photos",
"url": "eventphotos",
"capabilities": {
"user": {"route": "rkeventphotosmodule_album_index"},
"admin": {"route": "rkeventphotosmodule_album_adminindex"},
"categorizable": {
"entities": [
"RK\\EventPhotosModule\\Entity\\AlbumEntity",
"RK\\EventPhotosModule\\Entity\\AlbumItemEntity"
]
}
},
"securityschema": {
"RKEventPhotosModule::": "::",
"RKEventPhotosModule:ItemListBlock:": "Block title::",
"RKEventPhotosModule:ItemBlock:": "Block title::",
"RKEventPhotosModule:Album:": "Album ID::",
"RKEventPhotosModule:AlbumItem:": "AlbumItem ID::",
"RKEventPhotosModule:Album:AlbumItem": "Album ID:AlbumItem ID:",
"RKEventPhotosModule::Ajax": "::"
}
}
},
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"optimize-autoloader": true,
"platform": {
"php": "5.5.9"
}
}
}