-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.46 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
45
46
47
{
"name": "shennyg/azure-blob-remote-volume",
"description": "Azure Blob Remote Volume plugin for Craft CMS 3.1",
"type": "craft-plugin",
"version": "1.1.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"flysystem",
"yii2",
"microsoft",
"azure-storage-blob",
"azure blob remote volume"
],
"support": {
"docs": "https://github.com/shennyg/azure-blob-remote-volume/blob/master/README.md",
"issues": "https://github.com/shennyg/azure-blob-remote-volume/issues",
"source": "https://github.com/shennyg/azure-blob-remote-volume",
"rss": "https://github.com/shennyg/azure-blob-remote-volume/commits/master.atom"
},
"license": "MIT",
"authors": [
{
"name": "Shen DeShayne",
"homepage": "https://sunnybyte.com"
}
],
"require": {
"craftcms/cms": "^3.1.0",
"league/flysystem-azure-blob-storage": "^0.1.6"
},
"autoload": {
"psr-4": {
"shennyg\\azureblobremotevolume\\": "src/"
}
},
"extra": {
"name": "Azure Blob Remote Volume",
"handle": "azure-blob-remote-volume",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/shennyg/azure-blob-remote-volume/master/CHANGELOG.md",
"class": "shennyg\\azureblobremotevolume\\AzureBlobRemoteVolume"
}
}