fdevs / serializer-bridge
This package is abandoned and no longer maintained.
No replacement package was suggested.
FDevs Serializer Bridge
Package info
github.com/4devs/serializer-bridge
Type:symfony-bridge
pkg:composer/fdevs/serializer-bridge
0.1.1
2016-06-21 11:30 UTC
Requires
- php: >=5.5.9
- fdevs/serializer: ~0.1
Requires (Dev)
- symfony/dependency-injection: ~2.8|~3.0
- symfony/http-kernel: ~2.8|~3.0
Suggests
- symfony/dependency-injection: use with dependency injection
- symfony/http-kernel: use with symfony bundle
This package is auto-updated.
Last update: 2023-07-04 15:45:30 UTC
README
Installation
Serializer uses Composer, please checkout the composer website for more information.
The simple following command will install serializer-bridge into your project. It also add a new
entry in your composer.json and update the composer.lock as well.
composer require fdevs/serializer-bridge
Use with symfony framework
add bundle to AppKernel
<?php //app/AppKernel.php use Symfony\Component\HttpKernel\Kernel; use Symfony\Component\Config\Loader\LoaderInterface; class AppKernel extends Kernel { /** * {@inheritdoc} */ public function registerBundles() { $bundles = [ new FDevs\Bridge\Serializer\FDevsSerializerBundle(), ]; } }
License
This bridge is under the MIT license. See the complete license in the bridge:
Resources/meta/LICENSE
Created by 4devs - Check out our blog for more insight into this and other open-source projects we release.