forked from estation/php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 909 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 909 Bytes
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
{
"name" : "heidelpay/php-api",
"description" : "Client library for heidelpay payments.",
"license" : "Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.",
"version" : "16.12.19",
"authors" : [{
"name" : "Jens Richter"
}, {
"name" : "Ronja Wann"
}
],
"require" : {
"php" : "~5.6.0|~7.0.0",
"lib-curl" : ">=7.26.0",
"lib-openssl" : ">=1.0.1.5",
"ext-mcrypt" : "*"
},
"require-dev" : {
"phpunit/phpunit" : "~5"
},
"autoload" : {
"psr-4" : {
"Heidelpay\\PhpApi\\" : "lib"
},
"autoload-dev" : {
"psr-4" : {
"Heidelpay\\Test\\PhpApi\\" : "test/",
"Heidelpay\\Example\\PhpApi\\" : "example/"
}
}
},
"support" : {
"email" : "development@heidelpay.de"
},
"homepage" : "https://dev.heidelpay.de",
"minimum-stability" : "dev",
"type" : "library",
"keywords" : [
"payment-api",
"php",
"api",
"sdk"
]
}