-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
30 lines (27 loc) · 898 Bytes
/
ext_emconf.php
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
<?php
/***************************************************************
* Extension Manager/Repository config file for ext "transactor".
***************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => 'Payment Transactor API',
'description' => 'This is a basic API to develop extensions which connect to different payment transaction gateways.',
'category' => 'misc',
'version' => '0.12.0',
'state' => 'stable',
'clearcacheonload' => 0,
'author' => 'Franz Holzinger',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => [
'depends' => [
'php' => '8.0.0-8.4.99',
'typo3' => '11.5.0-13.4.99',
'div2007' => '2.0.5-2.2.99',
],
'conflicts' => [
],
'suggests' => [
'typo3db_legacy' => '1.0.0-1.1.99',
]
],
];