Fixerio icon indicating copy to clipboard operation
Fixerio copied to clipboard

PHP wrapper for Fixer.io, a service for foreign exchange rates

Results 13 Fixerio issues
Sort by recently updated
recently updated
newest added

Hello. Currently it is not possible to use the module with PHP 8 as the reqs in composer.json only a `guzzlehttp/guzzle ~6.0`. Can you update reqs for guzzle 7?

how to use Fluctuation Endpoint?? [https://fixer.io/documentation#fluctuation](url)

Undefined index: info Exchange.php:277 `throw new ResponseException($response['error']['info'], $response['error']['code']);` response is: `array:2 [▼ "success" => false "error" => array:2 [▼ "code" => 105 "type" => "base_currency_access_restricted" ] ]` error: $response['error']['info']

Laravel facades expect that the facade accessor is "provided" by one of the service providers. Tests have been added to ensure that the service provider will always provide the correct...

I did upgrade to version to 2 also created a key but now I am facing this problem. How to solve? this is happening on first example from your manual.

Fixed ResponseExpection params. Fixer.io error response format: ``` [ "success" => false "error" => array:2 [ "code" => 105 "type" => "base_currency_access_restricted" ] ] ```

I am having issues in 5.6 for now I can get it to work by swapping... ``` 'Exchange' => Fadion\Fixerio\Facades\Exchange::class ``` for.. ``` 'Exchange' => Fadion\Fixerio\Exchange::class, ``` Otherwise I start...

$response['error'] is an array while we need a string to raise a ResponseException

I have added the currency conversion endpoint and unit tests.

I might be a little confused here. This project is tagged as "currency-conversion". The readme says: > a service for foreign exchange rates and currency conversion I looked through the...