PHPackages                             blackcube/dboard - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. blackcube/dboard

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

blackcube/dboard
================

CMS Administration Panel

1.0.0(1mo ago)07↓50%1BSD-3-ClauseCSSPHP ^8.2

Since Apr 4Pushed 2mo agoCompare

[ Source](https://github.com/blackcubeio/dboard)[ Packagist](https://packagist.org/packages/blackcube/dboard)[ Docs](https://github.com/blackcubeio/dboard)[ RSS](/packages/blackcube-dboard/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (25)Versions (3)Used By (1)

Blackcube DBoard
================

[](#blackcube-dboard)

Administration panel for Blackcube CMS.

[![License](https://camo.githubusercontent.com/6cb285b57819f8de0acfb34923298f4f569f962544e8fe35331da2d163f4e485/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4253442d2d332d2d436c617573652d626c75652e737667)](LICENSE.md)[![Packagist Version](https://camo.githubusercontent.com/2a01a924b8205d9a0ab095681974b01c43777ba1831a2613358ac77a40cc9c82/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f626c61636b637562652f64626f6172642e737667)](https://packagist.org/packages/blackcube/dboard)

Installation
------------

[](#installation)

```
composer require blackcube/dboard
```

Requirements
------------

[](#requirements)

- Yii3 (active-record, router, rbac, view)
- [blackcube/dcore](https://github.com/blackcubeio/dcore) — data layer
- [blackcube/yii-bleet](https://github.com/blackcubeio/yii-bleet) — UIKit
- [blackcube/oauth2](https://github.com/blackcubeio/oauth2) — JWT authentication
- [blackcube/yii-assets](https://github.com/blackcubeio/yii-assets) — Vite/Webpack asset bundles

What it is
----------

[](#what-it-is)

Full back-office for dcore. CRUD for every entity, tree management, RBAC, JWT authentication with passkey support.

Managed entities
----------------

[](#managed-entities)

ModuleCapabilitiesContentsCRUD, tree (move, reorder), blocs, tags, translations, slugs, SEO (xeo), authors, export/import MarkdownTagsCRUD, tree, blocs, slugs, SEOMenusCRUD, treeTypesCRUD, associate elastic schemas and content/tag typesElastic SchemasCRUD, JSON Schema editor, schema-to-type mappingLanguagesCRUDHostsCRUDSlugsManagement, sitemap configurationSEO (Xeo)Per-slug SEO metadata, authors, blocsAuthorsCRUDParametersCRUDAdministratorsCRUD, activation, role/permission assignmentPasskeysWebAuthn registration and managementRBACRoles and permissions managementDashboardOverviewSearchGlobal search across entitiesPreviewContent preview with simulated datesAuthentication
--------------

[](#authentication)

Two authentication methods:

- **JWT (OAuth2)** — password grant via `blackcube/oauth2`, access token in cookie, automatic refresh
- **Passkeys (WebAuthn)** — FIDO2 passwordless authentication via `web-auth/webauthn-lib`

RBAC
----

[](#rbac)

Granular permissions per entity. Each entity has `VIEW`, `CREATE`, `UPDATE`, `DELETE` permissions, some add `IMPORT`/`EXPORT`. Aggregated into `MANAGER` roles per entity.

RoleCovers`CONTENT:MANAGER`view, create, update, delete, import, export`TAG:MANAGER`view, create, update, delete, import, export`MENU:MANAGER`view, create, update, delete`TYPE:MANAGER`view, create, update, delete`ELASTICSCHEMA:MANAGER`view, create, update, delete`LANGUAGE:MANAGER`view, create, update, delete`HOST:MANAGER`view, create, update, delete`XEO:MANAGER`view, create, update, delete`AUTHOR:MANAGER`view, create, update, delete`PARAMETER:MANAGER`view, create, update, delete`ADMINISTRATOR:MANAGER`view, create, update, delete`SITE:MANAGER`dashboard, search, previewTo enable direct permission assignment (not just roles), configure RBAC with `enableDirectPermissions`:

```
// config/common/di/rbac.php
use Yiisoft\Rbac\Manager;

return [
    ManagerInterface::class => static fn (
        ItemsStorageInterface $itemsStorage,
        AssignmentsStorageInterface $assignmentsStorage
    ) => new Manager(
        itemsStorage: $itemsStorage,
        assignmentsStorage: $assignmentsStorage,
        enableDirectPermissions: true,
    ),
];
```

Configuration
-------------

[](#configuration)

```
// config/params.php
return [
    'blackcube/dboard' => [
        'routePrefix' => '/admin',
        'rbacClasses' => [
            // Your RBAC permission classes
        ],
        'oauth2' => [
            'issuer' => 'https://your-domain.com',
            'publicKey' => '/path/to/public.key',
            'privateKey' => '/path/to/private.key',
            'algorithm' => 'RS256',
        ],
    ],
];
```

Migrations
----------

[](#migrations)

DBoard ships its own migrations (administrators, passkeys, RBAC tables, refresh tokens):

```
php yii.php migrate:up
```

Let's be honest
---------------

[](#lets-be-honest)

**This is Blackcube's admin, not a generic admin generator.**

DBoard is purpose-built for dcore entities. It is not a scaffolding tool and does not generate CRUD from arbitrary models.

**Tight coupling.**

DBoard depends on dcore, Bleet, oauth2, yii-assets. It is not a standalone package — it is the admin layer of the Blackcube stack.

License
-------

[](#license)

BSD-3-Clause. See [LICENSE.md](LICENSE.md).

Author
------

[](#author)

Philippe Gaultier

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance88

Actively maintained with recent releases

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

44d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/545714?v=4)[pgaultier](/maintainers/pgaultier)[@pgaultier](https://github.com/pgaultier)

---

Top Contributors

[![pgaultier](https://avatars.githubusercontent.com/u/545714?v=4)](https://github.com/pgaultier "pgaultier (2 commits)")

---

Tags

oauth2cmsrbacwebauthnadminback office

###  Code Quality

TestsCodeception

### Embed Badge

![Health badge](/badges/blackcube-dboard/health.svg)

```
[![Health](https://phpackages.com/badges/blackcube-dboard/health.svg)](https://phpackages.com/packages/blackcube-dboard)
```

###  Alternatives

[web-auth/webauthn-symfony-bundle

FIDO2/Webauthn Security Bundle For Symfony

63397.4k6](/packages/web-auth-webauthn-symfony-bundle)[izyue/yii2-admin

RBAC Auth manager for Yii2

391.8k](/packages/izyue-yii2-admin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
