-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
39 lines (39 loc) · 985 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
{
"name": "ecentria/crontab-bundle",
"homepage": "https://ecentria.com",
"type": "symfony-bundle",
"description": "Provides a possibility to auto-setup crontabs required for project based on configuration file.",
"keywords": [
"crontab",
"ecentria",
"symfony",
"bundle",
"job"
],
"license": "MIT",
"authors": [
{
"name": "Roman Ruskov",
"email": "roman.ruskov@gmail.com"
},
{
"name": "Sergey Chernecov",
"email": "sergey.chernecov@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"symfony/framework-bundle": "^5.0",
"symfony/validator": "^5.0",
"symfony/console": "^5.0",
"dragonmantank/cron-expression": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"autoload": {
"psr-4": {
"Ecentria\\Bundle\\CrontabBundle\\": ""
}
}
}