forked from tpwd/ke_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.37 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
{
"name": "tpwd/ke_search",
"type": "typo3-cms-extension",
"description": "Search Extension for TYPO3, including faceting search functions.",
"homepage": "https://www.typo3-macher.de/en/facetted-search-ke-search/",
"license": "GPL-2.0+",
"keywords": [
"TYPO3 CMS",
"search",
"ke_search",
"kesearch",
"faceting",
"faceted search"
],
"support": {
"issues": "https://github.com/tpwd/ke_search/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-pdo": "*",
"typo3/cms-core": "^10.4.11 || ^11.0",
"symfony/polyfill-php80": "^1.23"
},
"require-dev": {
"typo3/cms-dashboard": "^10.4.11 || ^11.0",
"phpunit/phpunit": "^8.5 || ^9.5"
},
"suggest": {
"typo3/cms-dashboard": "Use widgets in dashboard"
},
"replace": {
"typo3-ter/ke_search": "self.version",
"teaminmedias-pluswerk/ke_search": "self.version"
},
"autoload": {
"psr-4": {
"Tpwd\\KeSearch\\": "Classes"
},
"classmap": [
"Classes"
]
},
"extra": {
"typo3/cms": {
"extension-key": "ke_search",
"web-dir": ".Build/web"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"vendor-dir": ".Build/vendor"
},
"scripts": {
"test:unit": ".Build/bin/phpunit -c Tests/phpunit.xml.dist"
}
}