-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "bikeshedders/crypto-right-answers",
"description": "A living document covering the state-of-the-art for cryptography",
"keywords": ["cryptography"],
"homepage": "https://github.com/bikeshedders/crypto-right-answers",
"license": "ISC",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "[email protected]",
"homepage": "https://paragonie.com"
}
],
"require": {
"php": "^7.2",
"ezyang/htmlpurifier": "^4",
"league/commonmark": "^1",
"league/commonmark-ext-table": "^2.0",
"mikehaertl/phpwkhtmltopdf": "^2",
"paragonie/csp-builder": "^2",
"paragonie/hidden-string": "^1",
"paragonie/sodium_compat": "^1",
"slim/slim": "^3.1",
"twig/twig": "^2"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit"
}
}