This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
composer.json
56 lines (56 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
{
"name": "matthewbdaly/laravel-azure-storage",
"description": "Microsoft Azure Blob Storage integration for Laravel's Storage API",
"type": "library",
"keywords": ["storage","laravel","azure", "blob"],
"require": {
"league/flysystem-azure-blob-storage": "^3.0"
},
"require-dev": {
"infection/infection": "^0.26.15",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3",
"php-coveralls/php-coveralls": "^2.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.3",
"psy/psysh": "^0.11",
"slevomat/coding-standard": "^7.2",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.19"
},
"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"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"abandoned": "azure-oss/storage-blob-laravel"
}