forked from ezsystems/JMSJobQueueBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.77 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.77 KB
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
54
55
56
57
58
{
"name": "wirelane/job-queue-bundle",
"description": "Support for PHP 8, Symfony 6 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.2",
"symfony/framework-bundle": "^6.0",
"symfony/error-handler": "^6.0",
"symfony/process": "^6.0",
"doctrine/common": "^3.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.5 || ^4.0",
"sensio/framework-extra-bundle": "^6.0",
"symfony/yaml": "^6.0",
"symfony/browser-kit": "^6.0",
"symfony/finder": "^6.0",
"symfony/css-selector": "^6.0",
"doctrine/orm": "^2.16 || ^3.0",
"doctrine/collections": "^2.0",
"symfony/twig-bundle": "^6.0",
"symfony/form": "^6.0",
"symfony/validator": "^6.0",
"symfony/intl": "^6.0",
"phpunit/phpunit": "^10.5 || ^11.0",
"rector/rector": "^2.2",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"suggest": {
"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": "4.0.x-dev"
}
}
}