-
Notifications
You must be signed in to change notification settings - Fork 113
/
composer.json
34 lines (34 loc) · 962 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
{
"name": "blockvotes",
"description": "My dissertation paper named an e-voting system based on blockchain using ring signature.",
"type": "project",
"keywords": ["evoting"],
"homepage": "https://github.com/yfgeek/BlockVotes",
"license": "MIT",
"authors": [
{
"name": "Yifan",
"email": "[email protected]"
}
],
"require": {
"slim/slim": "^3.0",
"slim/twig-view": "^2.1",
"illuminate/database": "^5.2",
"respect/validation": "^1.0",
"slim/csrf": "^0.6.0",
"slim/flash": "^0.1.0",
"vlucas/phpdotenv": "^2.4",
"phpunit/phpunit": "^6.0",
"filp/whoops": "^2.1",
"zeuxisoo/slim-whoops": "^0.6.1",
"swiftmailer/swiftmailer": "^6.0",
"bitcoin-php/bitcoin-ecdsa": "^1.3",
"asymmetricrypt/asymmetricrypt": "^0.3.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
}
}