PHPackages                             further/chronos - 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. [Admin Panels](/categories/admin)
4. /
5. further/chronos

ActiveLibrary[Admin Panels](/categories/admin)

further/chronos
===============

Chronos CMS - A developer friendly headless CMS built by Further Digital Solutions

v3.2(4w ago)021[4 issues](https://github.com/teamfurther/chronos/issues)MITBladePHP &gt;=8.3CI failing

Since May 5Pushed 12mo agoCompare

[ Source](https://github.com/teamfurther/chronos)[ Packagist](https://packagist.org/packages/further/chronos)[ RSS](/packages/further-chronos/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependencies (11)Versions (53)Used By (0)

Chronos CMS
===========

[](#chronos-cms)

---

A developer friendly headless CMS built by [Further](https://gofurther.digital).

---

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

[](#installation)

It's as easy as:

```
composer require further/chronos

```

After composer has run add following line to the providers\[\] array in `app/config/app.php`:

```
...
Chronos\ChronosServiceProvider::class,
...
```

### Local repositories

[](#local-repositories)

Chronos depends on a forked legacy package which is not available on Packagist. To install it, add the following to your composer.json:

```
"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/teamfurther/laravelcollective-html"
    }
],
```

### Install dependencies

[](#install-dependencies)

You also need to add the service providers for all the dependencies in `app/config/app.php`:

```
...
Collective\Html\HtmlServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,
Lavary\Menu\ServiceProvider::class,
...
```

And also add the class aliases in the `$aliases[]` array:

```
...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
'Image' => Intervention\Image\Facades\Image::class,
'Menu' => Lavary\Menu\Facade::class,
...
```

### Publish assets

[](#publish-assets)

Next we need to publish all the assets belonging to Chronos:

```
php artisan vendor:publish --tag=public

```

Note 1: if you would like to overwrite existing files, use the --force switch Note 2: if you wish to only publish Chronos assets, you might want to use the --provider flag.

### Prepare User model

[](#prepare-user-model)

Next we need to prepare the User model to work with Chronos.

1. Add the ChronosUser trait to our model:

```
...
use ChronosUser;
...
```

2. Next, add some values to the appends\[\] array:

```
...
/**
 * The accessors to append to the model's array form.
 *
 * @var array
 */
protected $appends = ['endpoints', 'name'];
...
```

### Set APP\_URL

[](#set-app_url)

Chronos requires you to set APP\_URL in your .env file

```
APP_URL=https://chronos.ro

```

### Run migrations

[](#run-migrations)

Almost done. We need to run the migrations and seed our database:

```
php artisan migrate
php artisan db:seed --class=\\Chronos\\Database\\Seeders\\DatabaseSeeder

```

### Set up task scheduling

[](#set-up-task-scheduling)

Chronos runs a couple of tasks in the background, so you will need to set up task scheduling by adding the following to your Cron entries on your server:

```
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1

```

### Install and configure Sanctum

[](#install-and-configure-sanctum)

1. Publish Sanctum configuration

```
php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider"

```

2. Run migration if you haven't done so yet

```
php artisan migrate

```

---

P.S.: You're awesome for being on this page

###  Health Score

48

—

FairBetter than 94% of packages

Maintenance69

Regular maintenance activity

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity91

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 50% 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 ~67 days

Recently: every ~362 days

Total

51

Last Release

28d ago

Major Versions

v2.5.2 → v3.02022-08-01

PHP version history (6 changes)v2.0PHP &gt;=5.6.4

v2.2.7PHP &gt;=7.0

v2.3PHP &gt;=7.2

v3.0PHP &gt;=8.0

v3.1PHP &gt;=8.1

v3.2PHP &gt;=8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/898ce9c81a1d57129720d54f435c1439dde51a6a04c402172cc96881ca036c7c?d=identicon)[further](/maintainers/further)

---

Top Contributors

[![csongorur](https://avatars.githubusercontent.com/u/30229029?v=4)](https://github.com/csongorur "csongorur (3 commits)")[![ilpet](https://avatars.githubusercontent.com/u/18186867?v=4)](https://github.com/ilpet "ilpet (3 commits)")

---

Tags

laravelcmsheadlessprometheuschronosfurtherfurtherdigitalsolutions

### Embed Badge

![Health badge](/badges/further-chronos/health.svg)

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

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.8k2.5k](/packages/unopim-unopim)[bagisto/bagisto

Bagisto Laravel E-Commerce

28.0k175.2k9](/packages/bagisto-bagisto)[krayin/laravel-crm

Krayin CRM

23.7k33.9k1](/packages/krayin-laravel-crm)[code16/sharp

Laravel Content Management Framework

79466.1k10](/packages/code16-sharp)

PHPackages © 2026

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