-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 899 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 899 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
35
36
37
38
{
"name": "llegaz/redis-tools",
"description": "Tools and interfaces to help inspect Redis Databases",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Laurent LEGAZ",
"email": "laurent@legaz.eu"
}
],
"keywords": [
"phpredis",
"predis",
"redis",
"tools"
],
"require": {
"llegaz/redis-adapter": "~0.1",
"league/climate": "^3.10"
},
"require-dev": {
"symfony/var-dumper": "~6.4",
"friendsofphp/php-cs-fixer": "~3.3"
},
"autoload": {
"psr-4": {
"LLegaz\\Redis\\Tools\\": "src/"
}
},
"scripts": {
"cs":"@phpcsfixer",
"phpcsfixer": "./vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.php --diff -vvv"
},
"scripts-descriptions": {
"cs": "Clean the sources"
}
}