├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── renovate.json └── src ├── DriverFactory.php ├── Drivers ├── BaseCurrencyDriver.php ├── CurrencyDriverContract.php ├── CurrencyLayer.php ├── ExchangeRatesApi.php ├── FixerIo.php ├── MockCurrencyDriver.php └── OpenExchangeRates.php ├── Exceptions ├── ApiException.php ├── CurrencyException.php └── DriverNotFoundException.php ├── Helpers └── DateHelper.php ├── Results └── ConversionResult.php └── Symbol.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/composer.lock -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/renovate.json -------------------------------------------------------------------------------- /src/DriverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/DriverFactory.php -------------------------------------------------------------------------------- /src/Drivers/BaseCurrencyDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Drivers/BaseCurrencyDriver.php -------------------------------------------------------------------------------- /src/Drivers/CurrencyDriverContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Drivers/CurrencyDriverContract.php -------------------------------------------------------------------------------- /src/Drivers/CurrencyLayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Drivers/CurrencyLayer.php -------------------------------------------------------------------------------- /src/Drivers/ExchangeRatesApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Drivers/ExchangeRatesApi.php -------------------------------------------------------------------------------- /src/Drivers/FixerIo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Drivers/FixerIo.php -------------------------------------------------------------------------------- /src/Drivers/MockCurrencyDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Drivers/MockCurrencyDriver.php -------------------------------------------------------------------------------- /src/Drivers/OpenExchangeRates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Drivers/OpenExchangeRates.php -------------------------------------------------------------------------------- /src/Exceptions/ApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Exceptions/ApiException.php -------------------------------------------------------------------------------- /src/Exceptions/CurrencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Exceptions/CurrencyException.php -------------------------------------------------------------------------------- /src/Exceptions/DriverNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Exceptions/DriverNotFoundException.php -------------------------------------------------------------------------------- /src/Helpers/DateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Helpers/DateHelper.php -------------------------------------------------------------------------------- /src/Results/ConversionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Results/ConversionResult.php -------------------------------------------------------------------------------- /src/Symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otherguy/php-currency-api/HEAD/src/Symbol.php --------------------------------------------------------------------------------