PHPackages                             scherersoftware/cake-cms - 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. [Framework](/categories/framework)
4. /
5. scherersoftware/cake-cms

ActiveCakephp-plugin[Framework](/categories/framework)

scherersoftware/cake-cms
========================

Block-based Content Management System for CakePHP 3

v1.0.7(9y ago)36.2k4MITPHP

Since Mar 21Pushed 7y ago3 watchersCompare

[ Source](https://github.com/scherersoftware/cake-cms)[ Packagist](https://packagist.org/packages/scherersoftware/cake-cms)[ RSS](/packages/scherersoftware-cake-cms/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (5)Versions (10)Used By (0)

CakePHP 3 cake-cms
==================

[](#cakephp-3-cake-cms)

[![License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.txt)

Block-based Content Management System for CakePHP 3

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

[](#installation)

Load the plugin in your `config/bootstrap.php`

```
Plugin::load('Cms', ['bootstrap' => true, 'routes' => true]);

```

Add the Dispatcher Filter for CMS Widget assets to the corresponding section in your `config/bootstrap.php`

```
DispatcherFactory::add('Cms.WidgetAsset');

```

Add tables via Migrations Plugin

```
bin/cake migrations migrate --plugin Cms

```

Add configuration to your `config/app.php`

```
'Cms' => [
    'Administration' => [
        'layout' => 'Admin.default', // Layout to use for the CMS admin area
        'helpers' => [
            'CkTools.Menu' // Helpers to load in the CMS admin area
        ]
    ]
]

```

Configure a route for the frontend rendering of CMS pages (use this example and adapt to your requirements)

```
$routes->connect('/:slug', Configure::read('Cms.Frontend.renderAction'), ['routeClass' => 'Cms.SlugRoute']);

```

Using Page Attributes
---------------------

[](#using-page-attributes)

It is possible to define arbitrary page attributes to save additional data for a CMS page without having to modify the CMS schema. Data will be saved as JSON in the `cms_pages.page_attributes` field.

The CMS will look in the `Pages.attributes` path of your CMS configuration. Configuration looks like this:

```
'Pages' => [
    'attributes' => [
        'public' => [
            'type' => 'boolean',
            'label' => 'Publicly Available',
            'default' => true
        ],
        'keywords' => [
            'type' => 'text',
            'label' => 'Keywords',
            'default' => ''
        ]
    ]
]

```

Based on this configuration, input fields will be rendered in a separate "Attributes" tab in the edit screen. Attributes can later be fetched using eiher `CmsPage::getAttributes()` or `CmsPage::getAttribute($attribute)`.

Example:

```
    $this->loadComponent('Cms.Cms', [
        'permissionsCallback' => function (CmsPage $page) use ($controller) {
            return $page->getAttribute('public');
        }
    ]);

```

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 52.9% 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

Every ~116 days

Recently: every ~194 days

Total

9

Last Release

2777d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7005ae518cf40495e5e8bbf91ae64379e5a853a62c2e35bcdc7ead11e6014ea2?d=identicon)[robertscherer](/maintainers/robertscherer)

![](https://www.gravatar.com/avatar/d0b3fb0817571a9d93cae13183799e0b255c5e028de7141e9979ab72b406d8ad?d=identicon)[felixkempf](/maintainers/felixkempf)

---

Top Contributors

[![robertschererc](https://avatars.githubusercontent.com/u/203977391?v=4)](https://github.com/robertschererc "robertschererc (9 commits)")[![felixkempf](https://avatars.githubusercontent.com/u/8512231?v=4)](https://github.com/felixkempf "felixkempf (7 commits)")[![cleptric](https://avatars.githubusercontent.com/u/6617432?v=4)](https://github.com/cleptric "cleptric (1 commits)")

### Embed Badge

![Health badge](/badges/scherersoftware-cake-cms/health.svg)

```
[![Health](https://phpackages.com/badges/scherersoftware-cake-cms/health.svg)](https://phpackages.com/packages/scherersoftware-cake-cms)
```

###  Alternatives

[cakephp/app

CakePHP skeleton app

3831.7M1](/packages/cakephp-app)[cakephp/acl

Acl Plugin for CakePHP framework

109553.9k15](/packages/cakephp-acl)

PHPackages © 2026

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