forked from kitodo/kitodo-presentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
41 lines (39 loc) · 1.21 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
<?php
/**
* (c) Kitodo. Key to digital objects e.V. <[email protected]>
*
* This file is part of the Kitodo and TYPO3 projects.
*
* @license GNU General Public License version 3 or later.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Kitodo.Presentation',
'description' => 'Base plugins, modules, services and API of the Digital Library Framework. It is part of the community-based Kitodo Digitization Suite.',
'version' => '3.3.0',
'category' => 'misc',
'constraints' => [
'depends' => [
'php' => '7.3.0-7.4.99',
'typo3' => '9.5.0-9.5.99'
],
'conflicts' => [],
'suggests' => []
],
'state' => 'stable',
'uploadfolder' => false,
'clearCacheOnLoad' => false,
'author' => 'Sebastian Meyer (Maintainer)',
'author_email' => '[email protected]',
'author_company' => 'Kitodo. Key to digital objects e. V.',
'autoload' => [
'psr-4' => [
'Kitodo\\Dlf\\' => 'Classes/'
],
'classmap' => [
'vendor/solarium',
'vendor/symfony'
]
]
];