-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 925 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": "chebur/daemon-command",
"type": "library",
"description": "Daemon (endless) symfony command which supports scheduled (cron like) code execution",
"keywords": [
"symfony",
"command",
"daemon",
"loop",
"endless",
"cron",
"schedule"
],
"homepage": "https://github.com/vchebotarev",
"license": "MIT",
"authors": [
{
"name": "Vladimir Chebotarev",
"homepage": "http://github.com/vchebotarev",
"email": "v.yu.chebotarev@mail.ru"
}
],
"autoload": {
"psr-4": {
"Chebur\\DaemonCommand\\": "src"
}
},
"require": {
"php": "^7.4 || ^8.0",
"chebur/memory-limit-bytes": "^0.1.0",
"dragonmantank/cron-expression": "^3.0",
"symfony/console": "^4.4 || ^5.4"
},
"suggest": {
"ext-pcntl": "*"
}
}