forked from backup-manager/laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.02 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
{
"name": "backup-manager/laravel",
"description": "Database backup manager seamlessly integrated with Laravel 4 or 5 with user-definable procedures and support for S3, Dropbox, FTP, SFTP, and more.",
"authors": [
{
"name": "Shawn McCool",
"email": "[email protected]",
"homepage": "http://heybigname.com/"
},
{
"name": "Mitchell van Wijngaarden",
"email": "[email protected]",
"homepage": "http://heybigname.com/"
}
],
"require": {
"backup-manager/backup-manager": "^1.0",
"php": "^5.5.0",
"symfony/process": "^2.0",
"illuminate/support": "^4.0||^5.0",
"illuminate/container": "^4.0||^5.0",
"illuminate/console": "^4.0||^5.0"
},
"require-dev": {
"mockery/mockery": "dev-master",
"satooshi/php-coveralls": "~0.6"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"BackupManager\\Laravel\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"license": "MIT"
}