|
1 |
| -# Laravel Swap |
| 1 | +<img src="https://github.com/florianv/swap/blob/master/doc/logo.png" width="200px" align="left"/> |
| 2 | +> Currency exchange rates library for Laravel |
2 | 3 |
|
3 |
| -[![Build status][travis-image]][travis-url] |
4 |
| -[![Version][version-image]][version-url] |
5 |
| -[![Downloads][downloads-image]][downloads-url] |
| 4 | +[](https://travis-ci.org/florianv/laravel-swap) |
| 5 | +[](https://packagist.org/packages/florianv/laravel-swap) |
| 6 | +[](https://scrutinizer-ci.com/g/florianv/laravel-swap) |
| 7 | +[](https://packagist.org/packages/florianv/laravel-swap) |
6 | 8 |
|
7 |
| -> Integrates [Swap](https://github.com/florianv/swap) with Laravel |
| 9 | +**Swap** allows you to retrieve currency exchange rates from various services such as [Fixer](http://fixer.io) or [Yahoo](https://finance.yahoo.com/) and optionally cache the results. |
8 | 10 |
|
9 |
| -## Installation |
| 11 | +<br /><br /> |
10 | 12 |
|
11 |
| -Install the package via [Composer](https://getcomposer.org): |
| 13 | +## QuickStart |
| 14 | + |
| 15 | +1) Install via Composer: |
12 | 16 |
|
13 | 17 | ```bash
|
14 |
| -$ composer require florianv/laravel-swap |
| 18 | +$ composer require florianv/laravel-swap php-http/message php-http/guzzle6-adapter |
15 | 19 | ```
|
16 | 20 |
|
17 |
| -## Configuration |
18 |
| - |
19 |
| -Register the service provider and the facade in your configuration: |
| 21 | +2) Configure the Service Provider and alias: |
20 | 22 |
|
21 | 23 | ```php
|
22 | 24 | // config/app.php
|
23 | 25 | 'providers' => [
|
24 |
| - Florianv\LaravelSwap\SwapServiceProvider::class |
| 26 | + Swap\Laravel\SwapServiceProvider::class |
25 | 27 | ],
|
26 | 28 |
|
27 | 29 | 'aliases' => [
|
28 |
| - 'Swap' => Florianv\LaravelSwap\Facades\Swap::class |
| 30 | + 'Swap' => Swap\Laravel\Facades\Swap::class |
29 | 31 | ]
|
30 | 32 | ```
|
31 | 33 |
|
32 |
| -Publish Swap's configuration: |
| 34 | +3) Publish the Package configuration |
33 | 35 |
|
34 | 36 | ```bash
|
35 |
| -$ php artisan vendor:publish |
| 37 | +$ php artisan vendor:publish --provider="Swap\Laravel\SwapServiceProvider" |
36 | 38 | ```
|
37 | 39 |
|
38 |
| -By default, `Swap` is configured to use the `FileGetContentsHttpAdapter`, the `YahooFinanceProvider` provider and don't use a cache. |
| 40 | +4) Start using it! |
39 | 41 |
|
40 |
| -For more informations about all possibilities including Laravel Cache integration, read the comments in the |
41 |
| -[configuration file](https://github.com/florianv/laravel-swap/blob/master/config/swap.php). |
| 42 | +```php |
| 43 | +// Get the latest EUR/USD rate |
| 44 | +$rate = Swap::latest('EUR/USD'); |
42 | 45 |
|
43 |
| -## Usage |
| 46 | +// 1.129 |
| 47 | +$rate->getValue(); |
44 | 48 |
|
45 |
| -### Via the Facade |
| 49 | +// 2016-08-26 |
| 50 | +$rate->getDate()->format('Y-m-d'); |
46 | 51 |
|
47 |
| -```php |
48 |
| -Route::get('/', function () { |
49 |
| - $rate = Swap::quote('EUR/USD'); |
50 |
| -}); |
| 52 | +// Get the EUR/USD rate yesterday |
| 53 | +$rate = Swap::historical('EUR/USD', Carbon::yesterday()); |
51 | 54 | ```
|
52 | 55 |
|
53 |
| -### Via Injection |
| 56 | +## Documentation |
54 | 57 |
|
55 |
| -```php |
56 |
| -use Swap\SwapInterface; |
| 58 | +The complete documentation can be found [here](https://github.com/florianv/laravel-swap/blob/master/doc/readme.md). |
57 | 59 |
|
58 |
| -Route::get('/', function (SwapInterface $swap) { |
59 |
| - $rate = $swap->quote('EUR/USD'); |
60 |
| -}); |
61 |
| -``` |
| 60 | +## Services |
62 | 61 |
|
63 |
| -## License |
| 62 | +Here is the list of the currently implemented services. |
64 | 63 |
|
65 |
| -[MIT](https://github.com/florianv/laravel-swap/blob/master/LICENSE) |
| 64 | +| Service | Base Currency | Quote Currency | Historical | |
| 65 | +|---------------------------------------------------------------------------|----------------------|----------------|----------------| |
| 66 | +| [Fixer](http://fixer.io) | * | * | Yes | |
| 67 | +| [European Central Bank](http://www.ecb.europa.eu/home/html/index.en.html) | EUR | * | Yes | |
| 68 | +| [Google](http://www.google.com/finance) | * | * | No | |
| 69 | +| [Open Exchange Rates](https://openexchangerates.org) | USD (free), * (paid) | * | Yes | |
| 70 | +| [Xignite](https://www.xignite.com) | * | * | Yes | |
| 71 | +| [Yahoo](https://finance.yahoo.com) | * | * | No | |
| 72 | +| [WebserviceX](http://www.webservicex.net/ws/default.aspx) | * | * | No | |
| 73 | +| [National Bank of Romania](http://www.bnr.ro) | RON | * | No | |
| 74 | +| [Central Bank of the Republic of Turkey](http://www.tcmb.gov.tr) | * | TRY | No | |
| 75 | +| [Central Bank of the Czech Republic](http://www.cnb.cz) | * | CZK | No | |
| 76 | +| [currencylayer](https://currencylayer.com) | USD (free), * (paid) | * | Yes | |
66 | 77 |
|
67 |
| -[travis-url]: https://travis-ci.org/florianv/laravel-swap |
68 |
| -[travis-image]: http://img.shields.io/travis/florianv/laravel-swap.svg |
| 78 | +## Credits |
69 | 79 |
|
70 |
| -[version-url]: https://packagist.org/packages/florianv/laravel-swap |
71 |
| -[version-image]: http://img.shields.io/packagist/v/florianv/laravel-swap.svg |
| 80 | +- [Florian Voutzinos](https://github.com/florianv) |
| 81 | +- [All Contributors](https://github.com/florianv/laravel-swap/contributors) |
| 82 | + |
| 83 | +## License |
72 | 84 |
|
73 |
| -[downloads-url]: https://packagist.org/packages/florianv/laravel-swap |
74 |
| -[downloads-image]: https://img.shields.io/packagist/dt/florianv/laravel-swap.svg |
| 85 | +The MIT License (MIT). Please see [LICENSE](https://github.com/florianv/laravel-swap/blob/master/LICENSE) for more information. |
0 commit comments