forked from cardinity/cardinity-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 851 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
{
"name": "cardinity/cardinity-sdk-php",
"description": "Client library for Cardinity credit card processing API",
"type": "library",
"license": "MIT",
"homepage": "https://cardinity.com",
"require": {
"php" : ">=7.2.5",
"guzzlehttp/guzzle" : "^6.2.1",
"guzzlehttp/oauth-subscriber": "0.3.*",
"symfony/validator" : "^5.0.0"
},
"require-dev": {
"monolog/monolog" : "~1.0",
"phpspec/phpspec" : "~6.2",
"phpunit/phpunit" : "^8.5",
"symfony/yaml" : "^4.4"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {"Cardinity\\": "src"}
},
"autoload-dev": {
"psr-4": {
"Cardinity\\Tests\\": "tests/"
}
}
}