Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 486 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 486 Bytes

AddressFormatterBundle

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(),
    );
}