Skip to content

Commit 8418099

Browse files
authored
Update README.md
1 parent 1d22639 commit 8418099

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@ Provides support of **ENUM type** for Doctrine in Symfony applications.
3030
| `6.2.*` | `>= 7.1.3` | `>= 4.0` | `>= 2.6` | **Current version** |
3131
| `5.3.*` | `>= 5.6, <= 7.1` | `3.4` | `>= 2.5` | *Bug fix support* |
3232

33+
#### Check the `config/bundles.php` file
34+
35+
By default Symfony Flex will add FreshDoctrineEnumBundle to the `config/bundles.php` file. But in case when you ignored `contrib-recipe` during bundle installation it would not be added. In this case add the bundle manually.
36+
37+
```php
38+
# config/bundles.php
39+
40+
return [
41+
// other bundles
42+
Fresh\DoctrineEnumBundle\FreshDoctrineEnumBundle::class => ['all' => true],
43+
// other bundles
44+
];
45+
```
46+
3347
## Using
3448

3549
* [Example](./Resources/docs/example_of_using.md "Example")

0 commit comments

Comments
 (0)