Looking to hire Laravel developers? Try LaraJobs

laravel-woocommerce maintained by kg-bot

Description
WooCommerce REST API package for Laravel
Author
Last update
2021/02/03 16:50 (dev-master)
License
Links
Downloads
0

Comments
comments powered by Disqus

WooCommerce REST API PHP SDK For Laravel

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

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"