-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.25 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": "diamondbybold/laravel-flysystem-azure-blob-storage",
"description": "Laravel Wrapper for Flysystem Azure Blob Storage",
"keywords": [
"diamondbybold",
"laravel",
"flysystem",
"azure",
"blob",
"storage",
"laravel-flysystem-azure-blob-storage"
],
"homepage": "https://github.com/diamondbybold/laravel-flysystem-azure-blob-storage",
"license": "MIT",
"authors": [
{
"name": "João Machado",
"email": "[email protected]",
"homepage": "https://diamondbybold.com",
"role": "Lead Web Developer"
}
],
"require": {
"php": "^7.2",
"illuminate/support": "~5.7|~5.8|^6.0",
"league/flysystem-azure-blob-storage": "^0.1.6"
},
"require-dev": {
"larapack/dd": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"DiamondByBOLD\\FlysystemAzureBlobStorage\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DiamondByBOLD\\FlysystemAzureBlobStorage\\FlysystemAzureBlobStorageServiceProvider"
]
}
}
}