forked from gordalina/cachetool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 993 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
{
"name": "gordalina/cachetool",
"description": "Manage your opcode & apc through the cli",
"keywords": ["cache", "opcache", "apc", "fastcgi", "opcode", "fpm"],
"require": {
"php": ">=7.1.0",
"symfony/console": "~4.0",
"symfony/dependency-injection": "~4.0",
"symfony/finder": "~4.0",
"symfony/process": "~4.0",
"symfony/yaml": "~4.0",
"psr/log": "~1.0",
"monolog/monolog": "~1.1",
"adoy/fastcgi-client": "~1.0"
},
"require-dev": {
"herrera-io/phar-update": "~2.0",
"phpunit/phpunit": "~7.0"
},
"license": "MIT",
"authors": [
{
"name": "gordalina",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "CacheTool": "src/" }
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gordalina/cachetool"
}
],
"bin": ["bin/cachetool"]
}