forked from bartosz-maciaszek/enum-serializer-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
27 lines (27 loc) · 859 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
{
"name": "aboutcoders/enum-serializer-bundle",
"type": "symfony-bundle",
"description": "A symfony bundle to serialize/deserialize enumerations of type myclabs/php-enum with jms/serializer",
"keywords": ["enum", "php-enum", "serialize", "deserialize", "jms", "serializer"],
"homepage": "http://aboutcoders.com",
"license": "MIT",
"authors": [
{
"name": "Hannes Schulz",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"symfony/symfony": "~2.7|~3.0|~4.0",
"myclabs/php-enum": "~1.4",
"jms/serializer-bundle": "~1.0|~2.0|~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4",
"symfony/monolog-bundle": "~2"
},
"autoload": {
"psr-4": { "Abc\\Bundle\\EnumSerializerBundle\\": "" }
}
}