-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
78 lines (78 loc) · 2.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "serendipity_hq/bundle-commands-queues",
"description": "Manage queues of commands and processes them in your Symfony app.",
"type": "symfony-bundle",
"keywords": ["cronjob", "cronjobs", "queues", "threading"],
"homepage": "https://github.com/Aerendir/bundle-commands-queues",
"license": "MIT",
"support": {
"docs": "https://github.com/Aerendir/bundle-commands-queues/tree/dev/docs",
"issues": "https://github.com/Aerendir/bundle-commands-queues/issues"
},
"authors": [
{
"name": "Adamo Aerendir Crespi",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-pcntl": "*",
"doctrine/common": "^2.5 || ^3.0",
"doctrine/doctrine-bundle": "^1.7 || ^2.0",
"doctrine/orm": "^2.6.3",
"nesbot/carbon": "^2.0",
"pagerfanta/pagerfanta": "^2.0",
"sensio/framework-extra-bundle": "^5.1 || ^6.0",
"sensiolabs/ansi-to-html": "^1.1",
"serendipity_hq/component-console-styles": "dev-dev",
"serendipity_hq/component-then-when": "^1.1",
"symfony/console": "^4.4|^5.4",
"symfony/framework-bundle": "^4.4|^5.4",
"symfony/process": "^4.4|^5.4",
"thecodingmachine/safe": "^1.0"
},
"require-dev": {
"ext-ast": "*",
"bamarni/composer-bin-plugin": "^1.4",
"roave/security-advisories": "dev-master",
"symfony/var-dumper": "^4.4|^5.4",
"phpstan/phpstan": "1.4.3",
"phpstan/phpstan-phpunit": "1.0.0",
"phpstan/phpstan-doctrine": "1.2.8",
"phpstan/phpstan-symfony": "1.1.2",
"thecodingmachine/phpstan-safe-rule": "1.2.0",
"rector/rector": "0.12.13"
},
"suggest":{
"sonata-project/admin-bundle": "Allows to view what's going on with your queues and commands jobs using automatic integration with SonataAdminBundle."
},
"autoload": {
"psr-4": {
"SerendipityHQ\\Bundle\\CommandsQueuesBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SerendipityHQ\\Bundle\\CommandsQueuesBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-install-cmd": ["@composer bin all install --ansi"],
"post-update-cmd": ["@composer bin all update --ansi"]
},
"extra": {
"bamarni-bin": {
"bin-links": false
}
}
}