-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 935 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 935 Bytes
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
{
"name": "steppinghat/backblaze-b2-bundle",
"description": "A Symfony compatible bundle for interfacing with the Backblaze B2 API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"SteppingHat\\BackblazeB2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SteppingHat\\BackblazeB2\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Javan Eskander",
"homepage": "https://javaneskander.com"
}
],
"require": {
"php": ">=7.4",
"symfony/http-client": "^5.4",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/framework-bundle": "^5.4",
"symfony/cache": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.4"
},
"scripts": {
"test": "phpunit"
}
}