forked from j-guyon/CommandSchedulerBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.66 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
{
"name": "jmose/command-scheduler-bundle",
"description": "This Symfony bundle will allow you to schedule all your commands just like UNIX crontab",
"keywords": ["Symfony", "scheduler", "cron", "command", "task"],
"homepage": "https://github.com/J-Mose/CommandSchedulerBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Julien Guyon",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"symfony/console": "^4.3|^5.0|^6.0",
"doctrine/orm": "^2.5.11",
"doctrine/doctrine-bundle": "^1.6.10|^2.0",
"dragonmantank/cron-expression": "^3.0",
"symfony/framework-bundle": "^4.3|^5.0|^6.0",
"symfony/twig-bundle": "^4.3|^5.0|^6.0",
"symfony/translation": "^4.3|^5.0|^6.0",
"symfony/form": "^4.3|^5.0|^6.0",
"symfony/asset": "^4.3|^5.0|^6.0",
"symfony/templating": "^4.3|^5.0|^6.0",
"symfony/validator": "^4.3|^5.0|^6.0"
},
"require-dev": {
"ext-pcntl": "*",
"phpunit/phpunit": "^8.5",
"php-coveralls/php-coveralls": "^2.0",
"doctrine/doctrine-fixtures-bundle": "^3.0.0",
"liip/functional-test-bundle": "^4.2",
"symfony/css-selector": "^4.0|^5.0|^6.0",
"symfony/security-bundle": "^4.0|^5.0|^6.0",
"liip/test-fixtures-bundle": "^1.4.0"
},
"suggest": {
"ext-pcntl": "For using the scheduler daemon"
},
"autoload": {
"psr-4": {
"JMose\\CommandSchedulerBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "Tests/"
}
}
}