forked from fervo/EnumBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 903 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
{
"name": "fervo/enum-bundle",
"description": "A library to integrate enums into the Symfony framework",
"license": "MIT",
"type": "symfony-bundle",
"autoload": {
"psr-4": { "Fervo\\EnumBundle\\": ""}
},
"require": {
"php": "~5.5||~7.0",
"symfony/form": "~2.8|~3.0|~4.0",
"symfony/framework-bundle": "~2.8|~3.0|~4.0",
"symfony/translation": "~2.8|~3.0|~4.0",
"doctrine/doctrine-bundle": "~1.2",
"myclabs/php-enum": "~1.3",
"doctrine/common": "~2.4"
},
"suggest": {
"jms/serializer-bundle": "If you want to serialize data using JMS Serializer",
"sensio/framework-extra-bundle": "If you wan to use ParamConverter",
"twig/twig": "If you want to use enum in your Twig templates"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}