-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.17 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": "masugadesign/craft-s3-sync",
"description": "Create Assets in Craft when a file is uploaded directly to S3",
"type": "craft-plugin",
"version": "1.0.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"s3 sync"
],
"support": {
"docs": "https://github.com/masugadesign/craft-s3-sync/blob/master/README.md",
"issues": "https://github.com/masugadesign/craft-s3-sync/issues"
},
"license": "MIT",
"authors": [
{
"name": "Masuga Design",
"homepage": "https://gomasuga.com"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"masugadesign\\s3sync\\": "src/"
}
},
"extra": {
"name": "S3 Sync",
"handle": "s3-sync",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/masugadesign/craft-s3-sync/master/CHANGELOG.md",
"components": {
"s3SyncService": "masugadesign\\s3sync\\services\\S3SyncService"
},
"class": "masugadesign\\s3sync\\S3Sync"
}
}