forked from davicente/flysystem-onedrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 996 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
{
"name": "jammingben/flysystem-onedrive",
"description": "OneDrive adapter for the flysystem filesystem abstraction library for ownCloud",
"keywords": ["flysystem", "filesystem", "api", "onedrive", "client"],
"license": "MIT",
"homepage": "https://github.com/JammingBen/flysystem-onedrive",
"replace": {
"guzzlehttp/psr7": "*"
},
"require": {
"league/flysystem": "^1.0",
"stevenmaguire/oauth2-microsoft": "^2.2",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"phpunit/phpunit": "^5.2"
},
"authors": [
{
"name": "Jacek Barecki",
"email": "[email protected]"
},
{
"name": "David Vicente",
"email": "[email protected]"
},
{
"name": "Jannik Stehle",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"JacekBarecki\\FlysystemOneDrive\\": "src/"}
}
}