Skip to content

Commit

Permalink
* add compatibility for TYPO3 11
Browse files Browse the repository at this point in the history
  • Loading branch information
franzholz committed Jan 5, 2022
1 parent e0af79a commit 45abc03
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
7 changes: 5 additions & 2 deletions Changelog
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
2020-04-20 Franz Holzinger <franz@ttproducts.de>
2021-12-31 Franz Holzinger <franz@ttproducts.de>
* add compatibility for TYPO3 11

2021-04-20 Franz Holzinger <franz@ttproducts.de>
* bugfix extension manager configuration
* compatibility for TYPO3 10: replace eID parameter by Middleware and the parameter transactor.

2020-04-01 Franz Holzinger <franz@ttproducts.de>
2021-04-01 Franz Holzinger <franz@ttproducts.de>
* add compatibility for TYPO3 10
* remove compatibility for TYPO3 6.2

Expand Down
2 changes: 1 addition & 1 deletion README.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Set the compatibility mode (basic.compatibility) to 0 for the new API.
Older extension versions might need the old API and a 1 here.


Since version 0.9.0 the transactor extension contains a middleware, which payment extensions can use for a gateway instant message after the payment.
Since version 0.9.0 the transactor extension contains a middleware, which payment extensions can use for dealing with a gateway instant message after the payment.

Use the transactor parameter as
transactor=mygateway
Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"GPL-2.0-or-later"
],
"require": {
"php": "^7.2",
"typo3/cms-core": "^7.6 || ^8.7 || ^9.5 || ^10.4",
"jambagecom/div2007": "^1.11"
"php": "^7.3",
"typo3/cms-core": "^7.6 || ^8.7 || ^9.5 || ^10.4 || ^11.5",
"jambagecom/div2007": "^1.11 || ^1.12"
},
"suggest": {
"friendsoftypo3/typo3db-legacy": "^1"
Expand All @@ -43,8 +43,7 @@
]
},
"replace": {
"jambagecom/transactor": "self.version",
"typo3-ter/transactor": "self.version"
"jambagecom/transactor": "self.version"
},
"extra": {
"typo3/cms": {
Expand Down
6 changes: 3 additions & 3 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
'title' => 'Payment Transactor API',
'description' => 'This is a basic API to develop extensions which connect to different payment transaction gateways.',
'category' => 'misc',
'version' => '0.9.0',
'version' => '0.9.1',
'state' => 'stable',
'clearcacheonload' => 0,
'author' => 'Franz Holzinger',
'author_email' => 'franz@ttproducts.de',
'author_company' => '',
'constraints' => [
'depends' => [
'php' => '7.1.0-7.4.99',
'typo3' => '7.6.0-10.4.99',
'php' => '7.3.0-7.4.99',
'typo3' => '7.6.0-11.5.99',
'div2007' => '1.11.0-0.0.0',
],
'conflicts' => [
Expand Down

0 comments on commit 45abc03

Please sign in to comment.