forked from demisang/yii2-dropbox-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.1 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
{
"name": "earx/dropbox-backup",
"description": "Yii2 console command for making site backups and upload it to your dropbox account",
"keywords": [
"yii2",
"dropbox",
"backup",
"upload",
"sync",
"dump"
],
"homepage": "https://github.com/earx/yii2-dropbox-backup#readme",
"type": "yii2-extension",
"license": "GNU",
"authors": [
{
"name": "Evgeny Bartashevich, based on Ivan Orlov code",
"email": "earx@yandex.ru",
"role": "Updater"
}
],
"support": {
"issues": "https://github.com/earx/yii2-dropbox-backup/issues",
"source": "https://github.com/earx/yii2-dropbox-backup"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/kunalvarma05/dropbox-php-sdk"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
"demi/backup": "*",
"kunalvarma05/dropbox-php-sdk": "^0.2"
},
"autoload": {
"psr-4": {
"earx\\backup\\dropbox\\": ""
}
}
}