adamale / nbpfetch
PHP library that helps to fetch data from NBP API.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 16 087
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.2.0
- ext-json: *
- ext-mbstring: *
- adamale/object-collection: ^1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.15
- phpstan/phpstan: ^0.11.15
- phpunit/phpunit: ^8.2
This package is auto-updated.
Last update: 2024-09-08 21:14:19 UTC
README
PHP library that helps to fetch data from NBP API - http://api.nbp.pl/en.html.
It allows you to fetch currency rates, exchange rate tables and gold prices.
Requirements
PHP 7.2 or above.
Installation
a) with Composer:
composer require adamale/nbpfetch
b) without Composer:
include Composer File Loader in your project to autoload all the necessary classes.
Usage
Currency rate
<?php use NBPFetch\NBPFetch; require_once "vendor/autoload.php"; $NBPFetch = new NBPFetch(); $NBPFetchCurrencyRate = $NBPFetch->currencyRate(); /** * Currency rate examples. * Available methods are: current(string $currency), today(string $currency) * byDate(string $currency, string $date), byDateRange(string $currency, string $from, string $to) * and last(string $currency, int count). */ try { $currentCurrencyRate = $NBPFetchCurrencyRate->current("EUR"); $todayCurrencyRate = $NBPFetchCurrencyRate->current("EUR"); $givenDateCurrencyRate = $NBPFetchCurrencyRate->byDate("EUR", "2019-08-28"); $givenDateRangeCurrencyRates = $NBPFetchCurrencyRate->byDateRange("EUR", "2019-08-01", "2019-08-31"); $last10CurrencyRates = $NBPFetchCurrencyRate->last("EUR", 10); } catch (Exception $e) { }
Exchange rate table
<?php use NBPFetch\NBPFetch; require_once "vendor/autoload.php"; $NBPFetch = new NBPFetch(); $NBPFetchExchangeRateTable = $NBPFetch->exchangeRateTable(); /** * Exchange rate table examples. * Available methods are: current(string $table), today(string $table), * byDate(string $table, string $date), byDateRange(string $table, string $from, string $to) * and last(string $table, int count) */ try { $currentExchangeRateTable = $NBPFetchExchangeRateTable->current("A"); $todayExchangeRateTable = $NBPFetchExchangeRateTable->today("A"); $givenDateExchangeRateTable = $NBPFetchExchangeRateTable->byDate("A", "2019-08-28"); $givenDateRangeExchangeRateTables = $NBPFetchExchangeRateTable->byDateRange("A", "2019-08-01", "2019-08-31"); $last10ExchangeRateTables = $NBPFetchExchangeRateTable->last("A", 10); } catch (Exception $e) { }
Gold price
<?php use NBPFetch\NBPFetch; require_once "vendor/autoload.php"; $NBPFetch = new NBPFetch(); $NBPFetchGoldPrice = $NBPFetch->goldPrice(); /** * Gold price examples. * Available methods are: current(), today(), byDate(string $date), * byDateRange(string $from, string $to) and last(int count) */ try { $currentGoldPrice = $NBPFetchGoldPrice->current(); $todayGoldPrice = $NBPFetchGoldPrice->today(); $givenDateGoldPrice = $NBPFetchGoldPrice->byDate("2019-08-28"); $givenDateRangeGoldPrices = $NBPFetchGoldPrice->byDateRange("2019-08-01", "2019-08-31"); $last10GoldPrices = $NBPFetchGoldPrice->last(10); } catch (Exception $e) { }
About
Author
Adam Aleksak kontakt@adamaleksak.pl
License
NBPFetch is licensed under the MIT License - see the LICENSE
file for the details.