-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.12 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
{
"name": "msyk/dropbox-api-shortlivedtoken",
"version": "5",
"time": "2022-07-08",
"repositories": [
{
"type": "git",
"url": "https://github.com/msyk/dropbox-api-shortlivedtoken"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1.0",
"spatie/dropbox-api": "*"
},
"autoload": {},
"description": "Sample implementation of generating access token from refresh token.",
"type": "application",
"keywords": [
"Dropbox",
"Dropbox API",
"php",
"OAuth2"
],
"homepage": "https://github.com/msyk/",
"license": "MIT",
"authors": [
{
"name": "Masayuki Nii",
"homepage": "https://msyk.net/"
}
],
"support": {
"source": "https://github.com/msyk/dropbox-api-shortlivedtoken",
"manual": "https://github.com/msyk/dropbox-api-shortlivedtoken"
},
"scripts": {
"test": [
"The software test is very important activity for the quality assuarance."
],
"clear": [
"rm -rf node_modules vendor"
]
},
"autoload": {
"psr-4": {
"msyk\\DropboxAPIShortLivedToken\\": "src/"
}
}
}