feedit/ext_emconf.php
TYPO3 Release Team 851a5d8262 [TASK] Make TYPO3 Core PSR-2 standard compliant
In our efforts to achieve a better interoperability
with other PHP projects, the PHP code base of the
TYPO3 Core switches to the PHP coding guideline
standard PSR-2.

See http://www.php-fig.org/psr/psr-2/ for more
information.

Resolves: #70515
Releases: master
Change-Id: I734c0d838af157003decfeb5fc0a11dddcb87bf5
Reviewed-on: http://review.typo3.org/43918
Reviewed-by: TYPO3 Release Team <typo3cms@typo3.org>
Tested-by: TYPO3 Release Team <typo3cms@typo3.org>
2015-10-09 00:14:56 +02:00

21 lines
603 B
PHP

<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Frontend Editing',
'description' => '',
'category' => 'fe',
'author' => 'Jeff Segars, David Slayback',
'author_email' => 'jeff@webempoweredchurch.org, dave@webempoweredchurch.org',
'author_company' => 'Web-Empowered Church',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '7.6.0',
'constraints' => array(
'depends' => array(
'typo3' => '7.6.0-7.6.99',
),
'conflicts' => array(),
'suggests' => array(),
),
);