hexaequo / currency-converter-bundle
Bundle that allow to convert currencies and crypto currencies through differents api
Installs: 621
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
Type:bundle
Requires
- php: ^7.4|^8.0
- symfony/cache: ^5.1
- symfony/framework-bundle: ^5.1
- symfony/http-client: ^5.1
This package is auto-updated.
Last update: 2025-03-26 00:16:03 UTC
README
What is it
This bundle allows you to convert currencies and crypto currencies with providers that you can customize. This is made for Symfony !! By default there is two providers, Coinbase and Bitpay, you can add your own by extending the AbstractProvider class.
Installation
In order to install this bundle run : composer require hexaequo/currency-converter-bundle
Usage
You can use this bundle by auto-wiring the Hexaequo\CurrencyConverterBundle\Converter service and using the convert method.
For example:
use Hexaequo\CurrencyConverterBundle\Converter; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class MyController extends AbstractController { public function myPage(Converter $converter) { $euroValue = $converter->convert(1.5,'BTC','EUR'); // At the time I'm writting it this will be equal to: 23650,85 } }
Based on the providers that you implement you can convert any currencies based on what is supported.