PHP Classes

File: readme.md

Recommend this page to a friend!
  Classes of Stefan Ninic   Laravel Woocommerce Integration   readme.md   Download  
File: readme.md
Role: Documentation
Content type: text/markdown
Description: Read me
Class: Laravel Woocommerce Integration
Manipulate e-commerce objects with Woocommerce API
Author: By
Last change:
Date: 9 months ago
Size: 1,751 bytes
 

Contents

Class file image Download

WooCommerce REST API PHP SDK For Laravel

Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads

<a href="https://www.buymeacoffee.com/KgBot"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a beer&emoji=?&slug=KgBot&button_colour=5F7FFF&font_colour=ffffff&font_family=Cookie&outline_colour=000000&coffee_colour=FFDD00"></a>

Installation

  1. Require using composer
composer require kg-bot/laravel-woocommerce

In Laravel 5.5, and above, the package will auto-register the service provider. In Laravel 5.4 you must install this service provider.

  1. Add the WooCommerceServiceProvider to your `config/app.php` providers array.
<?php 
'providers' => [
    // ...
    \KgBot\WooCommerce\WooCommerceServiceProvider::class,
    // ...
]

  1. Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="KgBot\WooCommerce\WooCommerceServiceProvider"