forked from schmittjoh/JMSJobQueueBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.49 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
{
"name": "effiana/job-queue-bundle",
"description": "Allows to run and schedule Symfony console commands as background jobs.",
"keywords": ["job","queue", "background", "cron", "scheduled"],
"type": "symfony-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Dominik Labudzinski",
"email": "[email protected]"
},
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 | ^7.4 | ^8.0",
"symfony/framework-bundle": "^4.2 | ^5",
"doctrine/common": "^2.3 | ^3",
"symfony/process": "^4.2 | ^5",
"effiana/migration-bundle": "dev-master",
"twig/twig": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"doctrine/doctrine-fixtures-bundle": "*",
"sensio/framework-extra-bundle": "*",
"symfony/class-loader": "*",
"symfony/yaml": "*",
"symfony/browser-kit": "*",
"symfony/finder": "*",
"symfony/css-selector": "*",
"doctrine/doctrine-bundle": "*",
"doctrine/orm": "*",
"symfony/twig-bundle": "*",
"symfony/form": "*",
"symfony/validator": "*",
"symfony/intl": "*"
},
"autoload": {
"psr-4": { "Effiana\\JobQueueBundle\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}