forked from paragonie/chronicle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.34 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
{
"name": "paragonie/chronicle",
"description": "Public hash chain powered by Slim Framework, Sapient, and Blakechain",
"keywords": ["sapient", "blakechain", "hash-chain", "security", "hash", "BLAKE2", "BLAKE2b", "append-only", "cryptography"],
"homepage": "http://github.com/paragonie/chronicle",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "[email protected]",
"homepage": "https://paragonie.com"
}
],
"require": {
"php": "^7",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^6",
"paragonie/blakechain": "^1",
"paragonie/easydb": "^2",
"paragonie/sapient": "^1",
"paragonie/slim-sapient": "^1",
"slim/slim": "^3.8",
"slim/php-view": "^2.0",
"tflori/getopt-php": "^2",
"monolog/monolog": "^1.17",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6",
"vimeo/psalm": "^0.3"
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\Chronicle\\": "src/Chronicle/",
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"static-analysis": "psalm",
"test": "phpunit"
}
}