-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.28 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
{
"name": "frzb/transactional-messenger",
"type": "library",
"description": "The TransactionalMessenger component allows make messenger transactional",
"keywords": [
"library",
"symfony",
"component",
"messenger",
"transactional",
"transaction",
"serialize",
"serializer",
"frzb"
],
"homepage": "https://github.com/fractalzombie/frzb-transactional-messenger",
"license": "MIT",
"authors": [
{
"name": "Mykhailo Shtanko",
"email": "fractalzombie@gmail.com"
}
],
"require": {
"php": ">=8.2",
"fp4php/functional": "^6.0",
"symfony/http-kernel": "^6|^7",
"symfony/framework-bundle": "^6|^7",
"symfony/event-dispatcher": "^6|^7",
"symfony/yaml": "^6|^7",
"symfony/messenger": "^6|^7"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"phpunit/php-code-coverage": "^11.0",
"symfony/phpunit-bridge": "^6|^7",
"friendsofphp/php-cs-fixer": "^3.61",
"symfony/test-pack": "^1.0.10"
},
"autoload": {
"psr-4": {
"FRZB\\Component\\TransactionalMessenger\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}