PHPackages                             fusionfw/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. fusionfw/framework

ActiveProject

fusionfw/framework
==================

Fusion Framework - Simple to Start, Powerful to Scale. Hybrid MVC, Modular Architecture, Service Layer, and Enterprise Queue System.

01PHP

Since Sep 30Pushed 7mo agoCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Fusion Framework
================

[](#fusion-framework)

**Fusion Framework** adalah framework PHP modern dengan arsitektur modular yang powerful. Dibangun dengan PHP 8.0+ dan mengikuti standar PSR-4 untuk performa dan maintainability yang optimal.

🚀 Tentang Fusion Framework
--------------------------

[](#-tentang-fusion-framework)

Fusion Framework adalah framework PHP modern yang dirancang untuk developer yang menginginkan:

- **Modern PHP 8.0+** - Menggunakan fitur terbaru PHP untuk performa optimal
- **PSR-4 Compliant** - Standar autoloading yang professional
- **Modular Architecture** - Arsitektur yang scalable dan maintainable
- **Enterprise Queue System** - 6 driver queue untuk berbagai kebutuhan
- **Clean MVC Pattern** - Controller, Model, Service, Repository yang mudah dipahami
- **Comprehensive CLI** - Command line tools yang powerful
- **Production Ready** - Siap untuk development hingga production

Contoh konfigurasi `.env` dasar:

```
APP_NAME=FusionFramework
APP_ENV=development
APP_DEBUG=true
APP_URL=http://localhost
QUEUE_DRIVER=file

```

🎯 Fitur Utama
-------------

[](#-fitur-utama)

### **Core Features:**

[](#core-features)

- **Modern PHP 8.0+** - Menggunakan fitur terbaru PHP
- **PSR-4 Autoloading** - Standar professional untuk autoloading
- **Modular Architecture** - Arsitektur yang scalable dan maintainable
- **Clean MVC Pattern** - Controller, Model, Service, Repository
- **Enterprise Queue System** - 6 driver queue (sync, file, redis, beanstalk, rabbitmq, sqs)
- **Comprehensive CLI** - Command line tools yang powerful
- **Database Migrations** - Sistem migrasi yang robust
- **Caching System** - Multi-driver cache support
- **Authentication** - Complete auth system
- **Plugin System** - Extensible architecture
- **Security Features** - CSRF, XSS protection, input validation
- **Performance Optimized** - Built-in benchmarking tools

📊 System Requirements
---------------------

[](#-system-requirements)

RequirementMinimumRecommended**PHP Version**8.0+8.1+**Memory**128MB256MB+**Extensions**PDO, JSON, OpenSSLAll standard extensions**Database**MySQL 5.7+, SQLite 3, PostgreSQL 10+MySQL 8.0+, PostgreSQL 13+**OS**Linux, macOS, WindowsLinux (production)**Web Server**Apache, NginxNginx (production)🚀 Quick Start
-------------

[](#-quick-start)

### **Installation**

[](#installation)

1. **Clone Repository**

```
git clone https://github.com/mwpn/fusion-framework.git
cd fusion-framework
```

2. **Install Dependencies**

```
composer install
```

3. **Environment Setup**

```
cp env.example .env
# Edit .env sesuai kebutuhan Anda
php fusion key:generate
```

4. **Database Setup** (Optional)

```
php fusion migrate
php fusion db:seed
```

5. **Start Development Server**

```
php fusion serve
```

6. **Access Application**

```
http://localhost:8000

```

### **Application Initialization**

[](#application-initialization)

```
