fsdstar / messages
laravel中的消息支持
1.0
2017-07-15 04:41 UTC
This package is not auto-updated.
Last update: 2024-09-29 03:10:18 UTC
README
为什么要写这个包
上次我想使用一个留言包时找了很多都没有找到一个合适的,所以想尝试着自己写一下,顺便熟悉一下laravel的扩展开发流程以及composer的包发布流程
用法
composer require jellybool/laravel-md5-hashing
或者在你的 composer.json
的 require 部分中添加
"jellybool/laravel-md5-hashing": "1.0.*"
下载完毕之后,直接配置 app/config.php
的 providers
//Illuminate\Hashing\HashServiceProvider::class,
JellyBool\Hashing\HashServiceProvider::class,
就是替换原来的 Hash,对于 Facades,也是一样的
//'Hash' => Illuminate\Support\Facades\Hash::class,
'Hash' => JellyBool\Hashing\Facades\Hash::class,
这样就大功告成了。在 Laravel 5.1,5.2,5.3 三个大版本测试通过,有任何问题可以直接提 issue 或 pr。