kg-bot/laravel-woocommerce

WooCommerce REST API package for Laravel

dev-master 2021-02-03 15:50 UTC

This package is auto-updated.

Last update: 2024-04-29 04:34:51 UTC


README

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

68747470733a2f2f696d672e6275796d6561636f666665652e636f6d2f627574746f6e2d6170692f3f746578743d427579206d652061206265657226656d6f6a693df09f8dba26736c75673d4b67426f7426627574746f6e5f636f6c6f75723d35463746464626666f6e745f636f6c6f75723d66666666666626666f6e745f66616d696c793d436f6f6b6965266f75746c696e655f636f6c6f75723d30303030303026636f666665655f636f6c6f75723d464644443030

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"