-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.37 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
{
"name": "spacecatninja/imager-x-do-spaces-driver",
"description": "External storage driver for Imager X that integrates with DigitalOcean Spaces",
"type": "craft-plugin",
"version": "4.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"imager-x",
"digitalocean",
"spaces"
],
"support": {
"docs": "https://github.com/spacecatninja/craft-imager-x-do-spaces-driver/blob/master/README.md",
"issues": "https://github.com/spacecatninja/craft-imager-x-do-spaces-driver/issues"
},
"license": "MIT",
"authors": [
{
"name": "André Elvan",
"homepage": "https://www.vaersaagod.no/"
}
],
"require": {
"php": "^8.0",
"craftcms/cms": "^5.0.0-beta.1",
"aws/aws-sdk-php": "^3.0.0"
},
"autoload": {
"psr-4": {
"spacecatninja\\imagerxdospacesdriver\\": "src/"
}
},
"extra": {
"name": "Imager X Storage Driver for DigitalOcean Spaces",
"handle": "imager-x-do-spaces-driver",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/spacecatninja/craft-imager-x-do-spaces-driver/master/CHANGELOG.md",
"class": "spacecatninja\\imagerxdospacesdriver\\ImagerXDoSpacesDriver"
}
}