-
-
Notifications
You must be signed in to change notification settings - Fork 155
/
composer.json
49 lines (49 loc) · 1.13 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
{
"name": "gordalina/cachetool",
"description": "Manage your OPcache & APCu cache through the CLI",
"keywords": [
"cache",
"opcache",
"apcu",
"fastcgi",
"opcode",
"fpm"
],
"require": {
"hollodotme/fast-cgi-client": "^3.0",
"monolog/monolog": "^3.0",
"php": ">=8.1.0",
"psr/log": "^2.0 || ^3.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"symfony/yaml": "^6.0",
"symfony/http-client": "^6.0",
"symfony/http-foundation": "^6.0",
"consolidation/self-update": "~2.1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"license": "MIT",
"authors": [
{
"name": "gordalina",
"email": "samuel.gordalina@gmail.com"
}
],
"autoload": {
"psr-4": {
"CacheTool\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CacheTool\\": "tests/"
}
},
"bin": [
"bin/cachetool"
]
}