PHPackages                             sikamy/sephy-framework - 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. [Database &amp; ORM](/categories/database)
4. /
5. sikamy/sephy-framework

ActiveLibrary[Database &amp; ORM](/categories/database)

sikamy/sephy-framework
======================

Simple PHP-Framework

14PHP

Since Jun 6Pushed 9y ago2 watchersCompare

[ Source](https://github.com/sikamy/sephy-framework)[ Packagist](https://packagist.org/packages/sikamy/sephy-framework)[ RSS](/packages/sikamy-sephy-framework/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (6)Used By (0)

Sephy-Simple-PHP-Framework
==========================

[](#sephy-simple-php-framework)

[![StyleCI](https://camo.githubusercontent.com/aa0a20fcc447cc9366e0e5c9fc702f1952b76fc8d39cf35f8df348d1dfaea52e/68747470733a2f2f7374796c6563692e696f2f7265706f732f36303438343034312f736869656c64)](https://styleci.io/repos/60484041)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/bb72bcaa08c0203a78d56171fc2a6ab5eddf3f5bb35a6338ae8fa1e26f92d7b1/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73696b616d792f73657068792d6672616d65776f726b2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/sikamy/sephy-framework/?branch=master)[![Build Status](https://camo.githubusercontent.com/37713d37dbed4f7e3276eed258921cfe11b421323b190dd673eee1104a294437/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73696b616d792f73657068792d6672616d65776f726b2f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/sikamy/sephy-framework/build-status/master)

A simple php framework using MVC structure and components of Symfony and Illuminate.

Some of the features supported by Sephy:

- Routing.
- Middlewares (route specific middlewares and global middlewares).
- Eloquent ORM.
- Views with the Blade and Twig templating engine.
- Easy mailing with the build-in mail class!
- Session driver for easy use of sessions.

There are lots of features that have yet to be implemented, if you have any good ideas, feel free to submit a pull request!

Get started now!

```
git clone https://github.com/adrielov/sephy-framework.git

cd sephy-framework

composer install

```

Controllers &amp; Views (Blade)
-------------------------------

[](#controllers--views-blade)

Blade is the simple, yet powerful templating engine provided with Laravel. Unlike other popular PHP templating engines, Blade does not restrict you from using plain PHP code in your views.

```
class HomeController extends Controller
{
	public function index() {
		$this->params['title'] = "Sephy Simple PHP Framework";
		$this->view('home.index',$this->params);
	}
}

```

Routes
------

[](#routes)

Configure yours routes in App/config.php

```
  $router->add('/', 'HomeController::index');
  $router->get('/profile', 'UserController::profile');
  $router->get('/profile/{id}', 'UserController::profile',[
	'id' => '[0-9]'
  ]);

```

Route Groups Prefix
-------------------

[](#route-groups-prefix)

The prefix group attribute may be used to prefix each route in the group with a given URI, like /dashboard/home

```
$router->prefix('dashboard', function (Core\Router $router) {
        $router->add('/home', 'DashboardController::index');
        $router->add('/config', 'DashboardController::config');
});

```

Route Groups &amp; Middleware
-----------------------------

[](#route-groups--middleware)

Middleware are filters to your routes, and often used for modifying or authenticating requests.

```
$router->group(['middleware' => ['auth']], function (Core\Router $router) {

    $router->add('/profile', 'UserController::profile');

});

```

Authors
-------

[](#authors)

- [Adriel Oliveira](http://adrielov.com.br) ([Github](https://github.com/adrielov)) Creator of Sephy.

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

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.

### Community

Maintainers

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

---

Top Contributors

[![adrielov](https://avatars.githubusercontent.com/u/5077027?v=4)](https://github.com/adrielov "adrielov (9 commits)")

---

Tags

bladeeloquentmiddlewaremvcphp-frameworktemplate-engine

### Embed Badge

![Health badge](/badges/sikamy-sephy-framework/health.svg)

```
[![Health](https://phpackages.com/badges/sikamy-sephy-framework/health.svg)](https://phpackages.com/packages/sikamy-sephy-framework)
```

###  Alternatives

[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k116.5M113](/packages/jdorn-sql-formatter)[propel/propel1

Propel is an open-source Object-Relational Mapping (ORM) for PHP5.

8351.6M87](/packages/propel-propel1)

PHPackages © 2026

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