Skip to content

Gwakko/laravel-mor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laravel-mor

NOTE: This package is no longer in active development. Feel free to fork and extend it as needed.

A simple Laravel interface for interacting with the morinc API.

Installation

To install the package, simply add the following to your Laravel installation's composer.json file:

"require": {
	"laravel/framework": "5.*",
	"blob/laravel-mor": "dev-master"
},

Run composer update to pull in the files.

Then, add the following Service Provider to your providers array in your config/app.php file:

'providers' => array(
	...
	MOR\Providers\MORServiceProvider::class
);

From the command-line run: php artisan vendor:publish

Configuration

Open config/mor.php and configure the api endpoint and credentials:

return [
    // API URL
    'url'		=>	'https://mor.url.com',

    // API USERNAME
    'username'	=>	'admin_user',

    // API PASSWORD
    'password'	=>	'password123',

    // API PROCESSOR
    'processor' =>	'api2016.php',

    // API USERNAME
    'timezone'	=>	'UTC',
];

Usage

$DIDs = MOR::getDIDs($client_id);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages