-
Notifications
You must be signed in to change notification settings - Fork 29
/
ext_emconf.php
executable file
·46 lines (44 loc) · 1.69 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
44
45
46
<?php
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'The Official TYPO3 Introduction Package',
'description' => 'This is the Official TYPO3 Introduction Package, a carefully crafted TYPO3 distribution giving you a small insight in the powerful toolbox of the TYPO3 CMS framework. It comes with a full-fledged website based on Benjamin Kott\'s Bootstrap Package and Twitter Bootstrap, with simple options to customize the base theme.',
'category' => 'distribution',
'version' => '4.7.0',
'state' => 'stable',
'clearcacheonload' => 1,
'author' => 'Introduction Package Team',
'author_email' => '',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-13.4.99',
'beuser' => '12.4.0-13.4.99',
'bootstrap_package' => '15.0.0-15.99.99',
'extensionmanager' => '12.4.0-13.4.99',
'felogin' => '12.4.0-13.4.99',
'filemetadata' => '12.4.0-13.4.99',
'form' => '12.4.0-13.4.99',
'impexp' => '12.4.0-13.4.99',
'indexed_search' => '12.4.0-13.4.99',
'tstemplate' => '12.4.0-13.4.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'TYPO3\\CMS\\Introduction\\' => 'Classes',
],
],
];