This repository has been archived by the owner on Jan 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
composer.json
60 lines (60 loc) · 1.79 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "bitpay/php-client",
"description": "PHP Library to work with the new cryptographically secure BitPay API",
"license": "MIT",
"minimum-stability": "stable",
"keywords": ["bitpay", "bitcoin"],
"homepage": "https://github.com/bitpay/php-bitpay-client",
"support": {
"email": "[email protected]",
"issues": "https://github.com/bitpay/php-bitpay-client/issues",
"source": "https://github.com/bitpay/php-bitpay-client"
},
"authors": [
{
"name": "BitPay Integrations Development Team",
"email": "[email protected]",
"homepage": "https://bitpay.com/integrations"
}
],
"autoload": {
"psr-4": {
"": "src/"
}
},
"require": {
"php": ">=5.4",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"symfony/config": "^2.3 || ^3.0 || ^4.0",
"symfony/dependency-injection": "4.1.12"
},
"require-dev": {
"behat/behat": "2.5.*@stable",
"behat/mink": "1.6.1",
"behat/mink-extension": "1.3.*",
"behat/mink-selenium2-driver": "1.2.0",
"fabpot/goutte": "~1.0.4",
"behat/mink-goutte-driver": "1.*",
"phpmd/phpmd": "~2.1.3",
"phpunit/phpunit": "~4.8.35",
"fzaninotto/faker": "~1.4.0",
"mikey179/vfsstream": "~1.4.0",
"squizlabs/php_codesniffer": "~1.5.5",
"satooshi/php-coveralls": "~0.6.1",
"symfony/phpunit-bridge": "^4.0"
},
"suggest": {
"ext-gmp": "Quickest PHP math extension for doing computationally-expensive work."
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}