You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td><a href="https://exchangeratesapi.io">Exchange Rates Data</a> provides reliable exchange rates and currency conversions for your business with over 15 data sources.</td>
<td><a href="https://www.abstractapi.com/">Abstract</a> provides simple exchange rates for developers and a dozen of APIs covering thousands of use cases.</td>
<td><a href="https://exchangeratesapi.io">Exchange Rates Data</a> provides reliable exchange rates and currency conversions for your business with over 15 data sources.</td>
<td><a href="https://www.abstractapi.com/">Abstract</a> provides simple exchange rates for developers and a dozen of APIs covering thousands of use cases.</td>
21
-
</tr>
17
+
</tr>
22
18
</table>
23
19
24
20
## Index
@@ -65,7 +61,6 @@ use Http\Client\Curl\Client as CurlClient;
65
61
use Exchanger\Service\ApiLayer\CurrencyData;
66
62
use Exchanger\Service\ApiLayer\ExchangeRatesData;
67
63
use Exchanger\Service\ApiLayer\Fixer;
68
-
use Exchanger\Service\AbstractApi;
69
64
use Exchanger\Exchanger;
70
65
71
66
// Create your http client (we choose curl here)
@@ -83,9 +78,6 @@ $service = new CurrencyData($client, null, ['api_key' => 'Get your key here: htt
83
78
// Or use the ExchangeRatesData service
84
79
$service = new ExchangeRatesData($client, null, ['api_key' => 'Get your key here: https://exchangeratesapi.io']);
85
80
86
-
// Or use the AbstractApi service
87
-
$service = new AbstractApi($client, null, ['api_key' => 'Get your key here: https://app.abstractapi.com/users/signup']);
88
-
89
81
// Create Exchanger with your service
90
82
$exchanger = new Exchanger($service);
91
83
```
@@ -146,13 +138,11 @@ use Exchanger\Service\Chain;
146
138
use Exchanger\Service\ApiLayer\CurrencyData;
147
139
use Exchanger\Service\ApiLayer\ExchangeRatesData;
148
140
use Exchanger\Service\ApiLayer\Fixer;
149
-
use Exchanger\Service\AbstractApi;
150
141
151
142
$service = new Chain([
152
143
new Fixer($client, null, ['api_key' => 'Get your key here: https://fixer.io']),
153
144
new CurrencyData($client, null, ['api_key' => 'Get your key here: https://currencylayer.com']),
154
145
new ExchangeRatesData($client, null, ['api_key' => 'Get your key here: https://exchangeratesapi.io']),
155
-
new AbstractApi($client, null, ['api_key' => 'Get your key here: https://app.abstractapi.com/users/signup'])
0 commit comments