forked from RunCloudIO/b2-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.22 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
{
"name": "dmhendricks/b2-sdk-php",
"description": "A PHP SDK for Backblaze's B2 storage service.",
"keywords": ["b2", "storage", "backblaze", "cloud", "filesystem", "backup"],
"homepage": "https://github.com/dmhendricks/b2-sdk-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Chris White",
"email": "[email protected]",
"homepage": "https://cwhite.me"
},
{
"name": "Ahmad Fikrizaman",
"email": "[email protected]",
"homepage": "https://runcloud.io",
"role": "CTO"
},
{
"name": "Daniel M. Hendricks",
"homepage": "https://daniel.hn",
"role": "Contributor"
}
],
"require": {
"php": ">=5.6.4",
"guzzlehttp/guzzle": "^6.1",
"illuminate/cache": ">=5.1.0",
"illuminate/container": ">=5.1.0",
"illuminate/filesystem": ">=5.1.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"ChrisWhite\\B2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ChrisWhite\\B2\\Tests\\": "tests/"
}
}
}