forked from andrewmy/crunz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.43 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
50
51
52
53
54
55
56
57
{
"name": "lavary/crunz",
"description": "Schedule your tasks right from the code.",
"type": "library",
"keywords": [
"scheduler",
"cron jobs",
"cron",
"Task Scheduler",
"PHP Task Scheduler",
"Job Scheduler",
"Job Manager",
"Event Runner"
],
"homepage": "https://github.com/lavary/crunz",
"license": "MIT",
"authors": [
{
"name": "Reza M. Lavaryan",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "http://github.com/lavary/crunz/issues"
},
"require": {
"php": ">=5.5",
"mtdowling/cron-expression": "^1.1",
"nesbot/carbon": "^1.21",
"symfony/yaml": "^3.0 || ^4.0",
"symfony/finder": "^3.0 || ^4.0",
"symfony/process": "^3.0 || ^4.0",
"guzzlehttp/guzzle": "^6.1",
"symfony/console": "^3.0 || ^4.0",
"symfony/config": "^3.0 || ^4.0",
"jeremeamia/superclosure": "^2.2",
"monolog/monolog": "^1.19",
"swiftmailer/swiftmailer": "^5.4 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0"
},
"autoload": {
"psr-4": {
"Crunz\\": "src/"
},
"files": [
"src/Helpers.php"
]
},
"bin": [
"crunz"
],
"minimum-stability": "dev",
"prefer-stable": true
}