mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-09 01:16:08 +01:00
851a5d8262
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>
21 lines
603 B
PHP
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(),
|
|
),
|
|
);
|