-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
65 lines (65 loc) · 1.55 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
61
62
63
64
65
{
"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.14"
},
"require-dev": {
"clue/phar-composer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.4"
},
"suggest": {
"ext-apcu": "Required for the APCu dashboard.",
"ext-memcache": "Required for the Memcache dashboard.",
"ext-memcached": "Required for the Memcached dashboard.",
"ext-zend-opcache": "Required for use the OPCache dashboard.",
"ext-redis": "Required for use the Redis dashboard.",
"ext-zlib": "Required for encoding/decoding with gz* functions.",
"predis/predis": "Required for use the Redis dashboard, when Redis extension is not installed."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"RobiNN\\Pca\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"src/functions.php"
]
},
"scripts": {
"phar:twig": "phar-composer build twig/twig",
"phar:predis": "phar-composer build predis/predis",
"phpstan": "phpstan --ansi",
"test": "phpunit --colors=always"
}
}