forked from backup-manager/backup-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.25 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
{
"name": "fezfez/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": "[email protected]",
"homepage": "http://heybigname.com/"
},
{
"name": "Mitchell van Wijngaarden",
"email": "[email protected]",
"homepage": "http://heybigname.com/"
},
{
"name": "Stéphane Demonchaux",
"email": "[email protected]",
"homepage": "https://github.com/fezfez"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"symfony/process": "^6.3.4",
"league/flysystem": "^3.17.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^10.4.1",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.11"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Fezfez\\BackupManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fezfez\\BackupManager\\Tests\\": "tests/"
}
},
"license": "MIT"
}