-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 999 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "jambagecom/transactor",
"type": "typo3-cms-extension",
"description": "This is a basic API to develop extensions which connect to different payment transaction gateways.",
"keywords": [
"TYPO3",
"extension",
"payment",
"gateway",
"tt_products"
],
"support": {
"issues": "https://jambage.com/kontakt/forum.html"
},
"homepage": "https://jambage.com",
"authors": [
{
"name": "Franz Holzinger",
"role": "Developer",
"homepage": "https://ttproducts.de"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": "^8.0",
"typo3/cms-core": "^11.5 || ^12.4 || ^13.4",
"jambagecom/div2007": "^2.0.5 || ^2.2"
},
"suggest": {
"friendsoftypo3/typo3db-legacy": "^1"
},
"autoload": {
"psr-4": {
"JambageCom\\Transactor\\": "Classes"
}
},
"replace": {
"typo3-ter/transactor": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "transactor"
}
}
}