-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 769 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 769 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
{
"name": "mimatus/locksmith",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.3"
},
"suggest": {
"ext-redis": "To use this library with the PHP Redis extension.",
"predis/predis": "To use this library with the Predis client.",
"amphp/redis": "To use this library with the AMPHP Redis client."
},
"autoload": {
"psr-4": {
"MiMatus\\Locksmith\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MiMatus\\Locksmith\\Tests\\": "tests/"
}
},
"require-dev": {
"ext-redis": "*",
"phpunit/phpunit": "^12.5",
"amphp/redis": "^2.0",
"predis/predis": "^3.3",
"revolt/event-loop": "^1.0"
}
}