-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1.41 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
{
"name": "paragonn/craft-imager-x-azure-blob",
"description": "External storage driver for Imager X that integrates with Microsoft Azure blob",
"version": "1.0.0",
"type": "craft-plugin",
"keywords": ["craft", "cms", "craftcms", "craft-plugin", "imager-x", "microsoft", "azure", "blob"],
"license": "proprietary",
"authors": [
{
"name": "Shannon McMillan",
"homepage": "https://paragonn.com/"
}
],
"support": {
"email": "shannon@paragonn.com",
"issues": "https://github.com/paragonn/craft-imager-x-azure-blob/issues",
"source": "https://github.com/paragonn/craft-imager-x-azure-blob",
"docs": "https://github.com/paragonn/craft-imager-x-azure-blob/blob/main/README.md"
},
"require": {
"craftcms/cms": "^3.3.0",
"league/flysystem-azure-blob-storage": "^1.0.0"
},
"autoload": {
"psr-4": {
"paragonn\\ImagerxAzureBlobStorage\\": "src/"
}
},
"extra": {
"handle": "imager-x-azure-blob",
"name": "Imager X Storage Driver for Microsoft Azure blob",
"developer": "Shannon McMillan",
"developerUrl": "https://paragonn.com/",
"documentationUrl": "https://github.com/paragonn/craft-imager-x-azure-blob/blob/main/README.md",
"changelogUrl": "https://github.com/paragonn/craft-imager-x-azure-blob/blob/main/CHANGELOG.md",
"downloadUrl": "https://github.com/paragonn/craft-imager-x-azure-blob/archive/refs/heads/main.zip",
"class": "paragonn\\ImagerxAzureBlobStorage\\ImagerxAzureBlobStorage"
}
}