-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
33 lines (33 loc) · 928 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
{
"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.5.6||^7.4.3",
"guzzlehttp/oauth-subscriber": "~0.3",
"symfony/validator" : "4.0||^5.4.43||^7.1.4"
},
"require-dev": {
"monolog/monolog" : "~1.0",
"phpspec/phpspec" : "~6.2||7.*",
"phpunit/phpunit" : "^8.5",
"symfony/yaml" : ">=4.4"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {"Cardinity\\": "src"}
},
"autoload-dev": {
"psr-4": {
"Cardinity\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}