bonnier / context-laravel
There is no license information available for the latest version (2.0.0) of this package.
Laravel package to implement Context Service Provider
Package info
github.com/BenjaminMedia/context-laravel
Type:laravel-package
pkg:composer/bonnier/context-laravel
2.0.0
2020-10-02 12:22 UTC
Requires
- guzzlehttp/guzzle: ^7.0
- illuminate/http: ^7.0
- illuminate/support: ^7.0
- laravel/framework: ^7.0
This package is auto-updated.
Last update: 2026-03-06 17:20:59 UTC
README
Install & setup
- Install
composer require bonnier/context-laravel - Add to
config/app.php
'providers' => [ ..., Bonnier\ContextService\ContextServiceProvider::class, ... ],
- Add middleware to
app/Http/Kernel.php
protected $middleware = [ ..., \Bonnier\ContextService\Middleware\RegisterContext::class, ];