-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
ext_emconf.php
28 lines (27 loc) · 1007 Bytes
/
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
<?php
/** @noinspection PhpUndefinedVariableInspection */
$EM_CONF[$_EXTKEY] = [
'title' => 'Apache Tika for TYPO3',
'description' => 'Provides Tika services for TYPO3 to detect a document\'s language, extract meta data, and extract content from files. Can either use a stand alone Tika executable or Tika integrated in a Solr server with an activated extracting request handler.',
'version' => '13.0.0-alpha-1',
'state' => 'alpha',
'category' => 'services',
'author' => 'Ingo Renner, Timo Hund, Markus Friedrich, Rafael Kähm',
'author_email' => '[email protected]',
'author_company' => 'dkd Internet Service GmbH',
'constraints' => [
'depends' => [
'typo3' => '13.1.0-13.4.99',
'filemetadata' => '',
],
'conflicts' => [],
'suggests' => [
'solr' => '13.0.0-',
],
],
'autoload' => [
'psr-4' => [
'ApacheSolrForTypo3\\Tika\\' => 'Classes/',
],
],
];