sowork / yauth
laravel rbac package
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:laravel-package
Requires (Dev)
- mockery/mockery: ~1.0
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2025-03-30 06:20:35 UTC
README
larave5 RBAC权限管理,多表用户权限判断
安装
- composer安装
composer require sowork/yauth dev-master
- 注册:在
config/app.php
文件中providers
数组中注册提供者Sowork\YAuth\YAuthServiceProvider::class,
,在config/app.php
文件aliases
数组中注册'YAuth' => Sowork\YAuth\YAuthServiceProvider::class,
资源发布
- 默认
php artisan vendor:publish
会发布配置文件和数据库迁移文件,单独发布如下。 - 数据库表迁移
php artisan migrate
- 如果你不想使用默认yauth的数据库表,或者想基于yauth表进行修改,需要在
AppServiceProvider
的register
方法中调用YAuth::ignoreMigrations();
使用php artisan vendor:publish --tag=yauth-migrations
导出默认迁移表 - 配置文件发布
php artisan vendor:publish --tag=yauth-config