forked from buepro/typo3-pizpalue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
39 lines (37 loc) · 1.46 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
<?php
/*
* This file is part of the composer package buepro/typo3-pizpalue.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Pizpalue template',
'description' => 'Extension to create websites using bootstrap. It builds upon the bootstrap_package from Benjamin Kott and increases functionality by supporting the following extensions: container_elements, pp_gridelements, flux_elements, timelog, ws_flexslider, slickcarousel, indexed_search, news, eventnews, tt_address.',
'category' => 'template',
'version' => '12.0.0-dev',
'state' => 'stable',
'clearCacheOnLoad' => 1,
'author' => 'Roman Büchler',
'author_email' => '[email protected]',
'constraints' => [
'depends' => [
'php' => '7.3.0-8.0.99',
'typo3' => '10.4.20-11.5.99',
'bootstrap_package' => '12.1.0-12.1.99',
'pvh' => '1.0.0-1.99.99'
],
'conflicts' => [],
'suggests' => [
'news' => '',
'pp_gridelements' => '',
'flux_elements' => '',
'container_elements' => '',
],
],
'autoload' => [
'psr-4' => [
'Buepro\\Pizpalue\\' => 'Classes'
],
],
];