forked from schmittjoh/JMSJobQueueBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.71 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": "jms/job-queue-bundle",
"description": "Allows to schedule Symfony2 console commands as jobs.",
"keywords": ["job","queue"],
"homepage": "http://jmsyst.com/bundles/JMSJobQueueBundle",
"type": "symfony-bundle",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "schmittjoh@gmail.com"
}
],
"require": {
"php": "^5.5|^7.0",
"symfony/framework-bundle": "^2.1|^3.0",
"symfony/dependency-injection": "^2.3|^3.0",
"symfony/process": "^2.3|^3.0",
"symfony/finder": "^2.1|^3.0",
"doctrine/common": "^2.3",
"jms/di-extra-bundle": "^1.1"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "*",
"sensio/framework-extra-bundle": "^2.0|^3.0",
"symfony/class-loader": "^2.1|^3.0",
"symfony/yaml": "^2.1|^3.0",
"symfony/browser-kit": "^2.1|^3.0",
"symfony/css-selector": "^2.1|^3.0",
"symfony/twig-bundle": "^2.1|^3.0",
"symfony/form": "^2.1|^3.0",
"symfony/validator": "^2.1|^3.0",
"doctrine/doctrine-bundle": "^1.5@dev",
"doctrine/orm": "^2.3",
"pagerfanta/pagerfanta": "^1.0@dev",
"symfony/phpunit-bridge": "^3.0"
},
"suggest": {
"pagerfanta/pagerfanta": "Required when using the webinterface.",
"sensio/framework-extra-bundle": "Required when using the webinterface.",
"symfony/twig-bundle": "Required when using the webinterface."
},
"autoload": {
"psr-4": { "JMS\\JobQueueBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}