Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mtarld/json-encoder-bundle
https://github.com/mtarld/json-encoder-bundle
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mtarld/json-encoder-bundle
- Owner: mtarld
- Created: 2024-03-08T07:49:23.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-06-17T15:21:07.000Z (6 months ago)
- Last Synced: 2024-10-05T19:08:14.233Z (3 months ago)
- Language: PHP
- Size: 67.4 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JsonEncoderBundle
A bundle that make the code of the [JsonEncoder component PR](https://github.com/symfony/symfony/pull/51718)
available.## Installation
### Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
```console
$ composer require mtarld/json-encoder-bundle
```### Applications that don't use Symfony Flex
#### Step 1: Download the Bundle
Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:```console
$ composer require mtarld/json-encoder-bundle
```#### Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the `config/bundles.php` file of your project:```php
// config/bundles.phpreturn [
// ...
Mtarld\JsonEncoderBundle\JsonEncoderBundle::class => ['all' => true],
];
```