blackbirddev/entry
Composer 安装命令:
composer require blackbirddev/entry
包简介
Role package for Laravel 5
README 文档
README
Entry is a role package for Laravel5.
Setup
In the require key of composer add the following
"blackbirddev/entry": "dev-master"
The next step is to update/install with composer
$ composer update
Open up your config/app.php file and add this at the end of the $providers array:
'Blackbirddev\Entry\EntryServiceProvider',
In the same file add the facade at the end gof the $aliases array:
'Entry => 'Blackbirddev\Entry\EntryFacade',
The next step is to add the migration, models, seeds and config files to your project. To do this run this command:
$ php artisan vendor:publish --provider="Blackbirddev\Entry\EntryServiceProvider"
Note: This function generates the models but it does NOT generate the correct namespace for you. If you changed the default namespace then you need to update the namespace in the Role and Permission model in the app directory!
Models
User (App\User.php)
We need to update the user model with a trait. Your model should now look like this:
use Blackbird\Entry\Entry\EntryUserTrait;
class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
use Authenticatable, CanResetPassword, EntryUserTrait;
// Your other stuff
...
}
Note: It's important that the use statement is added to your User model
Middleware
Open up your app/Http/Kernel.app file and add the package middleware to the $middleware` array like so:
protected $middleware = [
// ...
'App\Http\Middleware\VerifyCsrfToken',
'Blackbirddev\Entry\Middleware\CheckPermission',
];
You need to do a composer dump-autoload to make the middleware available ;)
Database
Let's get that database ready
We need to make sure that we have all the databases and the data for that. Let's first migrate.
$ php artisan migrate
Finally some data
We need to seed the database with the new seeder class that is created in the migrations directory
$ php artisan db:seed --class=EntryDatabaseSeeder
Note: If you can't run the seed then run composer dump-autoload first
blackbirddev/entry 适用场景与选型建议
blackbirddev/entry 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 36 次下载、GitHub Stars 达 2, 最近一次更新时间为 2015 年 02 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「roles」 「sebwite」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 blackbirddev/entry 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 blackbirddev/entry 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 blackbirddev/entry 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel 5 support package
Laravel Multiauth package
This package provides a flexible way to add Role-based Permissions to Laravel 6.x
This package provides a flexible way to add Role-based Permissions to Laravel
Easy and extendeble PhpStorm Advanced Metadata generator for Laravel. Similar to ide-helper:meta, with support for extra custom generators. Also includes routes and config
A testing package
统计信息
- 总下载量: 36
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-19