PHPackages                             phlo/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. phlo/cms

ActiveLibrary[Framework](/categories/framework)

phlo/cms
========

Phlo CMS — content management system for the Phlo framework

v0.9.0(2mo ago)00Apache-2.0

Since Feb 20Pushed 2mo agoCompare

[ Source](https://github.com/q-ainl/phlo-cms)[ Packagist](https://packagist.org/packages/phlo/cms)[ Docs](https://phlo.tech)[ RSS](/packages/phlo-cms/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

Phlo CMS
========

[](#phlo-cms)

Content management system for the [Phlo framework](https://github.com/q-ainl/phlo). Auto-generates a full admin interface from your model schemas — listings, forms, relations, search, API and dashboard.

Install
-------

[](#install)

```
composer require phlo/cms

```

Requires [phlo/tech](https://github.com/q-ainl/phlo).

Setup
-----

[](#setup)

Add the CMS paths to your `data/build.json`:

```
{
    "paths": {
        "app": [
            "",
            "/path/to/cms/",
            "/path/to/cms/widgets/"
        ]
    }
}
```

The CMS reads `%app->models` to discover your types and auto-generates routes for each model.

What you get
------------

[](#what-you-get)

### Listings

[](#listings)

Every model gets a paginated list view with:

- Search across searchable fields
- Sortable columns
- Configurable filters
- Pagination

Customize via static properties on your model:

```
static titleList = 'Cats'
static icon = 'cat'
static pp = 25
static objFilters = ['breed', 'color']
static objSorts = ['name', 'dob']

```

### Record views

[](#record-views)

Detail pages with parent/child/many relations rendered automatically from the schema. Child records are shown as nested listings, many-to-many as linked tags.

### Forms

[](#forms)

Create and edit forms generated from field definitions. Each field type renders its own input: text inputs, selects, date pickers, file uploads, WYSIWYG editors, image uploaders, relation selectors.

### API

[](#api)

RESTful endpoints for every model:

MethodRouteActionPOST`/api/{model}`CreatePUT`/api/{model}/{id}`UpdatePATCH`/api/{model}/{id}`Partial updateDELETE`/api/{model}/{id}`DeleteAll operations validate required fields and parse through field-level sanitization.

### Dashboard

[](#dashboard)

Overview page with model counts and optional widgets. Add BI widgets to your models for charts and analytics:

```
static objWidgets => [
    'Registrations per month' => arr(
        type: 'bar',
        data: static::records(columns: 'MONTH(created) AS label, COUNT(*) AS value', group: 'label'),
    ),
]

```

Widget types: bar, line, pie, gauge, list.

### Themes and transitions

[](#themes-and-transitions)

Built-in theme switcher with 100+ color themes and 18 page transition effects.

Architecture
------------

[](#architecture)

The CMS is a pure UI layer on top of Phlo's ORM. It has no side effects on the framework — models work identically with or without the CMS. All CRUD, validation and relation logic lives in the framework.

```
CMS.phlo              # Base class, routing, model discovery
CMS.list.phlo         # List views
CMS.record.phlo       # Record detail views
CMS.create.phlo       # Create forms
CMS.change.phlo       # Edit forms
CMS.API.phlo          # REST API
CMS.dashboard.phlo    # Dashboard
CMS.dashboard.bi.phlo # AI-powered BI queries
CMS.settings.phlo     # Theme/transition settings
CMS.layout.phlo       # Navigation layout
CMS.style.phlo        # Styling
CMS.script.phlo       # Client-side JS
widgets/              # ECharts visualization widgets

```

License
-------

[](#license)

Apache-2.0

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance83

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity24

Early-stage or recently created project

 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

88d ago

### Community

Maintainers

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

---

Top Contributors

[![q-devnl](https://avatars.githubusercontent.com/u/261672982?v=4)](https://github.com/q-devnl "q-devnl (2 commits)")

### Embed Badge

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

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

###  Alternatives

[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M532](/packages/laravel-passport)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

712181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)[laravel/pail

Easily delve into your Laravel application's log files directly from the command line.

91545.3M590](/packages/laravel-pail)

PHPackages © 2026

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