-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
62 lines (62 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
{
"name" : "KOLANICH/backuper",
"type" : "library",
"description" : "framework which will help you making (incremental) backups of your site.",
"keywords" : ["backup", "incremental", "pure php", "files", "sql", "DropBox", "WebDav", "SugarSync", "Yandex.Disk","Box.com"],
"homepage" : "https://github.com/KOLANICH/PHP-Backuper",
"license" : "BSD-3-Clause",
"authors" : [{
"name" : "KOLANICH",
"homepage" : "https://github.com/KOLANICH",
"role" : "Developer"
}
],
"require" : {
"php" : ">=5.4.0",
"ext-Reflection" : "*",
"ext-PHAR" : "*",
"ext-PDO" : "*",
"ext-pdo_sqlite" : "*",
"ext-SPL" : "*",
"ext-mhash":"*",
"ext-pcre":"*",
"ext-hash":"*"
},
"suggest" : {
"KOLANICH/DropboxUploader" : "for DropboxSimpleUploader plugin which uploades files to Dropbox using your login and password",
"ext-pdo_mysql" : "for MySQLBackuper which is used for making backup (now it is non-incremental and backups only table structure and data) of your MySQL-compatible DB",
"sabre/dav" : "for WebDav upload"
},
"require-dev" : {
"KOLANICH/dBug" : "*"
},
"support" : {
"issues" : "https://github.com/KOLANICH/PHP-Backuper/issues"
},
"autoload" : {
"classmap" : [
"Backuper.php"
]
},
"repositories" : [
{
"type" : "package",
"package" : {
"name" : "KOLANICH/DropboxUploader",
"version" : "1.2.3",
"source" : {
"type" : "git",
"url" : "https://github.com/KOLANICH/DropboxUploader.git",
"reference" : "master"
},
"autoload" : {
"classmap" : ["DropboxUploader.php"]
}
}
},
{
"type" : "vcs",
"url" : "https://github.com/KOLANICH/SabreDAV.git"
}
]
}