Skip to content

Commit 735802d

Browse files
committed
fix: links
1 parent 26f0a68 commit 735802d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
[![Scrutinizer](https://img.shields.io/scrutinizer/g/florianv/laravel-swap.svg?style=flat-square)](https://scrutinizer-ci.com/g/florianv/laravel-swap)
66
[![Version](http://img.shields.io/packagist/v/florianv/laravel-swap.svg?style=flat-square)](https://packagist.org/packages/florianv/laravel-swap)
77

8-
Swap allows you to retrieve currency exchange rates from various services such as **[Fixer](https://apilayer.com/marketplace/fixer-api)**, **[Currency Data](https://apilayer.com/marketplace/currency_data-api)**,
8+
Swap allows you to retrieve currency exchange rates from various services such as **[Fixer](https://fixer.io/)**, **[Currency Data](https://apilayer.com/marketplace/currency_data-api)**,
99
**[Exchange Rates Data](https://apilayer.com/marketplace/exchangerates_data-api)** or **[Abstract](https://www.abstractapi.com)** and optionally cache the results.
1010

1111
## Sponsors
1212

1313
<table>
1414
<tr>
1515
<td><img src="https://assets.apilayer.com/apis/fixer.png" width="50px"/></td>
16-
<td><a href="https://apilayer.com/marketplace/fixer-api">Fixer</a> is a simple and lightweight API for foreign exchange rates that supports up to 170 world currencies.</td>
16+
<td><a href="https://fixer.io/">Fixer</a> is a simple and lightweight API for foreign exchange rates that supports up to 170 world currencies.</td>
1717
</tr>
1818
<tr>
1919
<td><img src="https://assets.apilayer.com/apis/currency_data.png" width="50px"/></td>
@@ -119,7 +119,7 @@ Here is the list of the currently implemented services:
119119

120120
| Service | Base Currency | Quote Currency | Historical |
121121
|---------------------------------------------------------------------------|----------------------|----------------|----------------|
122-
| [Fixer](https://apilayer.com/marketplace/fixer-api) | EUR (free, no SSL), * (paid) | * | Yes |
122+
| [Fixer](https://fixer.io/) | EUR (free, no SSL), * (paid) | * | Yes |
123123
| [Currency Data](https://apilayer.com/marketplace/currency_data-api) | USD (free), * (paid) | * | Yes |
124124
| [Exchange Rates Data](https://apilayer.com/marketplace/exchangerates_data-api) | USD (free), * (paid) | * | Yes |
125125
| [Abstract](https://www.abstractapi.com) | * | * | Yes |

config/swap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
|
8787
*/
8888
'services' => [
89-
'apilayer_fixer' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/fixer-api'],
89+
'apilayer_fixer' => ['api_key' => 'Get your key here: https://fixer.io/'],
9090
'apilayer_currency_data' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/currency_data-api'],
9191
'apilayer_exchange_rates_data' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/exchangerates_data-api'],
9292
'abstract_api' => ['api_key' => 'Get your key here: https://app.abstractapi.com/users/signup'],

doc/readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<table>
66
<tr>
77
<td><img src="https://assets.apilayer.com/apis/fixer.png" width="50px"/></td>
8-
<td><a href="https://apilayer.com/marketplace/fixer-api">Fixer</a> is a simple and lightweight API for foreign exchange rates that supports up to 170 world currencies.</td>
8+
<td><a href="https://fixer.io/">Fixer</a> is a simple and lightweight API for foreign exchange rates that supports up to 170 world currencies.</td>
99
</tr>
1010
<tr>
1111
<td><img src="https://assets.apilayer.com/apis/currency_data.png" width="50px"/></td>
@@ -110,14 +110,14 @@ Copy the [configuration](config/swap.php) to `/config/swap.php` if you wish to o
110110

111111
## Configuration
112112

113-
By default Swap uses the [Fixer](https://apilayer.com/marketplace/fixer-api) service, and will fallback to [Currency Data](https://apilayer.com/marketplace/currency_data-api) in case of failure.
113+
By default Swap uses the [Fixer](https://fixer.io/) service, and will fallback to [Currency Data](https://apilayer.com/marketplace/currency_data-api) in case of failure.
114114

115115
If you wish to use different services, you can modify the `services` configuration:
116116

117117
```php
118118
// app/config/swap.php
119119
'services' => [
120-
'apilayer_fixer' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/fixer-api'],
120+
'apilayer_fixer' => ['api_key' => 'Get your key here: https://fixer.io/'],
121121
'apilayer_currency_data' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/currency_data-api'],
122122
'apilayer_exchange_rates_data' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/exchangerates_data-api'],
123123
'abstract_api' => ['api_key' => 'Get your key here: https://app.abstractapi.com/users/signup'],
@@ -367,7 +367,7 @@ Here is the complete list of supported services and their possible configuration
367367
```php
368368
// app/config/swap.php
369369
'services' => [
370-
'apilayer_fixer' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/fixer-api'],
370+
'apilayer_fixer' => ['api_key' => 'Get your key here: https://fixer.io/'],
371371
'apilayer_currency_data' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/currency_data-api'],
372372
'apilayer_exchange_rates_data' => ['api_key' => 'Get your key here: https://apilayer.com/marketplace/exchangerates_data-api'],
373373
'abstract_api' => ['api_key' => 'Get your key here: https://app.abstractapi.com/users/signup'],

0 commit comments

Comments
 (0)