This repository has been archived by the owner on Jul 28, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
composer.json
99 lines (99 loc) · 3.67 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "sonata-project/notification-bundle",
"description": "Symfony SonataNotificationBundle",
"license": "MIT",
"type": "symfony-bundle",
"abandoned": true,
"keywords": [
"page",
"sonata",
"cms"
],
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataNotificationBundle/contributors"
}
],
"homepage": "https://docs.sonata-project.org/projects/SonataNotificationBundle",
"require": {
"php": "^7.3 || ^8.0",
"doctrine/doctrine-bundle": "^1.12 || ^2.0",
"doctrine/persistence": "^1.3 || ^2.0",
"laminas/laminas-diagnostics": "^1.6",
"sonata-project/datagrid-bundle": "^3.0",
"sonata-project/doctrine-extensions": "^1.10.1",
"sonata-project/form-extensions": "^0.1 || ^1.4",
"symfony/config": "^4.4 || ^5.2",
"symfony/console": "^4.4",
"symfony/dependency-injection": "^4.4 || ^5.2",
"symfony/doctrine-bridge": "^4.4",
"symfony/event-dispatcher": "^4.4",
"symfony/event-dispatcher-contracts": "^1.1",
"symfony/form": "^4.4",
"symfony/http-foundation": "^4.4 || ^5.2",
"symfony/http-kernel": "^4.4",
"symfony/security-core": "^4.4"
},
"require-dev": {
"enqueue/amqp-lib": "^0.8",
"friendsofsymfony/rest-bundle": "^2.3 || ^3.0",
"guzzlehttp/guzzle": "^3.8",
"jms/serializer-bundle": "^2.0 || ^3.0",
"liip/monitor-bundle": "^2.6",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"nelmio/api-doc-bundle": "^2.13.5 || ^3.6",
"phpstan/phpstan": "^0.12.83",
"phpunit/phpunit": "^9.5",
"sonata-project/doctrine-orm-admin-bundle": "^3.19",
"swiftmailer/swiftmailer": "^5.0 || ^6.0",
"symfony/browser-kit": "^4.4 || ^5.2",
"symfony/phpunit-bridge": "^5.2",
"symfony/swiftmailer-bundle": "^3.4",
"symfony/templating": "^4.4 || ^5.2",
"symfony/yaml": "^4.4 || ^5.2",
"vimeo/psalm": "^4.7"
},
"conflict": {
"friendsofsymfony/rest-bundle": "<2.3",
"jms/serializer": "<0.13",
"liip/monitor-bundle": "<1.0",
"nelmio/api-doc-bundle": "<2.13.5 || >=4.0",
"sonata-project/admin-bundle": "<3.1",
"sonata-project/core-bundle": "<3.20",
"sonata-project/doctrine-orm-admin-bundle": "<3.0"
},
"suggest": {
"friendsofsymfony/rest-bundle": "If you want to expose a ReST API.",
"guzzlehttp/guzzle": "If you want to get a status report when using the rabbitMQ backend.",
"liip/monitor-bundle": "Integrates the LiipMonitor library into Symfony",
"nelmio/api-doc-bundle": "If you want to provide OAS documentation for the ReST API.",
"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": "If you want to persist entities"
},
"autoload": {
"psr-4": {
"Sonata\\NotificationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\NotificationBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}