forked from sourcebroker/restrictfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
28 lines (27 loc) · 1.06 KB
/
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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Restrict access for staging and prod instances',
'description' => 'This extension blocks access to frontend and allows to show it only to some defined exception\'s like if the request is from an authorized backend user, has specific IP, header, domain, language or GET/POST vars. Useful to protect your staging and production instances.',
'author' => 'SourceBroker Team',
'author_email' => '[email protected]',
'author_company' => 'SourceBroker',
'category' => 'fe',
'version' => '8.0.3',
'shy' => '',
'priority' => '',
'module' => '',
'state' => 'stable',
'internal' => '',
'uploadfolder' => '0',
'createDirs' => '',
'modify_tables' => '',
'lockType' => '',
'clearCacheOnLoad' => 0,
'constraints' => [
'depends' => [
'typo3' => '6.2.0-8.7.99',
],
'conflicts' => [],
'suggests' => [],
],
];