-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 884 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 884 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
{
"name": "karelwintersky/arris.cache",
"description": "Arris µFramework Cache Engine",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Arris\\Cache\\": [ "src/" ]
}
},
"authors": [
{
"name": "Karel Wintersky",
"email": "karel.wintersky@gmail.com"
}
],
"require": {
"php": "^8",
"ext-pdo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-redis": "*",
"psr/log": "*",
"karelwintersky/arris.entity": "^1.0",
"karelwintersky/arris.toolkit.nanoredis": "^1"
},
"require-dev": {
"karelwintersky/arris": "^2",
"karelwintersky/arris.helpers": "^0",
"karelwintersky/arris.database": "^2",
"karelwintersky/arris.logger": "^2",
"vlucas/phpdotenv": "^3.3"
}
}