A Zuora integration package for Laravel

dev-master 2019-06-07 13:54 UTC

This package is auto-updated.

Last update: 2024-03-08 00:49:37 UTC


README

Laravel Packagist Packagist

Easily connect with APIs and integrate Zuora with your Laravel application

Installation

Install via composer

composer require rob-lester-jr04/zuoravel

Register Service Provider

Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.

Add service provider to config/app.php in providers section

Lester\Zuoravel\ServiceProvider::class,

Publish Configuration File

**Note that this is optional and in most cases, the configuration here is not needed.

php artisan vendor:publish --provider="Lester\Zuoravel\ServiceProvider" --tag="config"