-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.08 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (73 loc) · 2.08 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "robinn/phpcacheadmin",
"description": "A web dashboard for your favorite caching system.",
"license": "MIT",
"type": "project",
"keywords": [
"redis",
"memcache",
"memcached",
"opcache",
"apcu",
"realpath",
"cache",
"admin",
"dashboard",
"gui",
"phpcacheadmin"
],
"authors": [
{
"name": "Róbert Kelčák",
"email": "robo@kelcak.com",
"homepage": "https://kelcak.com"
}
],
"require": {
"php": ">=8.2",
"twig/twig": "^3.28"
},
"require-dev": {
"clue/phar-composer": "^1.4",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^11 || ^12.5 || ^13.2",
"predis/predis": "^3.5",
"vlucas/phpdotenv": "^5.6"
},
"suggest": {
"ext-apcu": "Required for the APCu dashboard.",
"ext-redis": "Required for use the Redis dashboard.",
"ext-sqlite3": "Required for metrics.",
"ext-zend-opcache": "Required for use the OPCache dashboard.",
"ext-zlib": "Required for encoding/decoding with gz* functions.",
"predis/predis": "Required for use the Redis dashboard, when Redis extension is not installed.",
"vlucas/phpdotenv": "Required to load configuration from .env files."
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"RobiNN\\Pca\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"phar:predis": "phar-composer build predis/predis",
"phar:twig": "phar-composer build twig/twig",
"phpstan": "phpstan --ansi",
"test": "phpunit --colors=always --display-skipped",
"test-cluster": "PCA_REDIS_0_NODES='[\"127.0.0.1:6380\",\"127.0.0.1:6381\",\"127.0.0.1:6382\"]' phpunit --colors=always --display-skipped tests/Dashboards/Redis",
"test-sentinel": "PCA_REDIS_0_SENTINELS='[\"127.0.0.1:26379\",\"127.0.0.1:26380\",\"127.0.0.1:26381\"]' phpunit --colors=always --display-skipped tests/Dashboards/Redis",
"redis-commands": "php bin/generate-redis-commands.php"
}
}