forked from marketing-factory/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
30 lines (29 loc) · 825 Bytes
/
ext_emconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Extension Manager/Repository config file for ext "oauth2".
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'OAuth2 authentication and authorization',
'description' => 'Generic OAuth 2.0 authentication and authorization for TYPO3 CMS',
'category' => 'system',
'constraints' => [
'depends' => [
'typo3' => '8.7.0-9.5.99'
],
'conflicts' => [
],
],
'autoload' => [
'psr-4' => [
'Mfc\\OAuth2\\' => 'Classes'
],
],
'state' => 'beta',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'author' => 'Christian Hellmund, Simon Schmidt, Christian Spoo',
'author_email' => 'typo3@marketing-factory.de',
'author_company' => 'Marketing Factory Consulting GmbH',
'version' => '0.2.4',
];