2017 © Pedro Peláez
 

symfony-bundle currency-bundle

This bundle provides a complete handler for currency exchange rates to Symfony2 applications.

image

kdrmklabs/currency-bundle

This bundle provides a complete handler for currency exchange rates to Symfony2 applications.

  • Sunday, December 11, 2016
  • by ingedgarmorales
  • Repository
  • 1 Watchers
  • 0 Stars
  • 15 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Getting started with KdrmklabsCurrencyBundle in Symfony2.

Instalation

I. Installing the bundle in two different ways.

Install this bundle by adding next code line to your project in the composer.json file and after update it with the command composer update, (*1)

file: /composer.json

{
    "require": {
        "kdrmklabs/currency-bundle": "dev-master",
    }
}

Now, update the bundle with composer:, (*2)

$ composer update kdrmklabs/currency-bundle

II. Enable and register the Bundle in the AppKernel

// file: app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Kdrmklabs\Bundle\CurrencyBundle\KdrmklabsCurrencyBundle(),
        // ...
        // Your application bundles
    );
}

Configure the bundle.

Add kdrmklabs_ticket configuration to you config.yml, (*3)

# file: app/config/config.yml

kdrmklabs_currency:
    default_currency: "USD"

Finally, create database tables, update the schems and populate tables

Update your database schema with the command:, (*4)

$ php app/console doctrine:schema:update --force

Populate database:, (*5)

image, (*6)

The Versions

11/12 2016

dev-master

9999999-dev https://github.com/KdrMkLabs/CurrencyBundle

This bundle provides a complete handler for currency exchange rates to Symfony2 applications.

  Sources   Download

MIT

The Requires

 

currency currency exchange rates

01/08 2016

v0.1

0.1.0.0 https://github.com/KdrMkLabs/CurrencyBundle

This bundle provides a complete handler for currency exchange rates to Symfony2 applications.

  Sources   Download

MIT

The Requires

 

currency currency exchange rates