-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 978 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 978 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
{
"name": "swag/cache-invalidation-logger",
"description": "Logs cache invalidation events with detailed information about tags and callers",
"type": "shopware-platform-plugin",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Shopware"
}
],
"require": {
"shopware/core": "*"
},
"extra": {
"shopware-plugin-class": "Swag\\CacheInvalidationLogger\\CacheInvalidationLogger",
"label": {
"de-DE": "Cache Invalidierung Logger",
"en-GB": "Cache Invalidation Logger"
},
"description": {
"de-DE": "Protokolliert Cache-Invalidierungsereignisse mit detaillierten Informationen über Tags und Aufrufer",
"en-GB": "Logs cache invalidation events with detailed information about tags and callers"
}
},
"autoload": {
"psr-4": {
"Swag\\CacheInvalidationLogger\\": "src/"
}
}
}