maiev/ec-manager

ec for laravel

v1.0.1 2019-01-31 06:11 UTC

This package is auto-updated.

Last update: 2024-04-29 04:09:08 UTC


README

Installation

  1. From your laravel projects root folder in terminal run:
    composer require maiev/ec-manager
  1. Register the package
  • Laravel 5.5 and up Uses package auto discovery feature
  • Laravel 5.4 and below Register the package with laravel in config/app.php under providers with the following:
    'providers' => [
      	Maiev\EC\Providers\ECServiceProvider::class
    ];
  1. Publish the packages config file
    php artisan vendor:publish --provider="Maiev\EC\Providers\ECServiceProvider"