-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
36 lines (36 loc) · 999 Bytes
/
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
{
"name": "egeloen/serializer-bundle",
"type": "symfony-bundle",
"description": "Serializer for PHP 5.6+ supporting JSON, XML, YAML & CSV",
"keywords": [ "serializer" ],
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6|^7.0",
"egeloen/serializer": "^1.0",
"symfony/framework-bundle": "^2.7|^3.0",
"symfony/cache": "^3.1"
},
"require-dev": {
"doctrine/annotations": "^1.0",
"friendsofphp/php-cs-fixer": "^2.0",
"friendsofsymfony/rest-bundle": "^2.0",
"phpunit/phpunit": "^5.4",
"symfony/form": "^2.7|^3.0",
"symfony/phpunit-bridge": "^2.7|^3.0",
"symfony/translation": "^2.7|^3.0"
},
"autoload": {
"psr-4": { "Ivory\\SerializerBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}