-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1014 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
45
46
{
"name": "paragonie/libgossamer",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "[email protected]",
"homepage": "https://paragonie.com"
}
],
"description": "Library providing the Gossamer PKI protocol",
"autoload": {
"psr-4": {
"ParagonIE\\Gossamer\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\Gossamer\\Tests\\": "tests/"
}
},
"license": "ISC",
"require": {
"php": "^5.6|^7|^8",
"ext-json": "*",
"ext-pdo": "*",
"ext-zip": "*",
"paragonie/certainty": "^2.8",
"paragonie/easydb": "^1|^2",
"paragonie/sodium_compat": "^1.17",
"pear/archive_tar": "^1.4"
},
"require-dev": {
"guzzlehttp/guzzle": "^6|^7",
"phpunit/phpunit": "^5|^6|^7|^8|^9",
"vimeo/psalm": "^1|^3|^4"
},
"scripts": {
"full-test": "phpunit && psalm",
"test": "phpunit",
"static-analysis": "psalm"
},
"suggest": {
"guzzlehttp/guzzle": "^6"
},
"type": "library"
}