forked from schmittjoh/JMSJobQueueBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.62 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": "[email protected]"
}
],
"require": {
"symfony/framework-bundle": ">=2.1,<3.0-dev",
"doctrine/common": ">=2.3,<3.0",
"jms/di-extra-bundle": ">=1.1,<2.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "*",
"sensio/framework-extra-bundle": "*",
"symfony/class-loader": "*",
"symfony/yaml": "*",
"symfony/browser-kit": "*",
"symfony/class-loader": "*",
"symfony/finder": "*",
"symfony/css-selector": "*",
"symfony/process": "*",
"doctrine/doctrine-bundle": "*",
"symfony/twig-bundle": "*",
"doctrine/orm": "*",
"symfony/form": "*",
"symfony/validator": "*",
"pagerfanta/pagerfanta": "dev-master"
},
"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."
},
"minimum-stability": "dev",
"autoload": {
"psr-0": { "JMS\\JobQueueBundle": "" }
},
"target-dir": "JMS/JobQueueBundle",
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}