forked from sonata-project/SonataNotificationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.73 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
79
80
{
"name": "sonata-project/notification-bundle",
"type": "symfony-bundle",
"description": "Symfony SonataNotificationBundle",
"keywords": [
"page",
"sonata",
"cms"
],
"homepage": "https://sonata-project.org/bundles/page",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataNotificationBundle/contributors"
}
],
"require": {
"php": "^5.6 || ^7.0",
"sonata-project/core-bundle": "^3.9",
"sonata-project/datagrid-bundle": "^2.3",
"sonata-project/doctrine-extensions": "^1.0",
"sonata-project/easy-extends-bundle": "^2.5",
"symfony/config": "^2.8 || ^3.2 || ^4.0",
"symfony/console": "^2.8 || ^3.2 || ^4.0",
"symfony/dependency-injection": "^2.8 || ^3.2 || ^4.0",
"symfony/event-dispatcher": "^2.8 || ^3.2 || ^4.0",
"symfony/form": "^2.8 || ^3.2 || ^4.0",
"symfony/http-foundation": "^2.8 || ^3.2 || ^4.0",
"symfony/http-kernel": "^2.8 || ^3.2 || ^4.0",
"symfony/security-core": "^2.8 || ^3.2 || ^4.0",
"zendframework/zenddiagnostics": "^1.0"
},
"conflict": {
"friendsofsymfony/rest-bundle": "<2.1 || >=3.0",
"jms/serializer": "<0.13",
"sonata-project/admin-bundle": "<3.1"
},
"require-dev": {
"enqueue/amqp-lib": "^0.8",
"friendsofsymfony/rest-bundle": "^2.1",
"guzzlehttp/guzzle": "^3.8",
"jms/serializer-bundle": "^1.0 || ^2.0",
"liip/monitor-bundle": "^2.0",
"nelmio/api-doc-bundle": "^2.4",
"sonata-project/doctrine-orm-admin-bundle": "^3.4",
"swiftmailer/swiftmailer": "^5.0 || ^6.0",
"symfony/phpunit-bridge": "^4.0"
},
"suggest": {
"guzzlehttp/guzzle": "If you want to get a status report when using the rabbitMQ backend.",
"liip/monitor-bundle": "^1.0",
"queue-interop/amqp-interop": "Install any amqp-interop compatible transport if you want use RabbitMQ. For example enqueue/amqp-lib:^0.8",
"sonata-project/admin-bundle": "To be able to use MessageAdmin.",
"sonata-project/doctrine-orm-admin-bundle": "^3.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Sonata\\NotificationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\NotificationBundle\\Tests\\": "tests/"
}
}
}