‪TYPO3CMS  11.5
ext_emconf.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 ‪$EM_CONF[$_EXTKEY] = [
6  'title' => 'Extension skeleton for TYPO3 7',
7  'description' => 'Description for ext',
8  'category' => 'Example Extensions',
9  'author' => 'Helmut Hummel',
10  'author_email' => 'info@helhum.io',
11  'author_company' => 'helhum.io',
12  'state' => 'stable',
13  'version' => '11.5.39',
14  'constraints' => [
15  'depends' => [
16  'typo3' => '11.5.39',
17  ],
18  'conflicts' => [],
19  'suggests' => [],
20  ],
21  'autoload' => [
22  'psr-4' => [
23  'TYPO3Fluid\\FluidTest\\' => 'Classes',
24  ],
25  ],
26  'autoload-dev' => [
27  'psr-4' => [
28  'TYPO3Fluid\\FluidTest\\Tests\\' => 'Tests',
29  ],
30  ],
31 ];
‪$EM_CONF
‪$EM_CONF[$_EXTKEY]
Definition: ext_emconf.php:3