kitodo-presentation/ext_emconf.php

42 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2011-03-09 16:36:27 +01:00
<?php
2019-10-30 15:37:44 +01:00
2016-09-23 12:24:46 +02:00
/**
* (c) Kitodo. Key to digital objects e.V. <contact@kitodo.org>
*
* 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.
*/
2011-03-09 16:36:27 +01:00
2019-03-12 09:53:09 +01:00
$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.',
2022-05-25 09:31:25 +02:00
'version' => '4.0.1',
2019-03-12 09:53:09 +01:00
'category' => 'misc',
'constraints' => [
'depends' => [
2020-05-26 09:28:38 +02:00
'php' => '7.3.0-7.4.99',
2022-04-07 16:01:24 +02:00
'typo3' => '9.5.0-10.4.99'
2019-03-12 09:53:09 +01:00
],
'conflicts' => [],
'suggests' => []
],
'state' => 'stable',
'uploadfolder' => false,
'clearCacheOnLoad' => false,
2019-03-12 09:53:09 +01:00
'author' => 'Sebastian Meyer (Maintainer)',
'author_email' => 'contact@kitodo.org',
'author_company' => 'Kitodo. Key to digital objects e. V.',
'autoload' => [
2019-03-13 08:29:51 +01:00
'psr-4' => [
'Kitodo\\Dlf\\' => 'Classes/'
],
2019-03-12 09:53:09 +01:00
'classmap' => [
2018-11-15 18:26:37 +01:00
'vendor/solarium',
'vendor/symfony'
2019-03-12 09:53:09 +01:00
]
]
];