forked from gliterd/laravel-backblaze-b2
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
50 lines (50 loc) · 1.38 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
{
"name": "marcandreappel/laravel-backblaze-b2",
"type": "library",
"description": "Backblaze B2 Cloud Storage for PHP8+ & Laravel 8+",
"keywords": ["flysystem", "filesystem", "api", "backblaze", "laravel", "storage", "disks"],
"homepage": "https://github.com/marcandreappel/laravel-backblaze-b2",
"license": "MIT",
"authors": [
{
"name": "Marc-André Appel",
"email": "marc-andre@appel.fun",
"homepage": "https://github.com/marcandreappel",
"role": "Maintainer"
},
{
"name": "Ramesh Mhetre",
"email": "mhetreramesh@gmail.com",
"homepage": "https://about.me/rameshmhetre",
"role": "Creator"
}
],
"require": {
"php": "^8.0|^8.1",
"gliterd/backblaze-b2": ">=1.5.0",
"marcandreappel/flysystem-backblaze": "^2.1"
},
"autoload": {
"psr-4": {
"MarcAndreAppel\\BackblazeB2\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MarcAndreAppel\\BackblazeB2\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"\\MarcAndreAppel\\BackblazeB2\\BackblazeB2ServiceProvider"
]
}
},
"require-dev": {
"orchestra/testbench": "^v7.0"
}
}