morbicer/converter-bundle

Currency converting bundle for Symfony2. Supports multiple exchange rate providers.

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 1

Open Issues: 0

Type:symfony-bundle

0.0.1 2015-09-09 10:08 UTC

This package is not auto-updated.

Last update: 2024-05-01 08:52:43 UTC


README

Currency converting bundle for Symfony2. Supports multiple exchange rate providers:

  • Yahoo (free)
  • Google (free)
  • Currency API (free)
  • chain (tries multiple if some is unavailable)

proper money handling using Martin Fowler's Money pattern implemented by mathiasverraes/money

1 Installation

1.1 Composer

"require": {
  ....
  "morbicer/converter-bundle": "dev"
},

or

php composer.phar require morbicer/converter-bundle

1.2 Enable the bundle

// app/AppKernel.php
public function registerBundles()
{
      $bundles = array(
        // ...
        new Morbicer\ConverterBundle\MorbicerConverterBundle(),
    );
}

1.3 Add config

# app/config.yml
morbicer_converter:
  default_provider: chain
  providers:
      yahoo: []
      google: []
      currency_api: []
      chain: [yahoo, currency_api, google]

Usage

//in controller, get service
$converter = $this->get('morbicer_converter.convert');
// $100 USD to EUR
$converted = $converter->convert(100, 'USD', 'EUR');
$result = array(
    'amount' => $converted->getAmount()/100,
    'currency' => (string)$converted->getCurrency(),
);