jeybin/coinbase

coinbase云商业的辅助包

1.0.3.1 2022-09-19 09:02 UTC

This package is auto-updated.

Last update: 2024-09-19 13:36:11 UTC


README

安装

您可以通过composer安装此包

  composer require jeybin/coinbase

服务提供者将自动注册自身。

您必须使用以下命令发布配置文件

  php artisan coinbase:install

这是将要发布到config/coinbase.php的配置文件内容

 return [
    'COINBASE_API_KEY'     => env('COINBASE_API_KEY',null),
    'COINBASE_API_VERSION' => env('COINBASE_API_VERSION',null),
    'providers' => [
        // Other Service Providers
    
        Jeybin\Coinbase\Providers\CoinbaseServiceProvider::class,
    ],
];

有用的链接