forked from Alorel/dropbox-v2-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 937 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 937 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
40
41
42
43
44
45
{
"name": "alorel/dropbox-v2-php",
"description": "A PHP SDK for Dropbox's v2 API",
"prefer-stable": true,
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Alorel/dropbox-v2-php",
"keywords": [
"PHP",
"Dropbox",
"API",
"SDK"
],
"authors": [
{
"name": "Art",
"email": "a.molcanovas@gmail.com",
"role": "Developer",
"homepage": "https://github.com/Alorel"
}
],
"support": {
"issues": "https://github.com/Alorel/dropbox-v2-php/issues"
},
"require": {
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/psr7": "^1.0",
"aloframework/common": "^1.3"
},
"autoload": {
"psr-4": {
"Alorel\\Dropbox\\": "src"
}
},
"require-dev": {
"raveren/kint": "^1.0",
"alorel/phpunit-auto-rerun": "^0.1",
"phpunit/phpunit": "^5.0"
},
"extra": {
"branch-alias": {
"dev-dev-retriable-tests": "0.3-dev"
}
}
}