joan-ramirez/currency

Package to see the value of one currency compared to another

dev-main 2023-02-08 19:33 UTC

This package is auto-updated.

Last update: 2024-04-08 22:28:01 UTC


README

Library to see the value of a currency in comparison with another, it accepts the change of all the currencies in the world.

Installation

Add joan-ramirez/currency as a require dependency in your composer.json file:

composer require joan-ramirez/currency

Usage

Create a currency instance

use JoanRamirez/Currency/Currency;

$currency = new Currency();

Get USD value converted to EUR change()->get() methods

$currency->change('USD', 'EUR')->get();   

Get the value of $100 USD converted to EUR with the amount() method

$currency->change('USD', 'EUR')->amount(100)->get();   

License

Currency is licensed under the MIT license.