forked from DMKEBUSINESSGMBH/typo3-mksearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 2.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "dmk/mksearch",
"description": "Generic highly adjustable and extendable search engine framework, using Zend Lucene, Apache Solr or ElasticSearch. But support for other search engines can be provided easily.",
"version": "9.5.3",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"search",
"Lucene",
"Zend Lucene",
"Apache Solr",
"Solr",
"Elasticsearch"
],
"homepage": "http://www.dmk-ebusiness.de/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Michael Wagner",
"email": "michael.wagner@dmk-ebusiness.de",
"role": "Developer"
},
{
"name": "Hannes Bochmann",
"email": "hannes.bochmann@dmk-ebusiness.de",
"role": "Developer"
},
{
"name": "René Nitzsche",
"email": "nitzsche@dmk-ebusiness.de",
"role": "Developer"
}
],
"support": {
"email": "dev@dmk-ebusiness.de",
"source": "https://github.com/DMKEBUSINESSGMBH/typo3-mksearch",
"issues": "https://github.com/DMKEBUSINESSGMBH/typo3-mksearch"
},
"replace": {
"mksearch": "self.version",
"typo3-ter/mksearch": "self.version"
},
"require": {
"typo3/cms-core": "~8.7 || ^9.5",
"digedag/rn-base": ">=1.10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.14.*",
"nimut/testing-framework": "^4.0"
},
"autoload": {
"classmap": [
"action/",
"filter/",
"hooks/",
"indexer/",
"interface/",
"marker/",
"mod1/",
"model/",
"scheduler/",
"search/",
"service/",
"signalSlotDispatcher/",
"tests/",
"util/",
"view/"
],
"exclude-from-classmap": ["lib/Elastica/"],
"psr-4": {
"DMK\\Mksearch\\" : "Classes"
},
"files": [
"Classes/Constants.php"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/mksearch ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/mksearch"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}