-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
43 lines (43 loc) · 1.21 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
{
"name": "servd/craft-remote-assets",
"description": "Move CP assets to an external filesystem such as S3",
"type": "craft-plugin",
"version": "0.1.7",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft remote assets",
"servd"
],
"support": {
"docs": "https://github.com/servdhost/craft-remote-assets/blob/master/README.md",
"issues": "https://github.com/servdhost/craft-remote-assets/issues"
},
"license": "MIT",
"authors": [
{
"name": "Servd",
"homepage": "https://twitter.com/servdhosting"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"aws/aws-sdk-php": "^3.61.0",
"google/cloud-storage": "^1.3.0"
},
"autoload": {
"psr-4": {
"servd\\craftremoteassets\\": "src/"
}
},
"extra": {
"name": "Craft Remote Assets",
"handle": "craft-remote-assets",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/servdhost/craft-remote-assets/master/CHANGELOG.md",
"class": "servd\\craftremoteassets\\CraftRemoteAssets"
}
}