ggoforth / laravel-montage by ggoforth

13
0
1
Package Data
Maintainer Username: ggoforth
Maintainer Contact: ggoforth@shift3tech.com (Greg Goforth)
Package Create Date: 2015-06-11
Package Last Update: 2015-06-13
Language: PHP
License: Unknown
Last Refreshed: 2025-04-25 15:00:03
Package Statistics
Total Downloads: 13
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Laravel 5.1 Montage API Package

A Laravel 5.1 service provider and facade for working with Edit LLC's Montage API.

Usage

$ composer require ggoforth/laravel-montage:0.*

Once you have the package installed, update your app.php to include the relevant service provider.

Editllc\LaravelMontage\LaravelMontageServiceProvider::class,

and update your aliases array in app.php to include one for Montage and point it at the proper facade.

'Montage'   => Editllc\LaravelMontage\LaravelMontageFacade::class,

Now you can publish the montage config file so you can enter your pertinent details.

$ php artisan vendor:pubish

Open the newly created config montage.php config file located in the /config directory of your project repo. Add your username / password or a token if you already have one. Finally fill out your Montage subdomain in the config array and you'll be all set to begin using Montage in your own application.