-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
42 lines (42 loc) · 943 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
38
39
40
41
42
{
"name": "yunwuxin/think-cron",
"description": "计划任务",
"license": "Apache-2.0",
"authors": [
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
],
"require": {
"topthink/framework": "^6.0 || ^8.0",
"symfony/process": ">=4.2",
"nesbot/carbon": "^2.28",
"dragonmantank/cron-expression": "^3.0"
},
"autoload": {
"psr-4": {
"yunwuxin\\cron\\": "src/cron"
}
},
"extra": {
"think": {
"config": {
"cron": "src/config.php"
},
"services": [
"yunwuxin\\cron\\Service"
]
}
},
"require-dev": {
"topthink/think-swoole": "^4.0"
},
"config": {
"preferred-install": "dist",
"platform-check": false,
"platform": {
"ext-swoole": "4.6.0"
}
}
}