-
Notifications
You must be signed in to change notification settings - Fork 254
/
composer.json
50 lines (50 loc) · 1.58 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
{
"name": "jms/job-queue-bundle",
"description": "Allows to run and schedule Symfony console commands as background jobs.",
"keywords": ["job","queue", "background", "cron", "scheduled"],
"homepage": "http://jmsyst.com/bundles/JMSJobQueueBundle",
"type": "symfony-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/debug": "^3.4 || ^4.0",
"doctrine/common": "^2.3",
"symfony/process": "^3.4 || ^4.0"
},
"require-dev": {
"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": "*",
"phpunit/phpunit": "^6.0",
"symfony/intl": "*"
},
"suggest": {
"sensio/framework-extra-bundle": "Required when using the webinterface.",
"symfony/twig-bundle": "Required when using the webinterface."
},
"autoload": {
"psr-0": { "JMS\\JobQueueBundle": "" }
},
"target-dir": "JMS/JobQueueBundle",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}