forked from SimpleBus/jms-serializer-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "simple-bus/jms-serializer-bridge",
"type": "bundle",
"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": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": ">=5.4",
"simple-bus/serialization": ">=1.0",
"jms/serializer": "~0.12||~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"SimpleBus\\JMSSerializerBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleBus\\JMSSerializerBridge\\Tests\\": "tests"
}
}
}