forked from zolex/JMSJobQueueBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.61 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
52
53
{
"name": "wirelane/job-queue-bundle",
"description": "Support for PHP 8, Symfony 5 and Doctrine Common 3",
"keywords": ["job","queue", "background", "cron", "scheduled"],
"homepage": "http://jmsyst.com/bundles/JMSJobQueueBundle",
"type": "symfony-bundle",
"license": "Apache-2.0",
"replace": {
"jms/job-queue-bundle": "*"
},
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "schmittjoh@gmail.com"
}
],
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^5.0",
"symfony/error-handler": "^5.0",
"doctrine/common": "^3.0",
"symfony/process": "^5.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/orm": "*",
"doctrine/collections": "^1.8.0",
"symfony/twig-bundle": "*",
"symfony/form": "*",
"symfony/validator": "*",
"phpunit/phpunit": "^9.4",
"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": "4.0.x-dev"
}
}
}