-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 973 Bytes
/
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
{
"name": "tomatom/jobqueuebundle",
"description": "JMSJobQueueBundle alternative for Symfony 6+",
"type": "symfony-bundle",
"minimum-stability": "stable",
"keywords": [
"symfony job queue bundle alternative messenger"
],
"license": "MIT",
"authors": [
{
"name": "Matěj Votruba",
"email": "fsfmatej@gmail.com"
}
],
"require": {
"php": ">=8.1",
"doctrine/doctrine-bundle": "^2",
"doctrine/orm": "^2|^3",
"symfony/framework-bundle": "^6.4",
"symfony/security-bundle": "^6.4",
"symfony/messenger": "^6.4",
"symfony/process": "^6.4",
"symfony/translation": "^6.4",
"twig/twig": "^2|^3"
},
"autoload": {
"psr-4": {
"TomAtom\\JobQueueBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TomAtom\\JobQueueBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "6.4.*"
},
"public-dir": "public"
}
}