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.
13
13
## Features
14
14
15
15
- 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
18
17
- Sandbox application for testing and development
19
18
20
19
## Installation
@@ -25,8 +24,16 @@ Install via Composer:
25
24
composer require edumarques/dynamophp-symfony
26
25
```
27
26
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
+ ```
30
37
31
38
## Configuration
32
39
You can’t perform that action at this time.
0 commit comments