-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 840 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 840 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
{
"name": "b13/distributed-locks",
"description": "Redis-based Locking - Adds a Redis Locking Strategy for TYPO3 frontend page generation, useful on distributed systems with NFS.",
"type": "typo3-cms-extension",
"keywords": ["TYPO3 CMS", "Redis", "Locking", "NFS"],
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1",
"ext-redis": "*",
"typo3/cms-core": "^12.4 || ^13.4 || ^14.3"
},
"suggest": {
"typo3/cms-lowlevel": "Blinds the configured redis password in the backend \"Configuration\" module"
},
"extra": {
"typo3/cms": {
"extension-key": "distributed_locks",
"version": "3.0.0",
"Package": {
"providesPackages": {}
}
}
},
"autoload": {
"psr-4": {
"B13\\DistributedLocks\\": "src/"
}
},
"config": {
"sort-packages": true
}
}