-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.29 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
{
"name": "zestic/communication-component",
"type": "library",
"description": "Communication component for Laminas using Symfony Messenger and Notifier",
"keywords": [],
"license": "MIT",
"config": {
"sort-packages": true
},
"require": {
"php": "^8.0",
"iampersistent/config-value-component": "^1.2",
"laminas/laminas-servicemanager": "^4.0.0-rc1",
"mezzio/mezzio-twigrenderer": "^2.6",
"netglue/laminas-messenger": "^2.0",
"psr/container": "^1.0 || ^2.0",
"symfony/dependency-injection": "^5.3 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.3 || ^6.0 || ^7.0",
"symfony/messenger": "^5.3 || ^6.0 || ^7.0",
"symfony/mailer": "^5.3 || ^6.0 || ^7.0",
"symfony/notifier": "^5.3 || ^6.0 || ^7.0",
"symfony/property-access": "^5.3 || ^6.0 || ^7.0",
"symfony/serializer": "^5.3 || ^6.0 || ^7.0",
"symfony/twig-bridge": "^5.3 || ^6.0 || ^7.0",
"twig/inky-extra": "^3.1",
"twig/twig": "^3.0"
},
"require-dev": {
"symfony/amazon-mailer": "^5.3"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Communication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixture\\": "tests/_support/Fixture",
"Tests\\Functional\\": "tests/functional",
"Tests\\Unit\\": "tests/unit"
}
}
}