-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·41 lines (41 loc) · 1021 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
{
"name": "cryptomkt/cryptomkt-guzzle-php",
"description": "Crypto Market PHP Client",
"keywords": [ "ethereum", "cryptomkt", "stellar", "php", "client", "bitcoin", "lumen", "cryptocurrencies", "blockchain"],
"homepage": "https://www.cryptomkt.com",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Cryptomkt\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Cryptomkt\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0",
"guzzlehttp/guzzle": "^6.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.7"
},
"config": {
"bin-dir": "bin/"
},
"authors": [
{
"name": "Mario Pando",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}