-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.13 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
{
"name": "bringyourownideas/laravel-backblaze",
"type": "library",
"description": "Backblaze B2 Cloud Storage for Laravel 5. Original by Paul Olthof (@hpolthof) continued by @bringyourownideas",
"keywords": [
"laravel",
"backup",
"B2",
"flysystem",
"filesystem",
"backblaze",
"disks"
],
"homepage": "https://bringyourownideas.com/blog/backing-up-your-laravel-project-to-backblaze-b2/",
"license": "MIT",
"authors": [
{
"name": "Paul Olthof",
"email": "[email protected]",
"homepage": "https://github.com/hpolthof",
"role": "Original Developer"
},
{
"name": "Peter Thaleikis",
"homepage": "https://peterthaleikis.com/",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"mhetreramesh/flysystem-backblaze": "*"
},
"require-dev": {
"symfony/thanks": "^1.0"
},
"autoload": {
"psr-4": {
"bringyourownideas\\Backblaze\\": "src"
}
},
"minimum-stability": "stable"
}