hiwelo / address-formatter-bundle
International postal address formatting bundle for Symfony
Package info
github.com/hiwelo/AddressFormatterBundle
Type:symfony-bundle
pkg:composer/hiwelo/address-formatter-bundle
v1.0-alpha
2017-04-02 22:35 UTC
Requires
- php: ~5.5|~7.0
- symfony/symfony: ~2.8|~3.0
Requires (Dev)
- phpunit/phpunit: ~4.8
Suggests
- twig/twig: ~2.0
This package is not auto-updated.
Last update: 2026-03-15 11:38:16 UTC
README
International mailing address created as a bundle for Symfony 3.
Installation
Install the bundle using composer.
composer require hiwelo/AddressFormatterBundle
Enable the bundle
Enable the bundle in the Symfony 3 Kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( //... new Hiwelo\AddressFormatterBundle\AddressFormatterBundle(), ); }