gocanto/converter

Immutable PHP currency converter that's data-agnostic.

Installs: 519

Dependents: 0

Suggesters: 0

Security: 0

Stars: 77

Watchers: 6

Forks: 6

Open Issues: 0

Type:php-bundle

1.0.0 2019-06-11 03:26 UTC

This package is auto-updated.

Last update: 2024-04-11 17:40:11 UTC


README

Total Downloads Latest Stable Version Build status

The converter library is a immutable drop in currencies converter that's data-agnostic..

In order for it to work, you will have to pass your repository data look up to pull in a valid information to operate on. This repository has to implement the interface CurrenciesRepositoryInterface shipped with the library

Installation

This library uses Composer to manage its dependencies. So, before using it, make sure you have it installed in your machine. Once you have done this, you will be able to pull this library in by typing the following command in your terminal.

composer require gocanto/converter

Data layer implementation

First of all, you will have to create a repository to query either your database or any other data resources where you keep your application currencies information. see example

Second of all, you will have to new up the converter passing an instance of the mentioned interface repository implementation. Like so:

use Gocanto\Converter\Examples\CurrenciesRepositoryExample;
use Gocanto\Converter\Converter;

$repository = new CurrenciesRepositoryExample;
$converter = new Converter($repository);

Note: You can bind this interface within your app service container to have automatic dependencies injection resolution.

Lastly, you just need to invoke the required methods within the converter object to set the proper values for a given currency conversion (currency from, currency to). Like so:

use Gocanto\Converter\RoundedNumber;

$conversion = $converter
    ->withAmount(RoundedNumber::make(10))
    ->withCurrency('SGD')
    ->convertTo('USD');

This operation will return a Currency Conversion object that holds all the related operations info

Contributing

Please feel free to fork this package and contribute by submitting a pull request to enhance its functionalities.

License

The MIT License (MIT). Please see License File for more information.

How can I thank you?

Why not star the github repo and share the link for this repository on Twitter?

Don't forget to follow me on twitter!

Thanks!

Gustavo Ocanto.