-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1.13 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
{
"name": "gxchain/gxclient",
"description": "A client to interact with gxchain implemented in PHP",
"type": "library",
"keywords": ["php","gxclient","gxc","rpc","sdk","api","crypto","blockchain"],
"homepage": "https://github.com/gxchain/gxclient-php",
"license": "MIT",
"authors": [
{
"name": "kilmas",
"email": "kilmas@qq.com"
}
],
"require": {
"guzzlehttp/guzzle": "~6.0",
"vlucas/phpdotenv": "^2.4",
"php-curl-class/php-curl-class": "^8.1",
"stephenhill/base58": "^1.1",
"simplito/elliptic-php": "^1.0"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0",
"phpspec/phpspec": "~2.1",
"friendsofphp/php-cs-fixer": "^2.3",
"phpmetrics/phpmetrics": "^2.2"
},
"autoload": {
"psr-4": {"GXChain\\GXClient\\": ["src/"]}
},
"autoload-dev": {
"psr-4": {"GXChain\\GXClient\\": ["tests/"]}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}