msonowal/laraxchange 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

msonowal/laraxchange

Composer 安装命令:

composer require msonowal/laraxchange

包简介

This provides multi currency conversions in Laravel app by using http://fixer.io/ API and cache the conversion rates by using cache driver specified and updates the cache for the app periodically by the command bus in laravel way

README 文档

README

Latest Stable Version Total Downloads License

Laravel 5 Library for working with multi currency conversions currently using http://fixer.io/ API.

Supports the entire Laravel 5.* releases.

In contrary to all other packages wherein it requires that you have to configure your provider, this library calls a free service and works with zero setup configs. This package utilizes built in laravel cache driver for caching the conversion rates and it also provides commands for artisan lovers and which can be scheduled so that it will periodically updates your cache storage.

So you don't really have to worry about downloading/configuring API Keys.

It also provides a middleware which automatically determines the currency and set it for the Visitor if there are no currency set in the session which depends on GeoIp package

Just install the package, add the config and it is ready to use!

Requirements

  • PHP >= 5.6.*
  • Geoip package install it from here

Installation

composer require msonowal/laraxchange

Add the service provider and facade in your config/app.php

Service Provider

Msonowal\Laraxchange\Providers\CurrencyServiceProvider::class,

Aliases (Facade)

'Currency'      =>  Msonowal\Laraxchange\Facades\Currency::class,

Configuration

This library also supports optional configuration.

To get started, first publish the package config file:

php artisan vendor:publish --provider="Msonowal\Laraxchange\Providers\CurrencyServiceProvider"
  • base_currency: defines the base currency for the app.
  • default_currency: defines the default_currency when no currency code is present for conversions.
  • valid_currencies: defines the currencies that are allowed to set for the applications.
  • cache_key: defines the cache_key for storing and retrieval to use with caching.
  • cache_expiry: defines the cache_expiry in minutes for how long the currencies will be store in cache.

It provides various built in helper methods to get the user currency or setting the currency

Usage

Set default currency of the visitor by using the middleware add this below in Kernal.php in app/http

'determine_currency'    =>  \Msonowal\Laraxchange\Middleware\SetDefaultUserCurrency::class,

Get ISO Currency_code of the visitor

getUserCurrency();  // returns "USD"

Get ISO Currency_code of the visitor

getUserCurrencySymbol();  // returns "$"

Get ISO Currency symbol of a currency

getCurrencySymbol("USD");  // returns "$"

Convert value from base currency to another currency on the fly

convertCurrency($value, "GBP");  // returns the value in GBP currency

Set base currency only for instance which can be changed on the fly

Currency::setBaseCurrency("GBP"); // sets the base currency as specified for that instance when default base currency is different

Get All Conversions list of the currencies based on the base currency specified

Currency::getRates();  // returns list of values fore each currency

Cache the conversion rates by using command

php artisan currency:cache;  // will cache currency conversion rates for each available currency specified in config `valid_currencies`

To cache the rates automatically add the command in your Kernal.php in app/Console directory below

$schedule->command('currency:cache')->daily()->at('12:00');  // will cache currency conversion rates for each available currency specified in config `valid_currencies`

There are so many other methods which can be explored by yourself

Credits

  • Hakan Ensari for the awesome fixer.io web api
  • Daniel Stainback for the GeoIp package
  • MaxMind for the IP data

统计信息

  • 总下载量: 2.19k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 8
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-03-23

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固