tawba / currency-converter
Currency Converter
v1.7
2017-01-20 13:37 UTC
Requires
- php: >=5.6.4
- ext-curl: *
Requires (Dev)
- phpunit/phpunit: 4.4.*
This package is not auto-updated.
Last update: 2025-04-27 06:29:35 UTC
README
Currency converter package helps you to easily convert any amount from specific currency to another one.
Installation
Using Composer :
composer install
Or you can do
composer require tawba/currency-converter
If you don't have composer, you can get it from Composer
Run the application
php index.php list
php index.php convert
Usage
use Tawba\CurrencyConverter\ConverterService;
$from_currency = "USD";
$to_currency = "EGP";
$amount = 1000;
$converter = new ConverterService(); // You can pass "google" or "yahoo" as a service API
echo $converter->convert($from_currency, $to_currency, $amount);
You can test it by changing $from_currency, $to_currency, and $amount that exist inside index.php file
Notice: This package uses Google or Yahoo currency converter API.