-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_emconf.php
More file actions
37 lines (35 loc) · 890 Bytes
/
ext_emconf.php
File metadata and controls
37 lines (35 loc) · 890 Bytes
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
<?php
/*
* This file is part of the TYPO3 CMS Extension "Flexform Demo"
* Michael Schams - https://schams.net
*
* For copyright and license information, please read the LICENSE.txt
* file distributed with this source code.
*
* @author Michael Schams <schams.net>
* @package TYPO3 CMS
* @subpackage flexform_demo
*/
$EM_CONF[$_EXTKEY] = array(
'title' => 'Flexform Demo',
'description' => 'TYPO3 extension to demonstrate Flexforms in TYPO3 CMS 7 LTS.',
'category' => 'misc',
'version' => '1.0.0',
'module' => '',
'state' => 'beta',
'createDirs' => '',
'clearcacheonload' => 0,
'author' => 'Michael Schams (schams.net)',
'author_email' => 'schams.net',
'author_company' => 'https://schams.net',
'constraints' => array(
'depends' => array(
'typo3' => '7.6.0-7.6.99',
'php' => '5.5.0-5.6.999',
),
'conflicts' => array(
),
'suggests' => array(
),
)
);