-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
29 lines (29 loc) · 947 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
{
"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": "^7.0|^8.0",
"doctrine/common": "^3.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/persistence": "^2.0|^3.0",
"myclabs/php-enum": "^1.3",
"symfony/form": "^3.0|^4.0|^5.0",
"symfony/framework-bundle": "^3.0|^4.0|^5.0",
"symfony/translation": "^3.0|^4.0|^5.0"
},
"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": "3.0.x-dev"
}
}
}