-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
45 lines (45 loc) · 1.1 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
{
"name": "syspass/syspass-decrypter",
"description": "A standalone utility for decrypting sysPass XML files",
"minimum-stability": "stable",
"license": "GPL-3.0",
"authors": [
{
"name": "Rubén Domínguez",
"email": "[email protected]",
"role": "Author/Developer",
"homepage": "https://syspass.org/"
}
],
"support": {
"issues": "https://github.com/sysPass/sysPass-decrypter/issues",
"source": "https://github.com/sysPass/sysPass-decrypter",
"docs": "https://github.com/sysPass/sysPass-decrypter"
},
"require": {
"php": "~7.2 || ~7.3",
"defuse/php-encryption": "^2.1",
"php-di/php-di": "^6.0",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"league/climate": "3.5.0",
"ext-dom": "*",
"symfony/console": "v4.3.3"
},
"require-dev": {
"phpunit/phpunit": "^8",
"fzaninotto/faker": "~v1.8",
"ext-xmlwriter": "*"
},
"autoload": {
"psr-4": {
"SPDecrypter\\": "lib/SPDecrypter/",
"Tests\\": "tests/"
}
},
"config": {
"classmap-authoritative": false
}
}