forked from jobbyphp/jobby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.13 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
{
"name": "hellogerard/jobby",
"homepage": "https://github.com/jobbyphp/jobby",
"license": "MIT",
"description": "Manage all your cron jobs without modifying crontab. Handles locking, logging, error emails, and more.",
"authors": [
{
"name": "Gerard Sychay",
"email": "[email protected]",
"homepage": "https://github.com/hellogerard"
},
{
"name": "Michael Contento",
"homepage": "https://github.com/michaelcontento"
}
],
"require": {
"php": "^8.0",
"dragonmantank/cron-expression": "^3.0",
"opis/closure": "^3.5",
"swiftmailer/swiftmailer": "^5.4|^6.0",
"symfony/process": "^2.7|^3.0|^4.0|^5.0|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.20",
"mp091689/dump-die": "^1.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.4",
"rector/rector": "^0.17.2",
"symfony/filesystem": "^2.7|^3.0|^4.0|^5.0|^6.0",
"vimeo/psalm": "^5.13"
},
"autoload": {
"psr-4": {
"Jobby\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jobby\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}