-
Notifications
You must be signed in to change notification settings - Fork 143
/
composer.json
41 lines (41 loc) · 1.07 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
{
"name": "peppeocchi/php-cron-scheduler",
"description": "PHP Cron Job Scheduler",
"license": "MIT",
"keywords": ["cron job", "scheduler"],
"authors": [
{
"name": "Giuseppe Occhipinti",
"email": "[email protected]"
},
{
"name": "Carsten Windler",
"email": "[email protected]",
"homepage": "http://carstenwindler.de",
"role": "Contributor"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.3 || ^8.0",
"dragonmantank/cron-expression": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"php-coveralls/php-coveralls": "^2.4",
"swiftmailer/swiftmailer": "~5.4 || ^6.0"
},
"suggest": {
"swiftmailer/swiftmailer": "Required to send the output of a job to email address/es (~5.4 || ^6.0)."
},
"autoload": {
"psr-4": {
"GO\\": "src/GO/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/GO/"
}
}
}