-
Notifications
You must be signed in to change notification settings - Fork 97
/
composer.json
42 lines (42 loc) · 1007 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": "jenner/crontab",
"description": "php crontab base on pcntl and libev",
"license": "MIT",
"keywords": [
"crontab",
"php crontab",
"crontab manager"
],
"version": "v1.5.1",
"authors": [
{
"name": "Jenner",
"email": "[email protected]",
"homepage" : "http://www.huyanping.cn"
}
],
"require": {
"php": ">=5.4.0",
"ext-posix": "*",
"jenner/simple_fork": "1.1.*",
"monolog/monolog": "1.17.*",
"react/http": "v0.4.*",
"symfony/process": "v2.7.*"
},
"require-dev": {
"guzzle/guzzle": "v3.9.*",
"ext-redis": "*"
},
"suggest": {
"ext-libevent": "0.1.*",
"ext-event": "~1.0",
"ext-libev": "*",
"guzzle/guzzle": "v3.9.*",
"ext-redis": "*"
},
"autoload": {
"psr-0": {
"Jenner\\Crontab": "src/"
}
}
}