rob-lester-jr04 / zuoravel
A Zuora integration package for Laravel
dev-master
2019-06-07 13:54 UTC
Requires
- php: >=7.0
- guzzlehttp/guzzle: ~6.0
- laravel/framework: >=5.6
- mtownsend/xml-to-array: ~1.0
Requires (Dev)
- orchestra/testbench: ~3.6.0
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2024-11-08 02:13:26 UTC
README
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"