PHPackages                             200mph/myxa-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. 200mph/myxa-framework

ActiveLibrary[Framework](/categories/framework)

200mph/myxa-framework
=====================

The core framework package for Myxa, a lightweight and flexible AI-powered PHP framework.

1.1.0(1mo ago)01031MITPHPPHP &gt;=8.4CI passing

Since Apr 8Pushed 1mo agoCompare

[ Source](https://github.com/200MPH/myxa-framework)[ Packagist](https://packagist.org/packages/200mph/myxa-framework)[ RSS](/packages/200mph-myxa-framework/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (10)Dependencies (20)Versions (13)Used By (1)

Myxa is a tiny, flexible, powerful, and quietly smart PHP Framework Powered by AI
=================================================================================

[](#myxa-is-a-tiny-flexible-powerful-and-quietly-smart-php-framework-powered-by-ai)

[![Coverage](https://camo.githubusercontent.com/6930d58d8729caccaf7d27fb8026132fb121a0cc1d546b72cbda55f39879af88/68747470733a2f2f696d672e736869656c64732e696f2f656e64706f696e743f75726c3d68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f3230306d70682f6d7978612d6672616d65776f726b2f6d61737465722f6261646765732f636f7665726167652e6a736f6e)](https://camo.githubusercontent.com/6930d58d8729caccaf7d27fb8026132fb121a0cc1d546b72cbda55f39879af88/68747470733a2f2f696d672e736869656c64732e696f2f656e64706f696e743f75726c3d68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f3230306d70682f6d7978612d6672616d65776f726b2f6d61737465722f6261646765732f636f7665726167652e6a736f6e)

Ultra-light, modern PHP framework built for speed, clarity, and extensibility. Inspired by nature. Built for developers. Powered by AI

Feature Docs
------------

[](#feature-docs)

Focused package documentation lives next to the relevant source folders:

- [Auth](./src/Auth/README.md)
- [Cache](./src/Cache/README.md)
- [Container](./src/Container/README.md)
- [Console](./src/Console/README.md)
- [Database Overview](./src/Database/README.md)
- [Migrations](./src/Database/Migrations/README.md)
- [Schema Builder and Reverse Engineering](./src/Database/Schema/README.md)
- [Query Builder](./src/Database/Query/README.md)
- [Models](./src/Database/Model/README.md)
- [Events](./src/Events/README.md)
- [HTTP](./src/Http/README.md)
- [Logging](./src/Logging/README.md)
- [Mongo](./src/Mongo/README.md)
- [Middleware](./src/Middleware/README.md)
- [Queue](./src/Queue/README.md)
- [Rate Limiting](./src/RateLimit/README.md)
- [Redis](./src/Redis/README.md)
- [Routing](./src/Routing/README.md)
- [Storage](./src/Storage/README.md)
- [Support and Facades](./src/Support/README.md)
- [Validation](./src/Validation/README.md)

Install via Composer
--------------------

[](#install-via-composer)

```
composer require 200mph/myxa-framework
```

Docker Setup
------------

[](#docker-setup)

The repository includes a PHP 8.4 CLI container plus MySQL, PostgreSQL, Redis, and MongoDB containers for execution-level integration tests.

### Install Composer dependencies

[](#install-composer-dependencies)

```
docker compose run --rm php composer install
```

### Run unit tests

[](#run-unit-tests)

```
docker compose run --rm php composer test:unit
```

### Run unit test coverage

[](#run-unit-test-coverage)

The PHP CLI image ships with `PCOV`, a lightweight code coverage driver.

```
docker compose build php
docker compose run --rm php composer test:coverage
```

For an HTML report:

```
docker compose run --rm php composer test:coverage:html
```

### Start containers

[](#start-containers)

```
docker compose up -d
```

### Enter running containers

[](#enter-running-containers)

```
docker exec -it myxa-php-cli /bin/bash
docker exec -it myxa-mysql /bin/bash
docker exec -it myxa-postgres /bin/bash
docker exec -it myxa-mongo /bin/bash
```

MySQL credentials are loaded from:

- `./docker/mysql/.env`

PostgreSQL credentials are loaded from:

- `./docker/postgres/.env`

Default host in Docker network:

- `mysql`
- `postgres`
- `redis`
- `mongo`

Default exposed host port:

- `3306`
- `5432`
- `6379`
- `27017`

On Linux/macOS, build the PHP image with your local UID/GID:

```
UID=$(id -u) GID=$(id -g) docker compose build php
```

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance93

Actively maintained with recent releases

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 63.3% 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 ~4 days

Total

11

Last Release

36d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16258307?v=4)[Wojtek](/maintainers/200MPH)[@200MPH](https://github.com/200MPH)

---

Top Contributors

[![200MPH](https://avatars.githubusercontent.com/u/16258307?v=4)](https://github.com/200MPH "200MPH (19 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (11 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/200mph-myxa-framework/health.svg)

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k532.1M19.4k](/packages/laravel-framework)[symfony/symfony

The Symfony PHP framework

31.4k86.9M2.2k](/packages/symfony-symfony)[cakephp/cakephp

The CakePHP framework

8.8k19.1M1.7k](/packages/cakephp-cakephp)[bref/bref

Bref is a framework to write and deploy serverless PHP applications on AWS Lambda.

3.4k10.2M61](/packages/bref-bref)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[tempest/framework

The PHP framework that gets out of your way.

2.2k31.1k12](/packages/tempest-framework)

PHPackages © 2026

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