This repository was archived by the owner on Aug 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.1 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.1 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
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
67
68
69
70
{
"name": "cmfcmf/media-module",
"version": "3.0.0",
"description": "A Zikula 3 module to handle all sorts of media.",
"type": "zikula-module",
"license": "MIT",
"authors": [
{
"name": "Zikula",
"homepage": "https://ziku.la/",
"email": "vorstand@ziku.la"
}
],
"autoload": {
"psr-4": { "Cmfcmf\\Module\\MediaModule\\": "" }
},
"require": {
"php": "^7.2.5",
"clue/graph": "^0.9",
"google/apiclient": "^2",
"guzzlehttp/guzzle": "7.*",
"php-http/guzzle7-adapter": "1.*",
"http-interop/http-factory-guzzle": "1.*",
"cache/filesystem-adapter": "1.*",
"knplabs/github-api": "3.*",
"j7mbo/twitter-api-php": "^1",
"james-heinrich/getid3": "^1",
"symfony/http-client": "5.*",
"vierbergenlars/php-semver": "^3"
},
"require-dev": {
"graphp/graphviz": "^0.2"
},
"extra": {
"zikula": {
"class": "Cmfcmf\\Module\\MediaModule\\CmfcmfMediaModule",
"core-compatibility": ">=3.0.0 <4.0.0",
"displayname": "MediaModule",
"url": "media",
"icon": "fas fa-photo-video",
"oldnames": [],
"capabilities": {
"admin": {
"route": "cmfcmfmediamodule_settings_index"
},
"user": {
"route": "cmfcmfmediamodule_collection_displayroot"
},
"categorizable": {
"entities": [
"Cmfcmf\\Module\\MediaModule\\Entity\\Media\\AbstractMediaEntity",
"Cmfcmf\\Module\\MediaModule\\Entity\\Collection\\CollectionEntity"
]
}
},
"securityschema": {
"CmfcmfMediaModule::": "::"
}
}
},
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
},
"sort-packages": true
}
}