-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 942 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/flysystem-backblaze-b2",
"type": "library",
"description": "A Flysystem adaptor for Backblaze B2",
"homepage": "https://github.com/zaxbux/flysystem-backblaze-b2",
"keywords": [
"flysystem",
"flysystem-adapter",
"backblaze",
"backblaze-b2",
"b2",
"filesystem"
],
"license": "MIT",
"authors": [
{
"name": "Zachary Schneider",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"league/flysystem": "^3.0",
"zaxbux/backblaze-b2-php": "^2.0.2"
},
"require-dev": {
"league/flysystem-adapter-test-utilities": "^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Zaxbux\\Flysystem\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
}
}