hiwelo / address-formatter-bundle
International postal address formatting bundle for Symfony
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
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: 2025-01-05 05:53:47 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(), ); }