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

ActiveProject[Framework](/categories/framework)

fireup/fireup-skeleton
======================

FireUp PHP Framework starter project.

v1.0.0(9mo ago)02MITPHP

Since Jul 28Pushed 9mo agoCompare

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

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

FireUp PHP Framework Starter
============================

[](#fireup-php-framework-starter)

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

🌟 Features
----------

[](#-features)

- **Simple &amp; Lightweight MVC Structure**
- **Instant API Mode** - Auto-generate RESTful APIs
- **Built-in Dashboard** - Visual development tools
- **Advanced CLI Commands** - Like Laravel Artisan
- **OpenAPI Documentation** - Auto-generated API docs
- **WebSocket Support** - Real-time features out of the box
- **Flexible Theming System** - Multiple active themes
- **No ORM Lock-in** - Use any database system

🚀 Quick Start
-------------

[](#-quick-start)

### Prerequisites

[](#prerequisites)

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

### Installation

[](#installation)

1. **Create a new project:**

```
composer create-project fireup/fireup-skeleton my-app
cd my-app
```

2. **Set up environment:**

```
cp .env.example .env
# Edit .env with your database settings
```

3. **Install JavaScript dependencies:**

    ```
    npm install
    ```
4. **Start development servers:**

    ```
    # Terminal 1: Start PHP server
    fireup serve

    # Terminal 2: Start JavaScript build process
    npm run dev
    ```
5. **Visit your app:**Open  in your browser

📁 Project Structure
-------------------

[](#-project-structure)

```
my-app/
├── app/
│   └── Controllers/          # Your application controllers
├── config/
│   └── database.php          # Database configuration
├── public/
│   ├── index.php            # Application entry point
│   └── .htaccess            # Apache configuration
├── routes/
│   └── web.php              # Route definitions
├── view/
│   └── welcome.php          # Views
├── vendor/
│   └── fireup/fireup/       # FireUp framework core
├── .env                     # Environment variables
└── composer.json            # Dependencies

```

🛠️ Available Commands
---------------------

[](#️-available-commands)

Once installed, you can use FireUp CLI commands:

```
# Start development server
fireup serve

# Create new controller
fireup create:controller UserController

# Create new model
fireup create:model User

# Create new view
fireup create:view users.index

# Run database migrations
fireup migrate

# List all routes
fireup route:list

# Generate API docs
fireup route:list --docs

# Prepare for mobile apps
fireup api:mobile-ready

# Create custom commands
fireup make:command MyCommand

# Frontend development
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

# Create middleware
fireup make:middleware Auth

# Create policies
fireup make:policy UserPolicy

# Create seeders
fireup make:seeder UserSeeder

# Create factories
fireup make:factory UserFactory

# Create events
fireup make:event UserRegistered
```

🎯 Development Workflow
----------------------

[](#-development-workflow)

### 1. Create a Controller

[](#1-create-a-controller)

```
fireup create:controller ProductController
```

### 2. Create a Model

[](#2-create-a-model)

```
fireup create:model Product
```

### 3. Add Routes

[](#3-add-routes)

Edit `routes/web.php`:

```
$router->get('/products', [App\Controllers\ProductController::class, 'index']);
```

### 4. Create Views

[](#4-create-views)

```
fireup create:view products.index
```

🔥 Advanced Features
-------------------

[](#-advanced-features)

### API Generation

[](#api-generation)

FireUp automatically generates RESTful APIs for your models:

```
fireup api:mobile-ready
# Visit http://localhost:8000/api/docs
```

### Dashboard

[](#dashboard)

Access the visual development dashboard at `/dashboard` (dev mode only).

### WebSocket Support

[](#websocket-support)

Built-in WebSocket server for real-time features.

### Theming

[](#theming)

Multiple active themes with inheritance support.

🚀 JavaScript Workflow
---------------------

[](#-javascript-workflow)

FireUp comes with modern JavaScript tooling powered by Vite:

### Setup

[](#setup)

```
# Initialize frontend (if not already done)
fireup frontend init

# Install dependencies
npm install
```

### Development

[](#development)

```
# Start Vite dev server (hot reload)
npm run dev

# Or use FireUp CLI
fireup frontend dev
```

### Production

[](#production)

```
# Build optimized assets
npm run build

# Or use FireUp CLI
fireup frontend build
```

### Available Scripts

[](#available-scripts)

- `npm run dev` - Start development server with hot reload
- `npm run build` - Build for production
- `npm run preview` - Preview production build
- `npm run watch` - Watch for changes and rebuild

### JavaScript Features

[](#javascript-features)

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

### Example Usage

[](#example-usage)

```
// 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);
});
```

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

[](#-documentation)

For detailed documentation, visit:

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

[](#-contributing)

We welcome contributions! Please see [CONTRIBUTING.md](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

26

—

LowBetter than 43% of packages

Maintenance56

Moderate activity, may be stable

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 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

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 (3 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[elgg/elgg

Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.

1.7k15.7k5](/packages/elgg-elgg)[yiisoft/yii2-faker

Fixture generator. The Faker integration for the Yii framework.

11215.9M486](/packages/yiisoft-yii2-faker)[coreshop/core-shop

CoreShop - Pimcore eCommerce

289197.5k10](/packages/coreshop-core-shop)[laravel/nova-devtool

Devtool for Laravel Nova Development

31389.3k134](/packages/laravel-nova-devtool)[bowphp/framework

The bow PHP Framework

6015.5k8](/packages/bowphp-framework)[lion/bundle

Lion-framework configuration and initialization package

122.2k1](/packages/lion-bundle)

PHPackages © 2026

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