forked from masbug/flysystem-google-drive-ext
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1004 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
{
"name": "masbug/flysystem-google-drive-ext",
"description": "Flysystem adapter for Google Drive with seamless virtual<=>display path translation",
"keywords": [
"flysystem",
"google-drive",
"translated",
"extended",
"laravel"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Naoki Sawada",
"email": "hypweb@gmail.com"
},
{
"name": "Mitja Spes",
"email": "mitja@lxnav.com"
}
],
"require": {
"php": "^7.2 | ^8.0",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.3 | ^7.0",
"league/flysystem": "^2.1.1|^3.0",
"google/apiclient": "^2.2",
"guzzlehttp/psr7": "^1.7|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 | ^9.3",
"league/flysystem-adapter-test-utilities": "^2.0|^3.0"
},
"autoload": {
"psr-4": {
"Masbug\\Flysystem\\": "src"
}
}
}