Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rengaw83 committed May 11, 2017
1 parent 88929f1 commit 1fc9658
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 44 deletions.
91 changes: 54 additions & 37 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,56 @@
{
"name" : "dmk/mkforms",
"description" : "Making HTML forms for TYPO3",
"version" : "2.0.13",
"type" : "typo3-cms-extension",
"keywords" : [
"TYPO3 CMS",
"forms",
"formidable"
],
"homepage" : "http://www.dmk-ebusiness.de/",
"license" : "GPL-2.0+",
"authors" : [{
"name" : "Michael Wagner",
"email" : "[email protected]",
"role" : "Developer"
}, {
"name" : "René Nitzsche",
"email" : "[email protected]",
"role" : "Developer"
}
],
"support" : {
"email" : "[email protected]",
"source" : "https://github.com/DMKEBUSINESSGMBH/typo3-mkforms",
"issues": "https://github.com/DMKEBUSINESSGMBH/typo3-mkforms"
},
"replace" : {
"mkforms" : "self.version",
"typo3-ter/mkforms" : "self.version"
},
"require" : {
"typo3/cms" : "~4.5 || ~6.2 || ~7.6 || ~8.7",
"typo3-ter/rn-base" : "^1.0.9"
},
"autoload": {
"classmap": ["action/", "api/", "dh/", "exception/", "forms/", "hooks/", "js/", "remote/", "renderer/", "session/", "util/", "validator/", "view/", "widgets/"]
}
"name": "dmk/mkforms",
"description": "Making HTML forms for TYPO3",
"version": "3.0.0",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"forms",
"formidable"
],
"homepage": "http://www.dmk-ebusiness.de/",
"license": "GPL-2.0+",
"authors": [
{
"name": "Michael Wagner",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "René Nitzsche",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/DMKEBUSINESSGMBH/typo3-mkforms",
"issues": "https://github.com/DMKEBUSINESSGMBH/typo3-mkforms"
},
"replace": {
"mkforms": "self.version",
"typo3-ter/mkforms": "self.version"
},
"require": {
"typo3/cms": "~4.5 || ~6.2 || ~7.6 || ~8.7",
"digedag/rn-base": ">=1.4"
},
"autoload": {
"classmap": [
"action/",
"api/",
"dh/",
"exception/",
"forms/",
"hooks/",
"js/",
"remote/",
"renderer/",
"session/",
"util/",
"validator/",
"view/",
"widgets/"
]
}
}
13 changes: 6 additions & 7 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@
// Only the data in the array - anything else is removed by next write.
// "version" and "dependencies" must not be touched!
//

$EM_CONF[$_EXTKEY] = array(
'title' => 'MK Forms',
'description' => 'Making HTML forms for TYPO3',
'category' => 'misc',
'shy' => 0,
'version' => '2.0.13',
'version' => '3.0.0',
'dependencies' => '',
'conflicts' => 'ameos_formidable',
'priority' => '',
Expand All @@ -34,16 +33,16 @@
'CGLcompliance_note' => '',
'constraints' => array(
'depends' => array(
'rn_base' => '1.0.9-',
'typo3' => '4.5.0-8.7.99',
'rn_base' => '1.4.0-',
'typo3' => '4.5.0-8.7.99'
),
'conflicts' => array(
'ameos_formidable' => ''
),
'suggests' => array(
'mkmailer' => '0.7.6-',
'mklib' => '0.9.84-',
),
'mkmailer' => '3.0.0-',
'mklib' => '3.0.0-'
)
),
'_md5_values_when_last_written' => '',
);

0 comments on commit 1fc9658

Please sign in to comment.