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

Abandoned → [https://github.com/kingjethro999/fireup-build](/?search=https%3A%2F%2Fgithub.com%2Fkingjethro999%2Ffireup-build)Library[Framework](/categories/framework)

fireup/fireup
=============

A modern, lightweight PHP framework designed for simplicity and ease of use. Now with advanced CLI generators and rich OpenAPI docs.

1.1.0(9mo ago)171MITPHPPHP ^8.0

Since Mar 28Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/kingjethro999/FireUp-Php-Framework)[ Packagist](https://packagist.org/packages/fireup/fireup)[ Docs](https://fire-updev.vercel.app)[ RSS](/packages/fireup-fireup/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (8)Versions (4)Used By (1)

🔥 FireUp PHP Framework
======================

[](#-fireup-php-framework)

A modern, lightweight PHP framework designed for simplicity and ease of use. FireUp makes PHP development faster and more enjoyable for beginners while providing powerful features for experienced developers.

🌟 What Makes FireUp Special?
----------------------------

[](#-what-makes-fireup-special)

### 1. Instant API Mode

[](#1-instant-api-mode)

Unlike other frameworks that require complex API setup, FireUp provides instant API endpoints for your models. Just create a model and get RESTful APIs automatically:

```
// Create a model
fireup create:model Product

// Instant API endpoints available:
// GET /api/products
// POST /api/products
// GET /api/products/{id}
// PUT /api/products/{id}
// DELETE /api/products/{id}
```

### 2. No ORM Lock-in

[](#2-no-orm-lock-in)

While Laravel forces Eloquent and CodeIgniter has limited options, FireUp gives you complete freedom:

- Use any database system
- Choose your own ORM
- Mix and match different database solutions
- Native PDO support with query builder

### 3. Built-in Plugin System

[](#3-built-in-plugin-system)

Unlike Laravel's package system or CodeIgniter's lack of plugins, FireUp offers:

- One-click plugin installation
- Plugin marketplace
- Automatic dependency management
- Hot-reload plugin support

### 4. Zero-Configuration Storage

[](#4-zero-configuration-storage)

Unlike WordPress requiring complex setup or Laravel needing multiple configs, FireUp provides:

- Automatic file organization
- Built-in CDN support
- Instant file upload handling
- No configuration needed

### 5. AI-Powered Development

[](#5-ai-powered-development)

Unique to FireUp:

- Code suggestions as you type
- Automatic code completion
- Smart error detection
- Performance optimization tips

### 6. Native WebSocket Support

[](#6-native-websocket-support)

Unlike other frameworks requiring additional packages:

- Built-in WebSocket server
- Real-time updates out of the box
- No additional setup needed
- Automatic client reconnection

### 7. Simple CLI Tools

[](#7-simple-cli-tools)

Unlike complex Artisan commands or limited CodeIgniter CLI:

- Intuitive command names
- Built-in help system
- Interactive prompts
- No memorization needed

### 8. Flexible Theming

[](#8-flexible-theming)

Unlike WordPress's rigid theme system or Laravel's lack of theming:

- Multiple active themes
- Theme inheritance
- Live theme switching
- Component-based theming

🔥 Why Choose FireUp Over Other Frameworks?
------------------------------------------

[](#-why-choose-fireup-over-other-frameworks)

FeatureFireUp ✅Laravel ❌CodeIgniter ❌WordPress ❌Simple Routing✅ Instant❌ Requires Controllers❌ Requires Controllers❌ Hardcoded URLsAuto REST API✅ Yes❌ Requires API Resource❌ Manual Setup❌ Plugins RequiredNo ORM Lock-in✅ Flexible❌ Forced Eloquent❌ Limited Query Builder❌ MySQL-OnlyPlugin System✅ Yes❌ No (Uses Packages)❌ No✅ YesNo Setup Storage✅ Yes❌ Requires Config❌ No Built-in❌ Requires PluginsAI Assistant✅ Yes❌ No❌ No❌ NoWebSockets✅ Built-in❌ Needs Laravel Echo❌ No❌ NoTheming System✅ Yes❌ No❌ No✅ YesCLI Simplicity✅ FireUp CLI❌ Artisan (Advanced)❌ Limited❌ WP-CLI (Complex)🚀 Features
----------

[](#-features)

- **Simple &amp; Lightweight MVC Structure**
- **Instant API Mode** - Auto-generate RESTful APIs
- **Ultra-Simple Database Handling**
- **Plugin System**
- **Performance Optimizations**
- **Built-in Security Features**
- **No-Setup File Storage**
- **AI-Powered Code Suggestions**
- **Native AJAX &amp; WebSockets Support**
- **Simple CLI Tools** - Like Laravel Artisan
- **Flexible Theming System**
- **JavaScript Integration** - Modern frontend tooling with Vite
- **Mobile-Ready APIs** - Auto-generate endpoints for React Native apps
- **Advanced CLI Generators** - Scaffold components with `make:` commands

📋 Requirements
--------------

[](#-requirements)

- PHP 8.0 or higher
- PDO PHP Extension
- JSON PHP Extension
- Mbstring PHP Extension

🛠 Installation
--------------

[](#-installation)

### Via Composer

[](#via-composer)

```
composer create-project fireup/fireup my-project
```

### Manual Installation

[](#manual-installation)

1. Clone the repository:

```
git clone https://github.com/yourusername/fireup.git
```

2. Install dependencies:

```
composer install
```

3. Copy the environment file:

```
cp .env.example .env
```

4. Generate application key:

```
fireup key:generate
```

🔧 XAMPP &amp; WAMP Integration
------------------------------

[](#-xampp--wamp-integration)

### 1. Install XAMPP/WAMP

[](#1-install-xamppwamp)

- Download [XAMPP](https://www.apachefriends.org/download.html) or [WAMP](https://www.wampserver.com/en/)
- Ensure Apache &amp; MySQL are running

### 2. Install FireUp in XAMPP/WAMP

[](#2-install-fireup-in-xamppwamp)

```
# Navigate to XAMPP htdocs
cd C:\xampp\htdocs
# Or WAMP www directory
cd C:\wamp64\www

# Create new FireUp project
composer create-project fireup/fireup myapp
```

### 3. Database Setup

[](#3-database-setup)

1. Open phpMyAdmin ()
2. Create new database (e.g., `fireup_db`)
3. Configure `.env` file:

```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=fireup_db
DB_USERNAME=root
DB_PASSWORD=
```

4. Run migrations:

```
fireup migrate
```

### 4. Running FireUp

[](#4-running-fireup)

#### Option 1: Using FireUp Server

[](#option-1-using-fireup-server)

```
cd C:\xampp\htdocs\myapp
fireup serve
```

Access at:

#### Option 2: Using XAMPP/WAMP Server

[](#option-2-using-xamppwamp-server)

1. Configure `.htaccess` in `public/`:

```
RewriteEngine On
RewriteBase /myapp/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L,QSA]
```

2. Access at:

### 5. Development Workflow

[](#5-development-workflow)

CommandDescription`fireup serve`Start development server with visual setup UI`fireup migrate`Create database tables`fireup golive`Prepare for production`fireup create:model`Create database models`fireup create:controller`Create controllers`fireup create:view`Create views### 6. Database Management

[](#6-database-management)

- Use phpMyAdmin for visual database management
- Access at:
- Create/modify tables visually
- Import/export data
- Manage users and permissions

🎯 Available Commands
--------------------

[](#-available-commands)

### Server Commands

[](#server-commands)

```
fireup serve              # Start the development server
fireup golive            # Prepare your project for production
```

### Model Commands

[](#model-commands)

```
fireup create:model      # Create a new model
fireup make:model        # Alias for create:model
```

### Controller Commands

[](#controller-commands)

```
fireup create:controller # Create a new controller
fireup make:controller   # Alias for create:controller
```

### View Commands

[](#view-commands)

```
fireup create:view       # Create a new view
fireup make:view         # Alias for create:view
```

### Database Commands

[](#database-commands)

```
fireup migrate          # Run database migrations
fireup rollback         # Rollback the last migration
fireup migrate:fresh    # Drop all tables and re-run migrations
```

### Route Commands

[](#route-commands)

```
fireup route:list       # List all registered routes
fireup route:clear      # Clear route cache
```

### Other Commands

[](#other-commands)

```
fireup key:generate     # Generate application key
fireup config:cache     # Cache configuration
fireup config:clear     # Clear configuration cache
fireup view:cache       # Cache views
fireup view:clear       # Clear view cache
```

### Frontend Commands

[](#frontend-commands)

```
fireup frontend init    # Initialize frontend setup
fireup frontend install # Install frontend dependencies
fireup frontend dev     # Start Vite dev server
fireup frontend build   # Build for production
fireup frontend watch   # Watch for changes
```

### Advanced Generators

[](#advanced-generators)

```
fireup make:command     # Create a new custom command
fireup make:middleware  # Create a new middleware
fireup make:policy      # Create a new policy
fireup make:seeder      # Create a new database seeder
fireup make:factory     # Create a new model factory
fireup make:event       # Create a new event class
```

### API Commands

[](#api-commands)

```
fireup api:mobile-ready # Prepare API for mobile apps
fireup route:list --docs # Generate OpenAPI documentation
```

📚 Documentation
---------------

[](#-documentation)

For detailed documentation, visit our [documentation website](https://fire-updev.vercel.app).

🔧 Command Options
-----------------

[](#-command-options)

### Model Creation

[](#model-creation)

```
fireup create:model User --table=users --fillable=name,email --hidden=password
```

### Controller Creation

[](#controller-creation)

```
fireup create:controller UserController --resource --model=User
```

### View Creation

[](#view-creation)

```
fireup create:view auth.login --layout=auth
```

### Server Options

[](#server-options)

```
fireup serve --host=0.0.0.0 --port=8080
```

📖 Advanced API Documentation
----------------------------

[](#-advanced-api-documentation)

FireUp now generates rich OpenAPI docs for your API:

- Path/query parameters are auto-detected (e.g., /api/v1/users/{id})
- Request/response schemas are included for each endpoint
- Endpoints requiring authentication are marked with Bearer token security
- Docs are available at  after running `fireup api:mobile-ready` or `fireup route:list --docs`

🚀 JavaScript Integration
------------------------

[](#-javascript-integration)

FireUp includes modern JavaScript tooling powered by Vite:

### Features

[](#features)

- **Hot Module Replacement** - Instant updates during development
- **ES6+ Support** - Use modern JavaScript features
- **Tailwind CSS** - Utility-first CSS framework
- **Axios Integration** - Built-in HTTP client for API calls
- **Event System** - Custom event handling
- **Utility Functions** - Notifications, formatting, debouncing

### Quick Start

[](#quick-start)

```
# Initialize frontend setup
fireup frontend init

# Install dependencies
fireup frontend install

# Start development
fireup frontend dev
```

### Global FireUp Object

[](#global-fireup-object)

```
// API calls
FireUp.api.get('/api/users')
  .then(response => console.log(response.data));

// Notifications
FireUp.utils.notify('Success!', 'success');

// Events
FireUp.events.on('user-logged-in', (user) => {
  console.log('User logged in:', user);
});
```

🏗 Project Structure
-------------------

[](#-project-structure)

```
my-project/
├── app/
│   ├── Controllers/
│   ├── Models/
│   └── Views/
├── config/
├── database/
│   └── migrations/
├── public/
│   ├── css/
│   ├── js/
│   └── images/
├── routes/
├── storage/
├── vendor/
├── .env
├── .gitignore
├── composer.json
└── index.php

```

🤝 Contributing
--------------

[](#-contributing)

We welcome contributions! Please see our [contributing guide](CONTRIBUTING.md) for details.

📄 License
---------

[](#-license)

FireUp is open-sourced software licensed under the [MIT license](LICENSE).

📞 Support
---------

[](#-support)

- Documentation:
- Issues:
- Email:

🙏 Acknowledgments
-----------------

[](#-acknowledgments)

- Inspired by Laravel, CodeIgniter, and WordPress
- Built with ❤️ by the FireUp Team

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance56

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity44

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

Every ~61 days

Total

3

Last Release

294d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/418fc8ae8f8f4d194f9cecdeadab2ebd5a0651bb2e983281a5725e78793e73da?d=identicon)[kingjethro999](/maintainers/kingjethro999)

---

Top Contributors

[![kingjethro999](https://avatars.githubusercontent.com/u/121499565?v=4)](https://github.com/kingjethro999 "kingjethro999 (8 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.7k509.9M17.0k](/packages/laravel-framework)[laravel/dusk

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

1.9k36.7M259](/packages/laravel-dusk)[laravel/vapor-cli

The Laravel Vapor CLI

31310.7M8](/packages/laravel-vapor-cli)[laravel-zero/framework

The Laravel Zero Framework.

3371.4M369](/packages/laravel-zero-framework)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)

PHPackages © 2026

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