-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.07 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
46
47
48
49
{
"name": "paragonie/herd",
"description": "Hash-Ensured Replicated Database",
"license": "ISC",
"type": "library",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "security@paragonie.com"
}
],
"autoload": {
"psr-4": {
"ParagonIE\\Herd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\Herd\\Tests\\": "tests/"
}
},
"require": {
"php": "^7",
"ext-json": "*",
"guzzlehttp/guzzle": "^6",
"paragonie/blakechain": "^1",
"paragonie/certainty": "^2.5",
"paragonie/constant_time_encoding": "^2",
"paragonie/easydb": "^2.7",
"paragonie/sapient": "^1",
"paragonie/sodium_compat": "^1.8",
"ulrichsg/getopt-php": "^3"
},
"require-dev": {
"phpunit/phpunit": "^6|^7",
"phpstan/phpstan": "^0|^1",
"vimeo/psalm": "^1|^2"
},
"scripts": {
"full-test": [
"@static-analysis",
"@test",
"@test-stan"
],
"test-stan": "phpstan analyse --level=1 --no-progress src tests",
"static-analysis": "psalm",
"test": "phpunit"
}
}