-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
executable file
·45 lines (45 loc) · 1.25 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
{
"name": "mhetreramesh/flysystem-backblaze",
"type": "library",
"description": "Backblaze adapter for the flysystem filesystem abstraction library",
"keywords": ["flysystem", "filesystem", "api", "backblaze", "client"],
"homepage": "https://github.com/mhetreramesh/flysystem-backblaze",
"license": "MIT",
"authors": [
{
"name": "Ramesh Mhetre",
"email": "[email protected]",
"homepage": "https://about.me/rameshmhetre",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"league/flysystem": "~1.0",
"gliterd/backblaze-b2": ">=1.5.0",
"psr/http-message-implementation": "*",
"mikey179/vfsstream": "*"
},
"require-dev": {
"phpunit/phpunit" : "~4.0||~5.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"Mhetreramesh\\Flysystem\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mhetreramesh\\Flysystem\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"format": "phpcbf --standard=psr2 src/"
},
"config": {
"sort-packages": true
}
}