hiwelo/address-formatter-bundle

International postal address formatting bundle for Symfony

v1.0-alpha 2017-04-02 22:35 UTC

This package is not auto-updated.

Last update: 2024-05-12 02:10:28 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(),
    );
}