-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 818 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 818 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
{
"name": "cobweb/flush_language_cache",
"type": "typo3-cms-extension",
"description": "Flush language cache – Adds an item to the flush cache menu to clear just the language (l10n) cache. Also provides a command-line tool for that.",
"license": [
"GPL-2.0+"
],
"authors": [
{
"name": "Francois Suter",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Cobweb\\FlushLanguageCache\\": "Classes/"
}
},
"require": {
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
"typo3/cms-core": "^13.4 || ^14.3"
},
"replace": {
"typo3-ter/flush_language_cache": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "flush_language_cache",
"version": "6.0.2",
"Package": {
"providesPackages": {
}
}
}
}
}