-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathext_emconf.php
37 lines (36 loc) · 1.12 KB
/
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
31
32
33
34
35
36
37
<?php
/**
* This file is part of the TeamNeustaGmbH/m2t3 package.
*
* Copyright (c) 2017 neusta GmbH | Ein team neusta Unternehmen
*
* For the full copyright and license information, please view the LICENSE file that was distributed with this source code.
*
* @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause License
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'm2t3_sso',
'description' => 'single sign on for magentypo',
'category' => 'extension',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-8.99.99',
'fluid_styled_content' => '7.6.0-8.99.99'
],
'conflicts' => [
],
],
'autoload' => [
'psr-4' => [
'TeamNeustaGmbH\\M2T3\\Sso\\' => 'Classes'
],
],
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'author' => 'Benjamin Kluge',
'author_email' => '[email protected]',
'author_company' => 'team neusta GmbH',
'version' => '1.0.0',
];