zingle-com / stash-package
Laravel的Stash包
0.1.0
2019-12-05 02:58 UTC
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-09-25 09:00:40 UTC
README
为Laravel提供基本的stash绑定和辅助函数。
安装
使用composer安装基础包。
$ composer require zingle-com/stash-package
在Illuminate提供者之后,但在你的项目提供者之前,添加服务提供者到你的提供者列表中。
// config.php // ... 'providers' => [ // ... Illuminate\Validation\ValidationServiceProvider::class, Illuminate\Session\SessionServiceProvider::class, Illuminate\Notifications\NotificationServiceProvider::class, /** * Vendors */ // ... ZingleCom\Stash\StashServiceProvider::class, // ... /** * Project providers */ ],
最后安装供应商资产
$ php artisan vendor:publish --provider="ZingleCom\Stash\StashServiceProvider"