-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.68 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
{
"name": "vivait/delayed-event-bundle",
"description": "A bundle that delays events for a configurable time period (i.e. 24 hours)",
"license": "MIT",
"authors": [
{
"name": "Lewis Wright",
"email": "lewis@vivait.co.uk"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"symfony/framework-bundle": "^4.4|^5.4",
"symfony/dependency-injection": "^4.4|^5.4",
"symfony/config": "^4.4|^5.4",
"symfony/console": "^4.4|^5.4",
"symfony/process": "^4.4|^5.4",
"symfony/event-dispatcher": "^4.4|^5.4",
"wrep/daemonizable-command": "~3.1",
"symfony/monolog-bundle": "~3.0",
"leezy/pheanstalk-bundle": "4.x-dev@dev",
"symfony/uid": "^5.2|^6.0",
"vivait/backoff": "^1.1"
},
"require-dev": {
"symfony/symfony": "^4.4|^5.4",
"videlalvaro/php-amqplib": "~2.2",
"phpunit/phpunit": "^9.0",
"behat/behat": "^3.0",
"matthiasnoback/symfony-config-test": "^4.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "~2.2",
"yogarine/doctrine-annotation-autoload": "^0",
"symfony/phpunit-bridge": "^6.0",
"vimeo/psalm": "^4.23",
"symfony/polyfill-php74": "^1.26",
"symfony/polyfill-php80": "^1.26",
"symfony/polyfill-php81": "^1.26",
"psalm/plugin-symfony": "^3.1"
},
"config": {
"bin-dir": "vendor/bin",
"allow-plugins": {
"yogarine/doctrine-annotation-autoload": true
}
},
"autoload": {
"psr-4": {
"Vivait\\DelayedEventBundle\\": "src/Vivait/DelayedEventBundle"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Vivait\\DelayedEventBundle\\": "Tests/Vivait/DelayedEventBundle"
}
}
}