jeybin/coinbase

The helper package for coinbase cloud commerce

1.0.3.1 2022-09-19 09:02 UTC

This package is auto-updated.

Last update: 2024-05-19 12:54:01 UTC


README

Installation

You can install the package via composer:

  composer require jeybin/coinbase

The service provider will automatically register itself.

You must publish the config file with:

  php artisan coinbase:install

This is the contents of the config file that will be published at 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,
    ],
];

Useful links