This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
forked from sasanrose/phpredmin
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
60 lines (59 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "faktiva/php-redis-admin",
"description": "PHP Redis Admin is a simple web interface to manage and monitor your Redis server(s).",
"homepage": "https://github.com/faktiva/php-redis-admin",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Emiliano 'AlberT' Gabrielli",
"email": "albert@faktiva.com",
"homepage": "http://faktiva.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/faktiva/php-redis-admin/issues",
"source": "https://github.com/faktiva/php-redis-admin/releases/latest",
"email": "support@faktiva.com"
},
"replace": {
"sasanrose/phpredmin": "*"
},
"minimum-stability": "stable",
"config": {
"bin-dir": "bin",
"github-protocols": ["https"],
"archive-format": "zip",
"preferred-install": "dist",
"optimize-autoloader": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.12",
"sensiolabs/security-checker": "^4.0",
"symfony/var-dumper": "^2.0 || ^3.0",
"symfony/debug": "^2.8 || ^3.0"
},
"require": {
"php": ">=5.4.0",
"ext-redis": "*"
},
"scripts": {
"chk-cs": [
"php bin/php-cs-fixer -vvv fix --dry-run"
],
"chk-sec": [
"php bin/security-checker -vv security:check"
],
"check": [
"@chk-cs",
"@chk-sec"
],
"fix-cs": [
"php bin/php-cs-fixer -vvv fix"
]
},
"autoload": {
"classmap": ["src/"]
}
}