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

ActiveLibrary[Framework](/categories/framework)

fluxa/fluxa
===========

Ultra-minimalist, high-performance API micro-framework for PHP 8.3+

1.0.0(2mo ago)10MITPHPPHP &gt;=8.3

Since Mar 2Pushed 2mo agoCompare

[ Source](https://github.com/Refaltor77/Fluxa)[ Packagist](https://packagist.org/packages/fluxa/fluxa)[ RSS](/packages/fluxa-fluxa/feed)WikiDiscussions main Synced 1mo ago

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

Fluxa
=====

[](#fluxa)

**Ultra-minimalist, high-performance API micro-framework for PHP 8.3+**

Fluxa is a modern micro-framework designed for building JSON APIs with extreme simplicity, strict typing, and zero magic. It's not a Laravel clone — it's a sharp, focused tool for developers who value clarity over convention.

Philosophy
----------

[](#philosophy)

- **Minimal by design** — No bloat, no hidden complexity
- **Strict typing everywhere** — `declare(strict_types=1)` in every file
- **No magic** — No magic methods, no hidden service containers, no auto-wiring surprises
- **Performance first** — Lean dependency tree, fast routing, minimal overhead
- **Explicit over implicit** — You see exactly what happens

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

[](#requirements)

- PHP 8.3+
- Composer

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

[](#installation)

### New project (recommended)

[](#new-project-recommended)

```
composer create-project fluxa/skeleton my-api
cd my-api
composer serve
```

This creates a ready-to-use project with routing, a controller, CORS middleware, and configuration — similar to `laravel new`.

### Add to existing project

[](#add-to-existing-project)

```
composer require fluxa/fluxa
vendor/bin/fluxa install
```

Quick Start
-----------

[](#quick-start)

### Minimal API

[](#minimal-api)

```
