-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
41 lines (41 loc) · 1.09 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
{
"name": "platformcommunity/flysystem-bunnycdn",
"description": "Flysystem adapter for BunnyCDN",
"license": "MIT",
"authors": [
{
"name": "Alex",
"email": "[email protected]"
}
],
"require": {
"league/flysystem": "^3.16",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4",
"league/mime-type-detection": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"league/flysystem-adapter-test-utilities": "^3",
"league/flysystem-memory": "^3.0",
"league/flysystem-path-prefixing": "^3.3",
"fzaninotto/faker": "^1.5",
"laravel/pint": "^0.2.3"
},
"autoload-dev": {
"psr-4": {
"PlatformCommunity\\Flysystem\\BunnyCDN\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"PlatformCommunity\\Flysystem\\BunnyCDN\\Tests\\": "tests/",
"PlatformCommunity\\Flysystem\\BunnyCDN\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}