https://github.com/b2pweb/bdf-serializer-bundle
https://github.com/b2pweb/bdf-serializer-bundle
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/b2pweb/bdf-serializer-bundle
- Owner: b2pweb
- License: mit
- Created: 2020-06-02T13:07:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-07-08T09:29:31.000Z (12 months ago)
- Last Synced: 2025-09-30T16:38:53.768Z (9 months ago)
- Language: PHP
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/b2pweb/bdf-serializer-bundle/actions/workflows/php.yml)
[](https://scrutinizer-ci.com/g/b2pweb/bdf-serializer-bundle/?branch=master)
[](https://packagist.org/packages/b2pweb/bdf-serializer-bundle)
[](https://packagist.org/packages/b2pweb/bdf-serializer-bundle)
Installation
============
1 Download the Bundle
---------------------
Download the latest stable version of this bundle with composer:
```bash
$ composer require b2pweb/bdf-serializer-bundle
```
2 Enable the Bundle
-------------------
Adding the following line in the ``config/bundles.php`` file of your project::
```php
['all' => true],
// ...
];
```
3 Add configuration
-------------------
Add a default config file to `./config/packages/bdf_serializer.yaml`.
Enable caching for production
```yaml
bdf_serializer:
cache:
pool: 'cache.app'
```
Add a test file to `./config/packages/test/bdf_serializer.yaml`
```yaml
bdf_serializer:
cache:
pool: null
```