vahidkaargar/currencies

0.2 2023-10-29 07:58 UTC

This package is auto-updated.

Last update: 2024-09-29 10:02:41 UTC


README

使用此包,您可以获取货币名称列表

需求

  1. 这是一个Laravel包
  2. PHP >= 7.4

安装

composer require "vahidkaargar/currencies"

文档

use vahidkaargar\Currencies\Currency;

/*
 * There two ways to use 
 * Output must be an array of currencies names
 */
$currencies = currency();
$currencies = Currency::fetch();

/*
 * Give you details of currency
 */
$currencies = currency('USD');
$currencies = Currency::fetch('USD');

测试

./vendor/bin/phpunit