-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 906 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 906 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
38
39
{
"name": "beyondexp/beyondcdn",
"description": "Flysystem adapter for BeyondCDN.",
"license": "MIT",
"authors": [
{
"name": "Lucas Glavas",
"email": "lucas@beyond-livin.com"
}
],
"version": "1.0.0",
"require": {
"league/flysystem": "^1.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5.23 | ^9.3",
"mockery/mockery": "^1.3",
"league/flysystem-memory": "^1.0",
"fzaninotto/faker": "^1.5"
},
"autoload-dev": {
"psr-4": {
"Beyond\\BeyondCDN\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Beyond\\BeyondCDN\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"master": "1.0.0-dev"
}
}
}