-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
38 lines (36 loc) · 1.12 KB
/
ext_emconf.php
File metadata and controls
38 lines (36 loc) · 1.12 KB
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
<?php
/*
* This file is part of the TYPO3 CMS Extension "Extension Compatibility Check"
* Extension author: Michael Schams - https://schams.net
*
* For copyright and license information, please read the LICENSE.txt
* file distributed with this source code.
*
* @package TYPO3
* @subpackage extension_compatibility_check
* @author Michael Schams <schams.net>
* @link https://schams.net
*/
$EM_CONF[$_EXTKEY] = array(
'title' => 'Extension Compatibility Check',
'description' => 'TYPO3 CMS extension to check the compatibility status of currently installed extensions in TYPO3 CMS 6.2 LTS.',
'category' => 'module',
'version' => '1.0.2',
'module' => '',
'state' => 'stable',
'createDirs' => '',
'clearcacheonload' => 0,
'author' => 'Michael Schams (schams.net)',
'author_email' => 'schams.net',
'author_company' => 'https://schams.net',
'constraints' => array(
'depends' => array(
'typo3' => '6.2.0-6.2.99',
'php' => '5.4.0-5.6.99',
),
'conflicts' => array(
),
'suggests' => array(
),
)
);