-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 887 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 887 Bytes
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": "kksoftwareag/indexed_search_gc",
"license": "MIT",
"type": "typo3-cms-extension",
"version": "4.0.0",
"homepage": "https://kk-software.de",
"description": "Provides a configurable Scheduler Task to Cleanup old IndexedSearch Entries",
"keywords": [
"TYPO3",
"extension",
"indexed_search",
"garbage collection",
"cleanup"
],
"authors": [
{
"name": "Bernhard Sirlinger",
"role": "Developer",
"homepage": "https://www.kk-software.de"
}
],
"require": {
"typo3/cms-core": "^12.4",
"typo3/cms-indexed-search": "^12.4",
"typo3/cms-scheduler": "^12.4"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"KKSoftware\\IndexedSearchGC\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "indexed_search_gc"
}
}
}