Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rengaw83 committed May 11, 2017
1 parent d9c716b commit 8e5b2bd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 33 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dmk/t3twig",
"description": "Extend rn_base for using twig templates instead of marker templates",
"version": "1.2.0",
"version": "2.0.0",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
Expand All @@ -28,8 +28,8 @@
}
],
"require": {
"typo3/cms": ">=7.6.16 <=8.7.99",
"digedag/rn-base": ">=1.2.5",
"typo3/cms": "~7.6.16 || ~8.7",
"digedag/rn-base": ">=1.4",
"twig/twig": "~1.0"
},
"autoload": {
Expand Down
58 changes: 28 additions & 30 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,38 +9,36 @@
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @link https://www.dmk-ebusiness.de/
*/

$EM_CONF[ $_EXTKEY ] = [
'title' => 'T3twig',
'description' => 'TYPO3 extension to render page templates with Twig and extend rn_base for using Twig templates instead of marker ',
'shy' => 0,
'version' => '1.2.0',
'dependencies' => 'cms',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'uploadfolder' => 0,
'modify_tables' => '',
'clearcacheonload' => 0,
'lockType' => '',
'category' => 'misc',
'author' => 'DMK E-BUSINESS GmbH',
'author_email' => 'dev@dmk-ebusiness.de',
'author_company' => 'DMK E-BUSINESS GmbH',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' => [
'depends' => [
'rn_base' => '1.2.5-',
'typo3' => '7.6.16-8.7.99',
$EM_CONF[$_EXTKEY] = [
'title' => 'T3twig',
'description' => 'TYPO3 extension to render page templates with Twig and extend rn_base for using Twig templates instead of marker ',
'shy' => 0,
'version' => '2.0.0',
'dependencies' => 'cms',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'uploadfolder' => 0,
'modify_tables' => '',
'clearcacheonload' => 0,
'lockType' => '',
'category' => 'misc',
'author' => 'DMK E-BUSINESS GmbH',
'author_email' => 'dev@dmk-ebusiness.de',
'author_company' => 'DMK E-BUSINESS GmbH',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' => [
'depends' => [
'rn_base' => '1.4.0-',
'typo3' => '7.6.16-8.7.99',
],
'conflicts' => [],
'suggests' => [],
'suggests' => []
],
'_md5_values_when_last_written' => '',
'suggests' => [
],
'createDirs' => 'typo3temp/t3twig/',
'suggests' => [],
'createDirs' => 'typo3temp/t3twig/',
];

0 comments on commit 8e5b2bd

Please sign in to comment.