2017 © Pedro Peláez
 

library laravel-lightspeed-restaurant

A Laravel 5 package for the Lightspeed restaurant API

image

antwerpfactory/laravel-lightspeed-restaurant

A Laravel 5 package for the Lightspeed restaurant API

  • Monday, March 12, 2018
  • by ppelgrims
  • Repository
  • 4 Watchers
  • 0 Stars
  • 21 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 3 Versions
  • 40 % Grown

The README.md

Build Status, (*1)

Laravel Lightspeed Restaurant

This package makes working with the Lightspeed Restaurant API a breeze. Once installed you can perform all API calls like so:, (*2)

use Lightspeedresto;

app()->lightspeedresto->core()->getCompanies(); // container

Lightspeedresto::core()->getCompanies(); // or use the facade

Lightspeedresto::core()->getCompany($companyId);

Lightspeedresto::onlineOrdering()->getCustomers();

Lightspeedresto::onlineOrdering()->updateOrderPartial($companyId, $orderId, $data);

Lightspeedresto::inventory()->addProduct($productGroupId, $data);

We recommend using fractals to transform the data that gets passed through to the API., (*3)

Installation

Install the package via composer:, (*4)

composer require antwerpfactory/laravel-lightspeed-restaurant

Unless you're using Laravel 5.5 you need to register the ServiceProvider and Facade:, (*5)

'providers' => [
    ...
    AntwerpFactory\LightspeedRestaurant\ServiceProvider::class,
];
'aliases' => [
    ...
    'Lightspeedresto' => AntwerpFactory\LightspeedRestaurant\Facade::class,
    ...
]

Configuration

Publish the configuration with this command:, (*6)

php artisan vendor:publish --provider="AntwerpFactory\LightspeedRestaurant\ServiceProvider"

This will publish file called lightspeedrestaurant.php in your config-directory with this content:, (*7)

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | User Creditentials
    |--------------------------------------------------------------------------
    */

    'username' => env('LIGHTSPEED_RESTAURANT_USER_NAME'),

    'password' => env('LIGHTSPEED_RESTAURANT_PASSWORD'),

    'companyId' => env('LIGHTSPEED_RESTAURANT_COMPANYID'),

    'server' => env('LIGHTSPEED_RESTAURANT_SERVER'),

    'deviceId' => 'api',

];

Tests

$ make sniff test

Contributing

Please see contributing for details., (*8)

License

The MIT License (MIT). Please see License File for more information., (*9)

The Versions

12/03 2018

dev-master

9999999-dev

A Laravel 5 package for the Lightspeed restaurant API

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel restaurant lightspeed lightspeedhq posios

08/02 2018

dev-develop

dev-develop

A Laravel 5 package for the Lightspeed restaurant API

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel restaurant lightspeed lightspeedhq posios

01/12 2017

v1.0.0

1.0.0.0

A Laravel 5 package for the Lightspeed restaurant API

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel restaurant lightspeed lightspeedhq posios