-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
39 lines (38 loc) · 979 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
{
"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.2",
"guzzlehttp/guzzle": "~6.1||~7.0",
"symfony/yaml": "^2.7||^3.0||^4.0||^5.0||^6.0",
"symfony/event-dispatcher": "^5.0||^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"php-vcr/php-vcr": "~1.2"
},
"suggest": {
},
"autoload": {
"psr-4": {
"CurrencyCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CurrencyCloud\\Tests\\": "tests/"
}
}
}