Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 1.18 KB

README.md

File metadata and controls

52 lines (42 loc) · 1.18 KB

financial-twig-extension-bundle

A simple Symfony Bundle that contains twig extensions for displaying financial information

Installation

Install the latest version via composer:

php composer.phar require hostnet/financial-twig-extension-bundle

Then add the bundle to your AppKernel bundles:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new \Hostnet\Bundle\FinancialTwigExtensionBundle\Bundle\HostnetFinancialTwigExtensionBundle(),
        // ...
    );
}

Usage

Currently, we support formatting International Bank Account Numbers (IBAN) for displaying on a page (a space for every four characters):

{{ "NL85INGB0008523141"|formatIban }}

This will result in the following output:

NL85 INGB 0008 5231 41

Requirements

PHP 7.3.x or above.

License

This library is licensed under the MIT License, meaning you can reuse the code within proprietary software provided that all copies of the licensed software include a copy of the MIT License terms and the copyright notice.

For more information, see the LICENSE file.