This repository was archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.34 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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": "dimsav/backup-engine",
"type": "library",
"description": "A library used to backup project files and databases, and upload backups to dropbox.",
"keywords": ["backup","dropbox","php","mysql"],
"homepage": "http://github.com/dimsav/php-mysql-backup",
"license": "MIT",
"authors": [
{
"name": "Dimitrios Savvopoulos",
"email": "ds@dimsav.com"
}
],
"autoload": {
"psr-4": {
"": ["src/", "tests/"]
}
},
"require": {
"php": ">=5.3.0",
"monolog/monolog": "1.*",
"dimsav/unix-zipper": "1.*",
"andreafabrizi/dropbox-uploader": "0.13"
},
"require-dev": {
"phpunit/phpunit": "4.0.*",
"phpunit/phpcov": "*",
"phpspec/phpspec": "2.0.*@dev"
},
"config": {
"bin-dir": "bin/"
},
"repositories": [
{
"type": "package",
"package": {
"name": "andreafabrizi/dropbox-uploader",
"version": "0.13",
"bin": ["dropbox_uploader.sh"],
"source": {
"url": "https://github.com/andreafabrizi/Dropbox-Uploader",
"type": "git",
"reference": "3fd40f247e3f6eeeb771e2b8a7dd3cab89ac71b2"
}
}
}
]
}