Skip to content

Commit

Permalink
Merge pull request #16 from xima-media/ext-emconf
Browse files Browse the repository at this point in the history
Add ext_emconf.php
  • Loading branch information
maikschneider authored Jan 31, 2024
2 parents 7a3812c + c6116a9 commit bc355e8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions ext_emconf.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

$EM_CONF[$_EXTKEY] = [
'title' => 'OAuth2 Extended',
'description' => 'Provides additional OAuth2 provider + on-the-fly user creation',
'category' => 'auth',
'author' => 'Maik Schneider',
'author_email' => 'maik.schneider@xima.de',
'author_company' => 'XIMA Media GmbH',
'state' => 'stable',
'uploadfolder' => 0,
'clearCacheOnLoad' => 1,
'version' => '2.0.2',
'autoload' => [
'psr-4' => ['Xima\\XimaOauth2Extended\\' => 'Classes'],
],
'constraints' => [
'depends' => [
'typo3' => '11.5.99-12.4.99',
],
],
];

0 comments on commit bc355e8

Please sign in to comment.