-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 804 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 804 Bytes
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
{
"name": "jurjean/spray-serializer-bundle",
"require": {
"jurjean/spray-serializer": "dev-master",
"symfony/http-foundation": ">=3.0.0",
"php": ">=7.1"
},
"require-dev": {
"broadway/broadway": ">=1.0",
"jurjean/spray-bundle-integration": "1.0.*@dev",
"phpunit/phpunit": ">=4.0.0"
},
"suggest": {
"broadway/broadway": "Integrates with broadway",
"zendframework/zend-crypt": "For using encrypted payloads"
},
"autoload": {
"psr-4": {
"Spray\\SerializerBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spray\\SerializerBundle\\": "test"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}