Stars: 457
Forks: 74
Pull Requests: 131
Issues: 99
Watchers: 11
Last Updated: 2023-08-29 06:42:26
📦 Provides support of ENUM type for Doctrine in Symfony applications.
License: MIT License
Languages: PHP
📦 Provides ENUM type support for Doctrine in Symfony applications.
PostgreSQL | SQLite | MySQL | MSSQL |
---|
composer req fresh/doctrine-enum-bundle
Bundle Version (X.Y.Z) | PHP | Symfony | Doctrine Bundle | Comment |
---|---|---|---|---|
9.1.* |
>= 8.1.0 |
>= 6.1 |
>= 2.9 |
Current version |
8.1.* |
>= 8.1.0 |
5.4, 6.0 |
>= 2.5 |
Previous version |
config/bundles.php
fileBy default, Symfony Flex will add this bundle to the config/bundles.php
file.
But in case you ignored contrib-recipe
during bundle installation it would not be added. In this case add the bundle manually:
# config/bundles.php
return [
// Other bundles...
Fresh\DoctrineEnumBundle\FreshDoctrineEnumBundle::class => ['all' => true],
// Other bundles...
];
Read the CONTRIBUTING file.