PHPackages                             webrium/webrium - 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. webrium/webrium

ActiveProject[Framework](/categories/framework)

webrium/webrium
===============

PHP Framework

3.0.1(1w ago)122483MITPHPPHP &gt;=8.1.0

Since May 29Pushed 1w ago1 watchersCompare

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

READMEChangelog (10)Dependencies (8)Versions (47)Used By (0)

 [![Webrium Framework](https://repository-images.githubusercontent.com/267562756/f844fe22-c086-4bfd-a20e-ee0e111ceb28)](https://repository-images.githubusercontent.com/267562756/f844fe22-c086-4bfd-a20e-ee0e111ceb28)Webrium
=======

[](#webrium)

### Fast, Lightweight PHP Framework for Modern Web Applications

[](#fast-lightweight-php-framework-for-modern-web-applications)

[![Latest Stable Version](https://camo.githubusercontent.com/6381a92ac16ba3ae93f9b80596682dadb42e2716c035e66731a8d7d84e7362eb/68747470733a2f2f706f7365722e707567782e6f72672f7765627269756d2f7765627269756d2f76)](https://packagist.org/packages/webrium/webrium)[![Total Downloads](https://camo.githubusercontent.com/ba711f6458a2dc17a51dfa7c476d990e9f4eab9c045498f95e03523c56d104f2/68747470733a2f2f706f7365722e707567782e6f72672f7765627269756d2f7765627269756d2f646f776e6c6f616473)](https://packagist.org/packages/webrium/webrium)[![License](https://camo.githubusercontent.com/db1a109e73f3c5ff6765b3e60d8fad1fa7f539d62cd4e61f10948d73bc3924b1/68747470733a2f2f706f7365722e707567782e6f72672f7765627269756d2f7765627269756d2f6c6963656e7365)](https://packagist.org/packages/webrium/webrium)

**Fast · Modular · Elegant**

---

About Webrium
-------------

[](#about-webrium)

**Webrium** is a PHP web application framework built for developers who value simplicity, speed, and clean structure. It provides everything you need to build web applications and REST APIs without unnecessary complexity.

✔ Fast and lightweight
✔ MVC architecture
✔ Powerful routing system
✔ Blade-compatible templating
✔ Built-in database query builder (FoxDB)
✔ Vite + TailwindCSS configured out of the box

---

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

[](#installation)

Create a new project using Composer:

```
composer create-project webrium/webrium my-app
```

Install frontend dependencies:

```
cd my-app && npm install
```

### Start the Development Server

[](#start-the-development-server)

```
npm run dev
```

Then open your browser at:

```
http://localhost:8000

```

---

Documentation
-------------

[](#documentation)

### 🚀 Getting Started

[](#-getting-started)

TopicDescription[Views](https://github.com/webrium/view)Rendering views and Templating syntax : loops, conditions, layouts### 🌐 Routing &amp; Request

[](#-routing--request)

TopicDescription[Routing](https://github.com/webrium/core/wiki/Route)Define GET, POST, PUT, DELETE routes, groups, middleware, named routes[Helper Functions](https://github.com/webrium/core/wiki/Helpers)Global shortcuts: `url()`, `redirect()`, `input()`, `env()`, and more[URL Utilities](https://github.com/webrium/core/wiki/Url)Generate and manipulate URLs[Header Management](https://github.com/webrium/core/wiki/Header)Control HTTP response headers[HTTP Client](https://github.com/webrium/core/wiki/HttpClient)Make outgoing HTTP requests with a fluent API### 🛡️ Security &amp; Validation

[](#️-security--validation)

TopicDescription[Form Validation](https://github.com/webrium/core/wiki/From-Validator)Validate and sanitize user input[Hash &amp; Password](https://github.com/webrium/core/wiki/Hash)Secure password hashing, HMAC, tokens, and UUIDs[JWT](https://github.com/webrium/core/wiki/JWT-Documentation)Issue and verify JSON Web Tokens for API auth### 🗄️ Database

[](#️-database)

TopicDescription[FoxDB — Query Builder](https://github.com/webrium/foxdb)Fluent query builder and ORM for database operations### 🛠️ Files &amp; Storage

[](#️-files--storage)

TopicDescription[File Manager](https://github.com/webrium/core/wiki/File)Read, write, stream, download files and manage directories[File Upload](https://github.com/webrium/core/wiki/Upload)Handle multipart file uploads safely[Session Manager](https://github.com/webrium/core/wiki/Session)Session data, flash messages, and counters### ⚙️ Advanced

[](#️-advanced)

TopicDescription[Email](https://github.com/webrium/core/wiki/Email-Documentation)Send emails from your application[Console](https://github.com/webrium/console)CLI commands and task automation---

Quick Example
-------------

[](#quick-example)

**routes/web.php**

```
use Webrium\Route;

Route::get('/', function () {
    return view('welcome');
});

Route::group(['prefix' => '/api', 'middleware' => 'AuthMiddleware@handle'], function () {
    Route::get('/users', 'UserController@index');
    Route::post('/users', 'UserController@store');
    Route::get('/users/{id}', 'UserController@show');
});
```

**app/Controllers/UserController.php**

```
class UserController
{
    public function index()
    {
        $users = User::all();
        return view('users.index', compact('users'));
    }

    public function show($id)
    {
        $user = User::find($id);
        return view('users.show', compact('user'));
    }
}
```

---

Core Library
------------

[](#core-library)

Webrium is powered by **[webrium/core](https://github.com/webrium/core)** — a standalone PHP component library that can also be used independently in any project.

---

License
-------

[](#license)

Webrium is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

55

—

FairBetter than 98% of packages

Maintenance98

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 99.4% 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 ~55 days

Recently: every ~103 days

Total

40

Last Release

7d ago

Major Versions

0.2.1 → 1.0.12022-09-10

1.0.11 → 2.0.02023-06-29

2.1.3 → 3.0.02025-12-04

PHP version history (5 changes)0.0.1PHP &gt;=7.0.0

0.2.0PHP &gt;=7.0.0 &lt;8

1.0.9PHP &gt;=7.3.0

2.0.6PHP &gt;=8.0.0

3.0.0PHP &gt;=8.1.0

### Community

Maintainers

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

---

Top Contributors

[![benkhalife](https://avatars.githubusercontent.com/u/31080657?v=4)](https://github.com/benkhalife "benkhalife (155 commits)")[![coswat](https://avatars.githubusercontent.com/u/97345827?v=4)](https://github.com/coswat "coswat (1 commits)")

---

Tags

php-frameworktelegram-frameworkwebriumwebrium-framework

### Embed Badge

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

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

###  Alternatives

[getkirby/cms

The Kirby core

1.5k535.5k352](/packages/getkirby-cms)[jelix/jelix

Jelix PHP framework

83101.5k4](/packages/jelix-jelix)[doppar/framework

The Doppar Framework

366.7k8](/packages/doppar-framework)[chameleon-system/chameleon-base

The Chameleon System core.

1026.5k3](/packages/chameleon-system-chameleon-base)[sproutcms/cms

Enterprise content management and framework

241.6k4](/packages/sproutcms-cms)

PHPackages © 2026

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