-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.58 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.58 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "phpborg/phpborg",
"description": "Professional PHP 8.3+ frontend for BorgBackup - Secure and efficient backup management system",
"type": "project",
"license": "GPL-3.0-or-later",
"keywords": ["backup", "borg", "borgbackup", "mysql", "lvm", "snapshot"],
"authors": [
{
"name": "phpBorg Contributors"
}
],
"require": {
"php": ">=8.3",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-posix": "*",
"ext-json": "*",
"ext-redis": "*",
"symfony/console": "^7.0",
"symfony/dotenv": "^7.0",
"monolog/monolog": "^3.5",
"symfony/process": "^7.0",
"firebase/php-jwt": "^6.0",
"predis/predis": "^2.0",
"ramsey/uuid": "^4.7",
"phpmailer/phpmailer": "^6.9"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.8"
},
"autoload": {
"psr-4": {
"PhpBorg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpBorg\\Tests\\": "tests/"
}
},
"bin": ["bin/phpborg"],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse src --level=8",
"cs-check": "phpcs src --standard=PSR12",
"cs-fix": "phpcbf src --standard=PSR12"
},
"minimum-stability": "stable",
"prefer-stable": true
}