forked from benjaminkott/bootstrap_package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
36 lines (35 loc) · 1.13 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
<?php
/************************************************************************
* Extension Manager/Repository config file for ext "bootstrap_package".
************************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => 'Bootstrap Package',
'description' => 'Bootstrap Package delivers a full configured frontend theme for TYPO3, based on the Bootstrap CSS Framework.',
'category' => 'templates',
'constraints' => [
'depends' => [
'typo3' => '8.7.0-9.0.99',
'rte_ckeditor' => '8.7.0-9.0.99'
],
'conflicts' => [
'css_styled_content' => '*',
'fluid_styled_content' => '*',
'themes' => '*',
'fluidpages' => '*',
'dyncss' => '*',
],
],
'autoload' => [
'psr-4' => [
'BK2K\\BootstrapPackage\\' => 'Classes'
],
],
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'author' => 'Benjamin Kott',
'author_email' => '[email protected]',
'author_company' => 'private',
'version' => '8.1.0',
];