-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext_emconf.php
More file actions
37 lines (35 loc) · 1.19 KB
/
Copy pathext_emconf.php
File metadata and controls
37 lines (35 loc) · 1.19 KB
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
<?php
$EM_CONF[$_EXTKEY] = array(
'title' => 'Slim Framework integration',
'description' => 'Integrates the Slim microframework. Providing a PSR-7 based router and middleware in front of TYPO3 (executed when a route matches)',
'category' => '',
'author' => 'Benjamin Franzke',
'author_email' => 'benjaminfranzke@gmail.com',
'state' => 'stable',
'internal' => '',
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '0.5.0',
'constraints' => array(
'depends' => array(
'typo3' => '9.5.0-10.4.99',
),
'conflicts' => array(
),
'suggests' => array(
),
),
'autoload' => array(
'psr-4' => array(
'Bnf\\SlimTypo3\\' => 'Classes',
'Slim\\' => 'Resources/Private/PHP/slim/slim/Slim',
'Bnf\\Slim3Psr15\\' => 'Resources/Private/PHP/bnf/slim3-psr15/src',
'FastRoute\\' => 'Resources/Private/PHP/nikic/fast-route/src',
'Bnf\\Typo3Middleware\\' => 'Resources/Private/PHP/bnf/typo3-middleware/src',
),
'classmap' => array(
'Resources/Private/PHP/pimple/pimple/src/Pimple/'
),
),
);