-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
56 lines (56 loc) · 1.44 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
{
"name": "simple-bus/jms-serializer-bridge",
"type": "library",
"description": "Bridge for using JMSSerializer as message serializer for SimpleBus/Asynchronous",
"keywords": [
"asynchronous",
"message",
"serialization"
],
"homepage": "http://github.com/SimpleBus/JMSSerializerBridge",
"license": "MIT",
"authors": [
{
"name": "Cliff Odijk",
"email": "[email protected]"
},
{
"name": "Ruud Kamphuis",
"homepage": "https://github.com/ruudk"
},
{
"name": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^8.0",
"jms/serializer": "^3.15",
"simple-bus/serialization": "^6.0"
},
"conflict": {
"jms/metadata": "<2.5.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"phpunit/phpunit": "^9.5.5",
"symfony/phpunit-bridge": "^6.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SimpleBus\\JMSSerializerBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleBus\\JMSSerializerBridge\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}