forked from backup-manager/backup-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.77 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
{
"name": "backup-manager/backup-manager",
"description": "A framework agnostic database backup manager with user-definable procedures and support for S3, Dropbox, FTP, SFTP, and more with drivers for popular frameworks.",
"authors": [
{
"name": "Shawn McCool",
"email": "shawn@heybigname.com",
"homepage": "http://heybigname.com/"
},
{
"name": "Mitchell van Wijngaarden",
"email": "mitchell@kooding.nl",
"homepage": "http://heybigname.com/"
}
],
"require": {
"php": "^7.3 || ^7.4",
"symfony/process": "^4.4 || ^5.0",
"league/flysystem": "^1.0.64"
},
"require-dev": {
"league/flysystem-aws-s3-v3": "^1.0.24",
"spatie/flysystem-dropbox": "^1.2",
"srmklive/flysystem-dropbox-v2": "^1.0",
"league/flysystem-rackspace": "^1.0",
"league/flysystem-sftp": "^1.0",
"league/flysystem-webdav": "^1.0",
"mhetreramesh/flysystem-backblaze" : "^1.5",
"superbalist/flysystem-google-storage": "^7.2",
"aws/aws-sdk-php": "^3.133.20",
"phpspec/phpspec": "^6.1.1",
"friends-of-phpspec/phpspec-code-coverage": "^4.3"
},
"suggest": {
"mhetreramesh/flysystem-backblaze": "B2 adapter support.",
"league/flysystem-aws-s3-v3": "AWS S3 adapter support.",
"superbalist/flysystem-google-storage": "Google Cloud Storage adapter support.",
"srmklive/flysystem-dropbox-v2": "Dropbox API v2 adapter support.",
"league/flysystem-rackspace": "Rackspace adapter support.",
"league/flysystem-sftp": "SFTP adapter support.",
"league/flysystem-webdav": "Webdav adapter support."
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"BackupManager\\": "src/"
}
},
"license": "MIT",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}