gocanto / converter
Immutable PHP currency converter that's data-agnostic.
Installs: 538
Dependents: 0
Suggesters: 0
Security: 0
Stars: 77
Watchers: 6
Forks: 6
Open Issues: 0
Type:php-bundle
Requires
- php: ^7.2
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.13
- infection/infection: ^0.11.4
- mockery/mockery: ^1.0.0
- phpmd/phpmd: ^2.6
- phpro/grumphp: ^0.14.2
- phpstan/phpstan: ^0.11
- phpstan/phpstan-mockery: ^0.11.0
- phpstan/phpstan-phpunit: ^0.11.0
- phpunit/phpunit: ^8.0
- squizlabs/php_codesniffer: ^3.3
- vimeo/psalm: ^3.4
This package is auto-updated.
Last update: 2024-11-11 19:11:23 UTC
README
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.