-
Notifications
You must be signed in to change notification settings - Fork 2
/
ext_emconf.php
43 lines (41 loc) · 1.25 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
38
39
40
41
42
43
<?php
/*
* This file is (c) 2018 by Cyberhouse GmbH
*
* It is free software; you can redistribute it and/or
* modify it under the terms of the GPLv3 license
*
* For the full copyright and license information see
* <https://www.gnu.org/licenses/gpl-3.0.html>
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'TYPO3 Doctrine ORM',
'description' => 'Provides Extbase integration for Doctrine ORM for TYPO3 8',
'category' => 'misc',
'shy' => 0,
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'internal' => 0,
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'lockType' => '',
'author' => 'Cyberhouse',
'author_email' => '[email protected]',
'author_company' => '',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'version' => '1.0.3',
'constraints' => [
'depends' => [
'typo3' => '8.6.0-8.7.99',
],
'conflicts' => [],
'suggests' => [],
],
];