-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.76 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": "msales/job-queue-bundle",
"description": "Allows to schedule Symfony2 console commands as jobs.",
"keywords": ["job","queue"],
"homepage": "https://github.com/mkocztorz/JMSJobQueueBundle",
"type": "symfony-bundle",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"require": {
"symfony/framework-bundle": "~3.0|~4.0",
"doctrine/common": ">=2.3,<3.0",
"symfony/debug": "~3.0|~4.0",
"symfony/dependency-injection": "~3.0|^4.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "3.0.*",
"sensio/framework-extra-bundle": "5.1.*",
"symfony/class-loader": "3.4.*",
"symfony/yaml": "~3.0|4.0.*",
"symfony/browser-kit": "~3.0|4.0.*",
"symfony/finder": "~3.0|4.0.*",
"symfony/css-selector": "~3.0|4.0.*",
"symfony/process": "~3.0|4.0.*",
"doctrine/doctrine-bundle": "1.8.*",
"symfony/twig-bundle": "~3.0|4.0.*",
"doctrine/orm": "2.6.*",
"symfony/form": "~3.0|4.0.*",
"symfony/validator": "~3.0|4.0.*",
"pagerfanta/pagerfanta": "dev-master",
"phpunit/phpunit": "^7.0",
"symfony/security-csrf": "~3.0|4.0.*",
"symfony/templating": "~3.0|4.0.*",
"symfony/phpunit-bridge": "^4.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-0": { "JMS\\JobQueueBundle": "" }
},
"target-dir": "JMS/JobQueueBundle"
}