-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
72 lines (72 loc) · 1.77 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
{
"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": "^8.1",
"typo3/cms-core": "^12.3",
"ext-pdo": "*"
},
"require-dev": {
"typo3/cms-dashboard": "^12 || ^13",
"typo3/cms-info": "^12 || ^13",
"typo3/cms-install": "^12 || ^13",
"friendsofphp/php-cs-fixer": "^3",
"typo3/coding-standards": "^0.8.0",
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1",
"ext-zip": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-json": "*",
"typo3/cms-indexed-search": "^12 || ^13",
"typo3/cms-scheduler": "^12 || ^13"
},
"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",
"test:phpstan": ".Build/bin/phpstan clear-result-cache && .Build/bin/phpstan --configuration=Tests/phpstan.neon > phpstan-report.log",
"test:php-cs-fixer": ".Build/bin/php-cs-fixer fix -v --dry-run --using-cache=no > php-cs-fixer-report.log"
}
}