-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
50 lines (49 loc) · 990 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
47
48
49
50
{
"name": "id/indexed-search-autocomplete",
"type": "typo3-cms-extension",
"description": "Indexed Search Autocomplete",
"homepage": "https://www.ingeniumdesign.de/",
"license": [
"MIT"
],
"authors": [
{
"name": "Sebastian Schmal",
"email": "[email protected]",
"homepage": "https://www.ingeniumdesign.de/",
"role": "Developer"
}
],
"keywords": [
"typo3",
"cms",
"search",
"indexed-search",
"autocomplete",
"ingeniumdesign"
],
"replace": {
"typo3-ter/indexed_search_autocomplete": "self.version"
},
"require": {
"typo3/cms-core": ">=9.0.0"
},
"suggest": {
},
"autoload": {
"psr-4": {
"ID\\IndexedSearchAutocomplete\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "indexed_search_autocomplete"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ingeniumdesign/indexed_search_autocomplete"
}
]
}