forked from ontio-community/ontology-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 896 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
35
36
{
"name": "smallsung/ontology-php-sdk",
"description": "PHP library for the Ontology blockchain.",
"type": "library",
"license": "LGPL-3.0",
"authors": [{
"name": "hsiaosiyuan",
"email": "[email protected]"
}],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"ontio\\": "src/"
}
},
"require": {
"php": "~7.0.0 || ~7.1.0 || ~7.2.0",
"simplito/elliptic-php": "dev-master",
"bitwasp/bitcoin": "dev-master",
"stephenhill/base58": "~1.0",
"ext-scrypt": "1.4.2",
"ext-openssl": "*",
"ext-sodium": "*",
"adbario/php-dot-notation": "2.x-dev",
"guzzlehttp/guzzle": "^6.3@dev",
"clue/block-react": "^1.3",
"ratchet/pawl": "dev-master",
"react/event-loop": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"scripts": {
"test": "phpunit --debug --colors=always --testdox tests/"
}
}