Download the PHP package yiisoft/rbac-cycle-db without Composer
On this page you can find all versions of the php package yiisoft/rbac-cycle-db. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package rbac-cycle-db
Yii RBAC Cycle Database
The package provides Cycle Database storage for Yii RBAC.
Detailed build statuses:
RDBMS | Status |
---|---|
SQLite | |
MySQL | |
PostgreSQL | |
Microsoft SQL Server |
Requirements
- PHP 8.1 or higher.
- In the case of using with SQLite, a minimal required version is 3.8.3.
- In the case of using with SQL Server, a minimal required version of PDO is 5.11.1.
Installation
The package could be installed with composer:
General usage
Configuring database connection
Configuration depends on a selected driver. Here is an example for PostgreSQL:
More comprehensive examples can be found at Cycle Database docs.
Working with migrations
This package uses Cycle Migrations for managing database tables required for
storages. There are three tables in total (yii_rbac_
prefix is used).
Items storage:
yii_rbac_item
.yii_rbac_item_child
.
Assignments storage:
yii_rbac_assignment
.
Configuring migrator and capsule
For configuring $databaseManager
, see previous section.
Because item and assignment storages are completely independent, migrations are separated as well to prevent
the creation of unused tables. So, for example, if you only want to use assignment storage, adjust
$migrationsSubfolders
variable like this:
Applying migrations
Reverting migrations
Using storages
The storages are not intended to be used directly. Instead, use them with Manager
from
Yii RBAC package:
Note wrapping manager with decorator—it additionally provides database transactions to guarantee data integrity.
Note that it's not necessary to use both DB storages. Combining different implementations is possible. A quite popular case is to manage items via PHP file while store assignments in a database.
More examples can be found in Yii RBAC documentation.
Syncing storages manually
The storages stay synced thanks to manager, but there can be situations where you need to sync them manually. One of them is using combination with PHP file based storage and editing it manually.
Let's say PHP file is used for items, while database - for assignments, and some items were deleted:
Then related entries in other storage needs to be deleted as well. This can be done within a migration:
Documentation
- Internals
If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.
License
The Yii RBAC Cycle Database is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.
Support the project
Follow updates
All versions of rbac-cycle-db with dependencies
cycle/database Version ^2.7
cycle/migrations Version ^4.2.2
yiisoft/friendly-exception Version ^1.1
yiisoft/rbac Version ^2.0