zingle-com / stash-package
Stash package for Laravel
Installs: 1 698
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:laravel-package
Requires
- php: >=7.1
- predis/predis: ^1.1
- tedivm/stash-bundle: ^0.7
Requires (Dev)
- illuminate/container: 5.1.x|5.2.x|5.3.x|5.4.x|5.5.x
- illuminate/support: 5.1.x|5.2.x|5.3.x|5.4.x|5.5.x
This package is auto-updated.
Last update: 2024-10-25 09:10:55 UTC
README
Provides basic stash bindings and helpers into Laravel.
Installation
Install the base package with composer.
$ composer require zingle-com/stash-package
Add service provider to your providers after the Illuminate providers, but before your project service providers.
// config.php // ... 'providers' => [ // ... Illuminate\Validation\ValidationServiceProvider::class, Illuminate\Session\SessionServiceProvider::class, Illuminate\Notifications\NotificationServiceProvider::class, /** * Vendors */ // ... ZingleCom\Stash\StashServiceProvider::class, // ... /** * Project providers */ ],
Finally install the vendor assets:
$ php artisan vendor:publish --provider="ZingleCom\Stash\StashServiceProvider"