-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
53 lines (45 loc) · 1.32 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hevelius/files_external_onedrive",
"description": "OneDrive for OwnCloud.",
"homepage": "https://github.com/hevelius/files_external_onedrive",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"keywords": [
"hevelius",
"onedrive",
"php",
"OwnCloud",
"NextCloud"
],
"authors": [
{
"name": "hevelius",
"homepage": "https://github.com/hevelius/files_external_onedrive"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/hevelius/files_external_onedrive/issues",
"wiki": "https://github.com/hevelius/files_external_onedrive/wiki",
"source": "https://github.com/hevelius/files_external_onedrive"
},
"require": {
"league/flysystem-cached-adapter": "*",
"hevelius/flysystem-onedrive": "*",
"league/oauth2-client": "*",
"php": ">= 5.4 || >= 7.0",
"ext-curl": "*"
},
"replace": {
"guzzlehttp/guzzle": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
},
"scripts": {
"test": "vendor/bin/phpunit --configuration tests/phpunit.xml tests"
}
}