forked from owenvoke/arionum-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 745 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 745 Bytes
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": "owenvoke/arionum-php",
"type": "library",
"description": "An API wrapper for the Arionum cryptocurrency node.",
"license": "MIT",
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.5||^7.0.1",
"stephenhill/base58": "^1.1"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"OwenVoke\\Arionum\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OwenVoke\\Arionum\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}