forked from matthewbdaly/laravel-azure-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.05 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
{
"name": "matthewbdaly/laravel-azure-storage",
"description": "Microsoft Azure Blob Storage integration for Laravel's Storage API",
"type": "library",
"keywords": ["storage","laravel","azure"],
"require": {
"league/flysystem-azure-blob-storage": "^0.1.4"
},
"require-dev": {
"orchestra/testbench": "^3.8",
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "^3.1",
"psy/psysh": "^0.8.13",
"php-coveralls/php-coveralls": "^2.1"
},
"license": "MIT",
"authors": [
{
"name": "Matthew Daly",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Matthewbdaly\\LaravelAzureStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Matthewbdaly\\LaravelAzureStorage\\AzureStorageServiceProvider"
]
}
}
}