-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 922 Bytes
/
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
{
"name": "idrinth/duplication",
"description": "Duplicate data from a source to one or more targets to back it up.",
"keywords": [
"backup"
],
"authors": [
{
"name": "Björn Büttner",
"homepage": "https://github.com/idrinth"
}
],
"require": {
"php": "^8.3",
"aws/aws-sdk-php": "^3.338.1",
"idrinth/yaml-facade": "^1.2.1",
"composer/ca-bundle": "^1.5.5",
"phpseclib/phpseclib": "^3.0.43",
"vlucas/phpdotenv": "^5.6.1"
},
"suggest": {
"ext-zip": "If you want to minify your backups."
},
"scripts": {
"post-install-cmd": [
"php bin/duplicate.php setup"
],
"post-update-cmd": [
"php bin/duplicate.php setup"
]
},
"autoload": {
"psr-4": {
"De\\Idrinth\\Duplication\\": "src"
}
}
}