-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.02 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
{
"name": "kdyby/csob-payment-gateway",
"type": "library",
"description": "CSOB client library",
"keywords": ["kdyby", "csob", "paymentgateway", "card", "payment"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Kdyby/CsobPaymentGateway/issues"
},
"require": {
"psr/log": "^1.0",
"psr/http-message": "^1.0"
},
"suggest": {
"guzzlehttp/guzzle": "HTTP client library for usage with the default IHttpClient implementation"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.0",
"nette/tester": "^1.6",
"mockery/mockery": "^0.9"
},
"autoload": {
"psr-4": {
"Kdyby\\CsobPaymentGateway\\": "src/"
},
"classmap": [
"src/exceptions.php"
]
},
"autoload-dev": {
"classmap": ["tests/KdybyTests"]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}