-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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": "cms/phpbackup",
"description": "PHP based system to zip, backup directories and send to remote places",
"type": "project",
"license": "MIT",
"autoload": {
"classmap": [
"src/"
],
"psr-4": {
"CMS\\PhpBackup\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"CMS\\PhpBackup\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Christoph",
"email": "info@cmeier-software.com",
"homepage": "https://cmeier-software.com"
}
],
"require-dev": {
"phpunit/phpunit": "^10.5",
"friendsofphp/php-cs-fixer": "^3.64",
"vlucas/phpdotenv": "^5.6"
},
"require": {
"laminas/laminas-config": "^3.9",
"nelexa/zip": "^4.0",
"pcloud/pcloud-php-sdk": "^3.0",
"defuse/php-encryption": "^2.4",
"obregonco/backblaze-b2": "^1.1",
"phpseclib/phpseclib": "^3.0"
}
}