-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 941 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
{
"name": "webcoast/versatile-search",
"description": "A versatile and extendable search for TYPO3 CMS",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"search",
"indexed_search"
],
"license": "GPL-3.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Thorben Nissen",
"email": "thorben@webcoast.dk"
}
],
"extra": {
"branch-alias": {
"dev-main": "3.0.x-dev"
},
"typo3/cms": {
"extension-key": "versatile_search"
}
},
"autoload": {
"psr-4": {
"WEBcoast\\VersatileSearch\\": "Classes"
}
},
"require": {
"typo3/cms-core": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-indexed-search": "^12.4"
},
"suggest": {
"georgringer/numbered-pagination": "*"
}
}