forked from pfpayments/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 752 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 752 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
{
"name": "postfinancecheckout/sdk",
"version": "4.8.0",
"description": "PostFinance Checkout SDK for PHP",
"keywords": [
"postfinancecheckout",
"payment",
"php",
"sdk",
"api"
],
"homepage": "http://github.com/pfpayments/php-sdk",
"license": "Apache-2.0",
"authors": [
{
"name": "wallee AG",
"email": "checkout@postfinance.ch",
"homepage": "https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "~8"
},
"autoload": {
"psr-4": { "PostFinanceCheckout\\Sdk\\" : "lib/" }
},
"autoload-dev": {
"psr-4": { "PostFinanceCheckout\\Sdk\\" : "test/" }
}
}