-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
38 lines (38 loc) · 905 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
38
{
"name": "hollodotme/readis",
"description": "A web interface to read data from redis server(s)",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Holger Woltersdorf",
"email": "hw@hollo.me"
}
],
"support": {
"email": "hw@hollo.me",
"source": "https://github.com/hollodotme/readis"
},
"require": {
"php": ">=7.1",
"ext-redis": "*",
"ext-intl": "*",
"icehawk/icehawk": "~2.2.0",
"twig/twig": "~2.0"
},
"require-dev": {
"ext-xdebug": ">=2.9.0",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"hollodotme\\Readis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"hollodotme\\Readis\\Tests\\": "tests/"
}
}
}