forked from cwhite92/b2-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 911 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
{
"name": "zaxbux/backblaze-b2-php",
"description": "A SDK for working with B2 cloud storage.",
"keywords": [
"b2",
"storage",
"backblaze",
"cloud",
"filesystem",
"backup"
],
"homepage": "https://github.com/zaxbux/backblaze-b2-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Zachary Schneider",
"email": "hello@zacharyschneider.ca",
"homepage": "https://www.zacharyschneider.ca"
}
],
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"blastcloud/guzzler": "^2.0"
},
"autoload": {
"psr-4": {
"Zaxbux\\BackblazeB2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
}
}