-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (41 loc) · 922 Bytes
/
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
{
"name": "hmmh/solr-file-indexer-admin",
"description": "Solr file indexer admin for Typo3",
"keywords": ["typo3", "solr", "file", "tika", "apache", "indexer"],
"type": "typo3-cms-extension",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Sascha Wilking",
"email": "[email protected]",
"homepage": "https://hmmh.de/",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"typo3/cms-core": "~12.4.4",
"typo3/cms-dashboard": "~12.4.4",
"hmmh/solr-file-indexer": "~3.0.0"
},
"autoload": {
"psr-4": {
"HMMH\\SolrFileIndexerAdmin\\": "Classes"
}
},
"repositories": [
{
"type": "composer",
"url": "https:\/\/composer.typo3.org\/"
}
],
"extra": {
"typo3/cms": {
"extension-key": "solr_file_indexer_admin"
}
},
"config": {
"allow-plugins": true,
"sort-packages": true
}
}