PHPackages                             fyre/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. [Framework](/categories/framework)
4. /
5. fyre/framework

ActiveLibrary[Framework](/categories/framework)

fyre/framework
==============

FyrePHP framework for MVC web apps with PSR-compliant HTTP, routing, ORM, cache, queue, and CLI tooling.

00PHPCI passing

Since Mar 18Pushed 3mo agoCompare

[ Source](https://github.com/elusivecodes/FyreFramework)[ Packagist](https://packagist.org/packages/fyre/framework)[ RSS](/packages/fyre-framework/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

FyreFramework
=============

[](#fyreframework)

[![CI](https://github.com/elusivecodes/FyreFramework/actions/workflows/ci.yml/badge.svg)](https://github.com/elusivecodes/FyreFramework/actions/workflows/ci.yml)[![Codecov](https://camo.githubusercontent.com/8b52ecdafe738efc1da97cb1896021777e337245c86fd3482b9d34a46e468f1e/68747470733a2f2f636f6465636f762e696f2f6769746875622f656c7573697665636f6465732f467972654672616d65776f726b2f6272616e63682f6d61696e2f67726170682f62616467652e737667)](https://app.codecov.io/github/elusivecodes/FyreFramework)[![Packagist Version](https://camo.githubusercontent.com/e64667a25a39509c399023c03bfdf44a375e96c260ed1c99db7238864f45c2d8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f667972652f6672616d65776f726b2e737667)](https://packagist.org/packages/fyre/framework)[![Packagist Downloads](https://camo.githubusercontent.com/ec3374d977e240128c6c47928f73dbcd6f8ef16500e69002ba377a2c2b6147c8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f667972652f6672616d65776f726b2e737667)](https://packagist.org/packages/fyre/framework)[![GitHub License](https://camo.githubusercontent.com/88b64e571df77a4b78d868716b220fd79201e85b9890a9185011186fb7bd956b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f656c7573697665636f6465732f467972654672616d65776f726b2e737667)](LICENSE)

FyreFramework is a modular PHP framework package for HTTP apps, CLI tools, data access, views, caching, queues, and more.

This repository contains the `fyre/framework` package. Install it into your application with Composer and use the pieces you need, or build on the default `Engine` runtime when you want the framework's common services wired together.

Table of Contents
-----------------

[](#table-of-contents)

- [Overview](#overview)
- [Requirements](#requirements)
- [Installation](#installation)
- [Getting started](#getting-started)
- [Documentation](#documentation)
- [Development](#development)
- [License](#license)

Overview
--------

[](#overview)

Fyre keeps the framework split into focused subsystems, so you can adopt one piece at a time or use them together in a conventional application stack.

Common use cases include:

- Building web applications with PSR-7 requests, responses, middleware, and routing
- Working with SQL databases through the query layer and ORM
- Rendering templates and forms on the server
- Running background work with queues and workers
- Adding shared services such as caching, logging, mail, events, and validation

Requirements
------------

[](#requirements)

- PHP &gt;= 8.5
- Required PHP extensions: `intl`, `mbstring`
- For database connections: `ext-pdo` plus the matching PDO driver such as `pdo_mysql`, `pdo_pgsql`, or `pdo_sqlite`

Optional (depending on the parts you use):

- `ext-curl` (HTTP client requests)
- `ext-memcached` (Memcached cache)
- `ext-openssl` (OpenSSL encryption handler)
- `ext-pcntl` (queue workers and async promises)
- `ext-redis` (Redis cache and queue handlers)

Fyre has no third-party runtime dependencies beyond PSR interfaces (`psr/*`).

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

[](#installation)

Install the package with Composer:

```
composer require fyre/framework
```

Getting started
---------------

[](#getting-started)

A common starting point is to extend `Fyre\Core\Engine`, register the application instance, and add your middleware, routes, and other app services around it.

```
use Fyre\Core\Engine;
use Fyre\Core\Loader;
use Fyre\Http\MiddlewareQueue;

final class Application extends Engine
{
    public function middleware(MiddlewareQueue $queue): MiddlewareQueue
    {
        return $queue
            ->add('error')
            ->add('router')
            ->add('bindings');
    }
}

$loader = (new Loader())
    ->loadComposer('vendor/autoload.php')
    ->register();

$app = new Application($loader);
Application::setInstance($app);
```

Your application repository decides the entry points, bootstrap flow, and project layout around this package.

For a fuller walkthrough, start with [Core](docs/core/index.md), then [Engine](docs/core/engine.md).

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

[](#documentation)

Start with the [documentation index](docs/index.md), or jump to the area you need:

- **Core services**: [Core](docs/core/index.md) -&gt; [Container](docs/core/container.md) -&gt; [Engine](docs/core/engine.md)
- **HTTP applications**: [HTTP](docs/http/index.md) -&gt; [Routing](docs/routing/index.md)
- **Data and persistence**: [Database](docs/database/index.md) -&gt; [ORM](docs/orm/index.md)
- **Auth and security**: [Auth](docs/auth/index.md) -&gt; [Security](docs/security/index.md)
- **Shared services**: [Events](docs/events/index.md) -&gt; [Logging](docs/logging/index.md) -&gt; [Mail](docs/mail/index.md) -&gt; [Cache](docs/cache/index.md) -&gt; [Queue](docs/queue/index.md)
- **Rendering and forms**: [View](docs/view/index.md) -&gt; [Form](docs/form/index.md)
- **Tooling and tests**: [Console](docs/console/index.md) -&gt; [Testing](docs/testing/index.md) -&gt; [Utilities](docs/utilities/index.md)

Development
-----------

[](#development)

Install dev dependencies and run the main checks:

```
composer install
composer cs
composer phpstan
composer phpstan-tests
composer test:core
```

Integration suites are available for services defined in `docker-compose.yml`:

```
docker compose up -d mysql
composer test:mysql
```

Available service-backed suites include `mariadb`, `mysql`, `postgres`, `redis`, `memcached`, and `smtp`.

License
-------

[](#license)

FyreFramework is released under the [MIT License](LICENSE).

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance55

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity12

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.

### Community

Maintainers

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

---

Top Contributors

[![elusivecodes](https://avatars.githubusercontent.com/u/18050480?v=4)](https://github.com/elusivecodes "elusivecodes (41 commits)")

### Embed Badge

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

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

###  Alternatives

[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k104.3M829](/packages/laravel-socialite)[laravel/dusk

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

1.9k38.6M289](/packages/laravel-dusk)[pinguo/php-msf

Pinguo Micro Service Framework For PHP

1.7k4.2k](/packages/pinguo-php-msf)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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