-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
58 lines (51 loc) · 1.12 KB
/
composer.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "hmmh/solr-file-indexer",
"description": "Solr file indexer for Typo3",
"keywords": ["typo3", "solr", "file", "tika", "apache", "indexer"],
"type": "typo3-cms-extension",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Sascha Wilking",
"email": "sascha.wilking@hmmh.de",
"homepage": "https://hmmh.de/",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"typo3/cms-core": "~13.4.0",
"typo3/cms-install": "~13.4.0",
"apache-solr-for-typo3/solr": "~13.0.0"
},
"suggest": {
"typo3/cms-filemetadata": "~13.4.0",
"hmmh/solr-file-indexer-admin": "~1.0.0",
"apache-solr-for-typo3/tika": ">=11.0"
},
"autoload": {
"psr-4": {
"HMMH\\SolrFileIndexer\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"HMMH\\SolrFileIndexer\\Tests\\": "Tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https:\/\/composer.typo3.org\/"
}
],
"extra": {
"typo3/cms": {
"extension-key": "solr_file_indexer"
}
},
"config": {
"allow-plugins": true,
"sort-packages": true
}
}