forked from obregonco/backblaze-b2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.75 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
57
58
59
60
61
62
{
"name": "obregonco/backblaze-b2",
"description": "An SDK for working with B2 cloud storage.",
"keywords": ["b2", "storage", "backblaze", "cloud", "filesystem", "backup", "backblaze-b2", "backblaze-api"],
"homepage": "https://github.com/obregonco/backblaze-b2",
"license": "LGPL-3.0-or-later",
"type": "library",
"version": "1.0",
"authors": [
{
"name": "Chris White",
"email": "[email protected]",
"homepage": "https://cwhite.me"
}, {
"name": "Ahmad Fikrizaman",
"email": "[email protected]",
"homepage": "https://runcloud.io",
"role": "CTO"
}, {
"name": "Ricardo Obregón",
"email": "[email protected]",
"homepage": "http://obregonco",
"role": "Founder"
}, {
"name": "Rick O'Brien",
"email": "[email protected]",
"homepage": "http://obregonco"
}
],
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"illuminate/cache": ">=5.1.0",
"illuminate/container": ">=5.1.0",
"illuminate/filesystem": ">=5.1.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"fix-code": [
"vendor/bin/php-cs-fixer fix src/"
],
"verify-code": [
"mkdir -p var/data",
"php -d memory_limit=1024M vendor/bin/phpstan analyse src --level 2"
]
},
"autoload": {
"psr-4": {
"obregonco\\B2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"obregonco\\B2\\Tests\\": "tests/"
}
}
}