-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
45 lines (45 loc) · 945 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
41
42
43
44
45
{
"name": "steffjenl/laravel-azure-blob-storage",
"description": "Microsoft Azure Blob Storage integration for Laravel's Storage API",
"type": "library",
"keywords": [
"storage",
"laravel",
"azure"
],
"require": {
"league/flysystem-azure-blob-storage": "^3.8.0"
},
"require-dev": {
"php": ">=8.0.2",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "^3.1",
"psy/psysh": "^0.11"
},
"license": "MIT",
"authors": [
{
"name": "Stèphan Eizinga",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SteffjeNL\\LaravelAzureBlobStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"SteffjeNL\\LaravelAzureBlobStorage\\AzureBlobStorageServiceProvider"
]
}
}
}