PHPackages                             affahiyaaaaaak-code/aspeedphp - 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. affahiyaaaaaak-code/aspeedphp

ActiveProject[Framework](/categories/framework)

affahiyaaaaaak-code/aspeedphp
=============================

A lightweight, fast, and modern PHP MVC framework.

v1.0.0(1mo ago)04MITPHPPHP ^8.2

Since Jul 10Pushed 1mo agoCompare

[ Source](https://github.com/affahiyaaaaaak-code/AspeedPHP)[ Packagist](https://packagist.org/packages/affahiyaaaaaak-code/aspeedphp)[ Docs](https://github.com/affahiyaaaaaak-code/AspeedPHP)[ RSS](/packages/affahiyaaaaaak-code-aspeedphp/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependenciesVersions (2)Used By (0)

🚀 AspeedPHP
===========

[](#-aspeedphp)

> Lightweight • Fast • Modern • MVC PHP Framework

AspeedPHP adalah framework PHP berbasis MVC yang ringan, cepat, dan mudah dipelajari. Framework ini dibuat untuk mempermudah pengembangan aplikasi web dengan struktur yang bersih, fitur modern, dan CLI bawaan.

---

Features
========

[](#features)

- MVC Architecture
- Routing System
- Controller
- Model
- View
- Multiple Layout
- Middleware
- Database (PDO)
- Migration
- Seeder
- CLI Command
- Environment (.env)
- Request
- Response
- Session
- Validation

---

Requirements
============

[](#requirements)

- PHP 8.2+
- Composer
- MySQL / MariaDB

---

Installation
============

[](#installation)

Clone Repository

```
git clone https://github.com/andhikavardin-design/AspeedPHP.git
```

Masuk Folder

```
cd AspeedPHP
```

Install Dependency

```
composer install
```

Jalankan Server

```
php aspeed serve
```

Buka Browser

```
http://localhost:8000

```

---

Project Structure
=================

[](#project-structure)

```
AspeedPHP
│
├── app
│   ├── Controllers
│   ├── Middleware
│   ├── Models
│   ├── Views
│   │   └── Layouts
│   └── Exceptions
│
├── bootstrap
├── config
├── console
├── core
├── database
├── public
├── routes
├── storage
├── vendor
│
├── .env
├── composer.json
├── aspeed
└── README.md

```

---

Routing
=======

[](#routing)

```
use App\Controllers\HomeController;

$router->get('/', [HomeController::class,'index']);

$router->get('/about',[HomeController::class,'about']);
```

Middleware

```
$router->get('/dashboard',[DashboardController::class,'index'])
       ->middleware('Auth');
```

---

Controller
==========

[](#controller)

Membuat Controller

```
php aspeed make:controller Home
```

Contoh

```
class HomeController extends Controller
{
    public function index()
    {
        $this->view('welcome');
    }
}
```

---

View
====

[](#view)

```
$this->view('welcome');
```

Mengirim Data

```
$this->view('welcome',[
    'title'=>'Welcome'
]);
```

Layout

```
$this->view(
    'welcome',
    [
        'title'=>'Welcome'
    ],
    'master'
);
```

---

Model
=====

[](#model)

```
php aspeed make:model User
```

---

Middleware
==========

[](#middleware)

```
php aspeed make:middleware Auth
```

---

Migration
=========

[](#migration)

```
php aspeed make:migration create_users
```

Jalankan

```
php aspeed migrate
```

---

Seeder
======

[](#seeder)

```
php aspeed make:seeder User
```

Jalankan

```
php aspeed db:seed
```

---

Database
========

[](#database)

Create Database

```
php aspeed db:create database_name
```

Drop Database

```
php aspeed db:drop database_name
```

List Database

```
php aspeed db:list
```

---

Cache
=====

[](#cache)

```
php aspeed route:clear
php aspeed config:clear
php aspeed view:clear
php aspeed optimize:clear
```

---

CLI
===

[](#cli)

```
php aspeed serve

php aspeed migrate

php aspeed make:controller

php aspeed make:model

php aspeed make:view

php aspeed make:middleware

php aspeed make:migration

php aspeed make:seeder

php aspeed db:create

php aspeed db:drop

php aspeed db:list

php aspeed db:seed

php aspeed route:list

php aspeed route:clear

php aspeed config:clear

php aspeed view:clear

php aspeed optimize:clear

```

---

Roadmap
=======

[](#roadmap)

- Authentication
- Authorization
- ORM
- Template Engine
- Mail
- Queue
- Event
- Service Provider
- Helper
- Composer Installer
- Package System
- Error Handler
- Testing

---

Repository
==========

[](#repository)

---

License
=======

[](#license)

MIT License

Copyright © 2026 AspeedPHP

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance90

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity46

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

49d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7ebcd4753684309214309c2c5bb50d9f77466d6722584f56e2aafa2d6b3fff26?d=identicon)[affahiyaaaaaak-code](/maintainers/affahiyaaaaaak-code)

---

Top Contributors

[![affahiyaaaaaak-code](https://avatars.githubusercontent.com/u/242117271?v=4)](https://github.com/affahiyaaaaaak-code "affahiyaaaaaak-code (4 commits)")

---

Tags

phpframeworkmvcaspeedphp

### Embed Badge

![Health badge](/badges/affahiyaaaaaak-code-aspeedphp/health.svg)

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

###  Alternatives

[mirekmarek/php-jet

PHP Jet is modern, powerful, real-life proven, really fast and secure, small and light-weight framework for PHP8 with great clean and flexible modular architecture containing awesome developing tools. No magic, just clean software engineering.

241.3k](/packages/mirekmarek-php-jet)

PHPackages © 2026

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