forked from unrealevil/currencycloud-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (39 loc) · 1016 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
{
"name": "currency-cloud/client",
"type": "library",
"authors": [
{
"name": "CurrencyCloud",
"email": "[email protected]",
"homepage": "https://developer.currencycloud.com/documentation/getting-started/introduction",
"role": "developer"
}
],
"description": "A PHP library which implements the complete functionality of v2 of the The Currency Cloud API.",
"keywords": ["currency", "cloud"],
"homepage": "https://github.com/CurrencyCloud/currencycloud-php",
"license": "MIT",
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "~6.1",
"symfony/yaml": "^2.7|^3.0|^4.0",
"symfony/event-dispatcher": "^2.7|^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"php-vcr/php-vcr": "~1.2",
"php-vcr/phpunit-testlistener-vcr": "~1.1"
},
"suggest": {
},
"autoload": {
"psr-4": {
"CurrencyCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CurrencyCloud\\Tests\\": "tests/"
}
}
}