Skip to content

Commit 8127a7d

Browse files
committed
docs: improve doc on features, installation and configuration
1 parent aff66e6 commit 8127a7d

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff 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:
2524
composer 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

0 commit comments

Comments
 (0)