forked from sebastianfeldmann/phpbu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.37 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
{
"name": "phpbu/phpbu",
"description": "PHP Backup utility.",
"type": "library",
"keywords": [
"backup", "mysql", "mongodb", "tar", "cloud", "rsync", "sftp"
],
"homepage": "http://phpbu.de/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sebastian Feldmann",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/sebastianfeldmann/phpbu/issues"
},
"autoload": {
"psr-4": {
"phpbu\\App\\": "src/"
}
},
"require": {
"ext-dom": "*",
"ext-json": "*",
"ext-spl": "*",
"phpunit/php-timer": "~1.0.2",
"sebastian/environment": "~1.1",
"sebastian/version": "~1.0",
"swiftmailer/swiftmailer": "5.3.*",
"symfony/event-dispatcher": "2.6.*"
},
"suggest": {
"aws/aws-sdk-php": "Require '2.7.*' to sync to Amazon S3",
"barracuda/copy": "Require '1.1.*' to sync to copy.com",
"dropbox/dropbox-sdk": "Require '1.1.*' to sync to Dropbox",
"phpseclib/phpseclib": "Require '2.0.*@dev' to use SFTP sync",
"softlayer/objectstorage": "Require 'dev-master' to sync to Softlayer"
},
"bin": [
"phpbu"
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}