forked from macopedia/typo3-azurestorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 853 Bytes
/
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
{
"name": "b3n/azurestorage",
"type": "typo3-cms-extension",
"description": "TYPO3 FAL driver extension for Microsoft Azure Blob Storage",
"keywords": [
"TYPO3",
"extension",
"azure",
"storage"
],
"homepage": "https://github.com/macopedia/typo3-azurestorage",
"authors": [
{
"name": "Macopedia team",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://macopedia.com"
}
],
"support": {
"issues": "https://github.com/macopedia/typo3-azurestorage/issues"
},
"license": [
"MIT"
],
"require": {
"typo3/cms-core": ">=11.5.0",
"microsoft/azure-storage-blob": "^1.2.0"
},
"autoload": {
"psr-4": {
"B3N\\AzureStorage\\TYPO3\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "azurestorage"
}
}
}