maiev / ec-manager
ec for laravel
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
pkg:composer/maiev/ec-manager
Requires
- guzzlehttp/guzzle: ~6.0
- illuminate/support: 5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*
This package is auto-updated.
Last update: 2025-12-29 03:46:27 UTC
README
Installation
- From your laravel projects root folder in terminal run:
composer require maiev/ec-manager
- 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
];
- Publish the packages config file
php artisan vendor:publish --provider="Maiev\EC\Providers\ECServiceProvider"