justblackbird/jms-serializer-strict-json-bundle

Symfony integration for JMS Serializer strict JSON deserializer

0.2.0 2017-04-25 15:18 UTC

This package is not auto-updated.

Last update: 2024-04-09 05:31:25 UTC


README

Symfony integration for JustBlackBird\JmsSerializerStrictJson

Installation

Run in the command line:

composer require justblackbird/jms-serializer-strict-json-bundle

Enable the bundle

// app/AppKernel.php
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new JustBlackBird\JmsSerializerStrictJsonBundle\JustBlackBirdJmsSerializerStrictJsonBundle(),
        );

        // ...
    }
}

Make sure you enable the bundle after JmsSerializerBundle.

License

Apache 2.0 (c) Dmitriy Simushev