forked from twikey/twikey-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "vanrijs/twikey-api-php",
"description": "Php client to interface with the Twikey api",
"type": "library",
"keywords": [
"payments",
"subscriptions",
"twikey-php-client",
"mollie",
"payment",
"service",
"ideal",
"creditcard",
"mistercash",
"bancontact",
"sofort",
"sofortbanking",
"sepa",
"banktransfer",
"direct debit",
"belfius",
"refunds",
"api",
"payments",
"gateway",
"subscriptions",
"recurring",
"charges",
"kbc",
"cbc"
],
"homepage": "https://api.twikey.com",
"require": {
"php": "^7.4 || ^8.0",
"psr/http-client": "^1.0.1",
"ext-json": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"guzzlehttp/guzzle": "^7.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Twikey\\Api\\": "src/"
}
},
"scripts": {
"test": "php vendor/phpunit/phpunit/phpunit"
},
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Koen Serry",
"email": "482723+koen-serry@users.noreply.github.com"
}
]
}