This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathcomposer.json
48 lines (42 loc) · 1.58 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
{
"name": "dizda/cloud-backup-bundle",
"type": "symfony-bundle",
"description": "Be able to backup your database(s) and upload it to the cloud (Dropbox, CloudApp, GoogleDrive, etc.)",
"keywords": ["symfony", "dropbox", "database", "mongodb", "mysql", "dump", "cloudapp", "GoogleDrive", "GDrive"],
"homepage": "https://github.com/dizda/CloudBackupBundle",
"license": "MIT",
"authors": [
{
"name": "Jonathan Dizdarevic",
"email": "dizzda@gmail.com",
"homepage": "https://twitter.com/dizzda"
},
{
"name": "Contributors",
"homepage": "https://github.com/dizda/CloudBackupBundle/graphs/contributors"
}
],
"require": {
"php": "^5.5 || ^7.0",
"symfony/framework-bundle": "^2.3 || ^3.0",
"psr/log": "^1.0.1"
},
"require-dev": {
"google/apiclient": "1.1.7",
"symfony/symfony": "^2.3.25"
},
"suggest": {
"matthiasplappert/cloudapp-api": "To support upload to CloudApp",
"happyr/google-site-authenticator-bundle": "To enable upload dumps on google drive.",
"dropbox/dropbox-sdk": "To enable upload to Dropbox",
"knplabs/knp-gaufrette-bundle": "To use Gaufrette as a cloud storage",
"oneup/flysystem-bundle": "To use Flysystem as a cloud storage",
"jongotlin/deadmanssnitch-bundle": "To report your successful backups to deadmanssnitch.com"
},
"autoload": {
"psr-0": {
"Dizda\\CloudBackupBundle": ""
}
},
"target-dir": "Dizda/CloudBackupBundle"
}