First revision of purse SSO without additional features

This commit is contained in:
2016-09-22 20:41:57 +02:00
parent 09714da47d
commit d6f5fb6257
6 changed files with 179 additions and 0 deletions

40
ext_emconf.php Normal file
View File

@@ -0,0 +1,40 @@
<?php
/**
* Extension Manager/Repository config file for ext: "dj_discourse_sso"
*/
$EM_CONF[$_EXTKEY] = array(
'title' => 'Discourse SSO',
'description' => 'Single sign on support for Discourse forum software, thus FE users from Typo3 are automatically logged into Discourse',
'category' => 'be',
'author' => 'Dirk Jahnke',
'author_email' => 'dirk.jahnke@mailbox.org',
'author_company' => 'Dirk Jahnke',
'shy' => '',
'dependencies' => 'extbase,fluid',
'conflicts' => '',
'priority' => 'bottom',
'state' => 'beta',
'uploadfolder' => '0',
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'lockType' => '',
'version' => '0.0.1',
'constraints' => array(
'depends' => array(
'php' => '5.4.0-0.0.0',
'typo3' => '6.2.0-6.2.99',
'extbase' => '6.2.0-6.2.99',
'fluid' => '0.0.0-0.0.0',
),
'conflicts' => array(
),
'suggests' => array(
'devlog' => '0.0.0-0.0.0',
),
),
);
?>