-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 KB
/
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
38
39
{
"name": "awonderphp/simplecacheredis",
"description": "An implementation of the PSR-16 SimpleCache Interface for Redis with optional AEAD encryption",
"homepage": "https://github.com/AliceWonderMiscreations/SimpleCacheRedis",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Alice Wonder",
"role": "Unemployed Maniac",
"email": "[email protected]"
}
],
"require": {
"php": "~7.1.0 || ~7.2.0",
"ext-redis": "~3.1.6 || ~4.0",
"awonderphp/simplecache": "^1.0.1",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"vimeo/psalm": "^0",
"phpunit/phpunit": "^7"
},
"suggest": {
"ext-sodium": "~2.0.1"
},
"provide": {
"psr/simple-cache-implementation": "1.0"
},
"autoload": {
"psr-4": {
"AWonderPHP\\SimpleCacheRedis\\": "lib/"
}
},
"bin": [
"bin/makeRedisSodiumConfig"
]
}