-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 928 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
{
"name": "jellyfish/scheduler",
"description": "Jellyfish scheduler bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Rose",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"dragonmantank/cron-expression": "^v2.0.0 || ^3.0.0",
"jellyfish/console": "^1.0.0",
"jellyfish/lock": "^1.0.0",
"jellyfish/log": "^1.0.0",
"jellyfish/pimple": "^1.0.0",
"jellyfish/process": "^1.0.0"
},
"require-dev": {
"codeception/codeception": "^4.0",
"mikey179/vfsstream": "^v1.6",
"phpstan/phpstan": "^0.12",
"roave/security-advisories": "dev-master as 1.0.0",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Jellyfish\\Scheduler\\": "src/Jellyfish/Scheduler"
}
},
"autoload-dev": {
"psr-4": {
"Jellyfish\\Scheduler\\": "tests/Jellyfish/Scheduler"
}
}
}