File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ DynamoDB operations.
1313## Features
1414
1515- Auto-wiring of DynamoPHP services
16- - Configurable AWS SDK DynamoDB client and Marshaler
17- - Symfony Flex recipe support for automatic configuration
16+ - Configurable AWS SDK DynamoDB client, Marshaler and Serializer
1817- Sandbox application for testing and development
1918
2019## Installation
@@ -25,8 +24,16 @@ Install via Composer:
2524composer require edumarques/dynamophp-symfony
2625```
2726
28- Ensure that your Symfony application is configured to use Symfony Flex for automatic bundle registration and
29- configuration.
27+ If your Symfony application is not configured to use Symfony Flex for automatic bundle registration, you need to
28+ register it manually in ` config/bundles.php ` :
29+
30+ ``` php
31+ # config/bundles.php
32+ return [
33+ // ... other bundles
34+ EduardoMarques\DynamoPHPBundle\DynamoPHPBundle::class => ['all' => true],
35+ ];
36+ ```
3037
3138## Configuration
3239
You can’t perform that action at this time.
0 commit comments