-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 913 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
{
"name": "jarenal/PHP-BlockChain",
"description": "Just Another PHP Blockchain for learning and testing purposes",
"type": "project",
"license": "ISC",
"authors": [
{
"name": "Jose Antonio",
"email": "jguidos@hotmail.com"
}
],
"require": {
"react/event-loop": "^0.4.3",
"react/http": "^0.8.1",
"alcaeus/mongo-php-adapter": "^1.1",
"doctrine/mongodb-odm": "^1.2",
"php-di/php-di": "^6.0",
"doctrine/annotations": "^1.4",
"predis/predis": "^1.1",
"simplito/elliptic-php": "^1.0",
"christoph-kluge/reactphp-http-cors-middleware": "^1.0",
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"psr-4": {"Jarenal\\": "src/"},
"files": ["src/functions.php"]
},
"config": {
"platform": {
"ext-mongo": "1.6.16"
}
}
}