-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 917 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
38
39
40
41
42
43
{
"name": "altis/media",
"description": "Media module for Altis",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Human Made",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"darylldoyle/safe-svg": "2.0.3",
"humanmade/tachyon-plugin": "~0.11.9",
"humanmade/smart-media": "~0.5.7",
"humanmade/aws-rekognition": "~0.1.10",
"humanmade/rename-images-command": "^0.1.0",
"humanmade/asset-manager-framework": "^0.13.5",
"humanmade/amf-wordpress": "^0.3.0"
},
"autoload": {
"classmap": [
"inc/"
],
"files": [
"inc/namespace.php",
"inc/global_assets/namespace.php"
]
},
"extra": {
"altis": {
"install-overrides": [
"darylldoyle/safe-svg",
"humanmade/tachyon-plugin",
"humanmade/smart-media",
"humanmade/aws-rekognition",
"humanmade/asset-manager-framework",
"humanmade/amf-wordpress"
]
}
}
}