-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
40 lines (40 loc) · 1.3 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
{
"name": "demi/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/demisang/yii2-dropbox-backup#readme",
"type": "yii2-extension",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Ivan Orlov",
"email": "gnasimed@gmail.com",
"homepage": "https://orlov.io/",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/demisang/yii2-dropbox-backup/issues",
"source": "https://github.com/demisang/yii2-dropbox-backup"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/demisang/dropbox-sdk-php.git"
}
],
"require": {
"php": ">=7.0.0",
"yiisoft/yii2": "*",
"demi/backup": "*",
"spatie/dropbox-api": "~1.0"
},
"suggest": {
"php-64bit": "The Dropbox SDK uses 64-bit integers, this could cause problems because some of the numbers (file sizes, quota, etc) can be larger than 32-bit int. http://stackoverflow.com/a/864402"
},
"autoload": {
"psr-4": {
"demi\\backup\\dropbox\\": ""
}
}
}