forked from owenvoke/arionum-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1011 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
37
38
39
40
41
42
43
{
"name": "pxgamer/arionum-cli",
"type": "library",
"description": "A PHP-based command line wallet for Arionum.",
"license": "MIT",
"bin": [
"bin/arionum"
],
"require": {
"php": "^7.2",
"ext-dom": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.3",
"pxgamer/arionum-php": "^2.2",
"stephenhill/base58": "^1.1",
"symfony/console": "^4.0"
},
"require-dev": {
"humbug/box": "^3.2",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"pxgamer\\ArionumCLI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"pxgamer\\ArionumCLI\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"config": {
"sort-packages": true
}
}