-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 983 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
38
39
40
41
42
43
44
{
"name": "muckiware/restic",
"description": "php client for restic backup tool",
"version": "v1.1.0",
"keywords": [
"Library",
"backup",
"restic",
"repository",
"restore",
"snapshot",
"storage"
],
"homepage": "https://github.com/muckiware/restic",
"license": "MIT",
"authors": [
{
"name": "muckiware"
}
],
"require": {
"php": "^8.1",
"netresearch/jsonmapper": "^5.0",
"symfony/process": "^5.0|^6.0|^7.0",
"symfony/console": "^5.0|^6.0|^7.0"
},
"require-dev": {
"phpstan/phpstan" : "*",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"MuckiRestic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MuckiRestic\\Test\\": "tests"
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse -n --no-progress"
}
}