-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 952 Bytes
/
composer.json
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
{
"name": "kodus/predis-simple-cache",
"description": "A lightweight bridge from predis/predis to a PSR-16 simple-cache interface",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas Nordahl Pedersen",
"email": "thno@fynskemedier.dk"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"psr/simple-cache": "^2.0|^3.0",
"predis/predis": "^2.3"
},
"autoload": {
"psr-4": {
"Kodus\\PredisSimpleCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kodus\\PredisSimpleCache\\Test\\": "tests/integration/"
}
},
"require-dev": {
"codeception/codeception": "^5.0.0",
"codeception/module-redis": "^3.2.0",
"codeception/module-asserts": "^3.0.0"
},
"scripts": {
"test": "codecept run"
}
}