PHPackages                             satnin/cakeflow - 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. satnin/cakeflow

ActiveLibrary[Framework](/categories/framework)

satnin/cakeflow
===============

A CakePhp-like dispatcher for Laravel

v1.0.0(1y ago)13MITPHPPHP &gt;=8.0

Since Feb 27Pushed 1y ago1 watchersCompare

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

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

Cakeflow
========

[](#cakeflow)

A subset of CakePhp like functionalities for Laravel ! You can use it to migrate smoothly

Installation
============

[](#installation)

---

Run this command to install it via packagist

```
composer require satnin/cakeflow
```

Config
======

[](#config)

After installation, you need to **work through these steps** to start using Cakeflow

### 1. Register Cakeflow Service provider

[](#1--register-cakeflow-service-provider)

```
// bootstrap/providers.php
return [
    App\Providers\AppServiceProvider::class,
    //Add the line bellow
    \cakeflow\Providers\CakeflowServiceProvider::class
];
```

### 2. Make your controllers extend Cakeflow Base controller

[](#2--make-your-controllers-extend-cakeflow-base-controller)

```
// app/Http/Controllers/Controller.php
abstract class Controller extends \cakeflow\Controllers\Controller
{
}
```

### 3. Design your own component classes

[](#3--design-your-own-component-classes)

```
//  app/Http/Controllers/Components/MyComponent.php
class MyComponent extends \cakeflow\Controllers\Components\Component
{
    public function startup(EventInterface|null $event = null)
    {
        // Startup logic here for example
    }
}
```

### 4. Start implementing cake workflow in your controllers

[](#4--start-implementing-cake-workflow-in-your-controllers)

```
class TestController extends Controller
{
    public function initialize()
    {
        parent::initialize();
        $this->loadComponent(AuthComponent::class);
    }
    public function beforeFilter(\cakeflow\Dispatchers\Events\EventInterface $event)
    {
        parent::beforeFilter($event); // TODO: Change the autogenerated stub
    }
    public function beforeRender(\cakeflow\Dispatchers\Events\EventInterface $event)
    {
        parent::beforeRender($event); // TODO: Change the autogenerated stub
    }
    //...
}
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance44

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

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

446d ago

### Community

Maintainers

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

---

Top Contributors

[![satnin](https://avatars.githubusercontent.com/u/110102854?v=4)](https://github.com/satnin "satnin (7 commits)")

### Embed Badge

![Health badge](/badges/satnin-cakeflow/health.svg)

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

###  Alternatives

[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[ecotone/laravel

Laravel integration for Ecotone

21307.6k3](/packages/ecotone-laravel)

PHPackages © 2026

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