PHPackages                             fireup/php-build - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. fireup/php-build

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

fireup/php-build
================

Interactive PHP development tool for creating clean, well-structured applications

1.2.0(9mo ago)05MITPHPPHP &gt;=8.0

Since Jul 31Pushed 9mo agoCompare

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

READMEChangelog (3)Dependencies (11)Versions (4)Used By (0)

🚀 FireUp PHP Build
==================

[](#-fireup-php-build)

**Interactive PHP Development Tool for Creating Clean, Well-Structured Applications**

FireUp PHP Build is a comprehensive PHP development package that helps developers create clean, maintainable PHP applications through an interactive chat interface and powerful CLI tools.

✨ Features
----------

[](#-features)

- **🤖 Interactive Chat Interface** - Natural language development with AI assistance
- **🏗️ Project Generation** - Create complete MVC applications with one command
- **📝 Code Generation** - Generate classes, controllers, models, and functions
- **🐛 Smart Debugging** - Automatic error detection and fixing
- **📁 File Management** - Create, edit, and manage project files
- **⚡ Development Server** - Built-in server for rapid development
- **🔧 Build System** - Optimize and compile applications for production

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

[](#-quick-start)

### Installation

[](#installation)

#### Option 1: Using Composer Create Project (Recommended)

[](#option-1-using-composer-create-project-recommended)

```
# Create a new application (requires package to be published on Packagist)
composer create-project fireup/php-build my-php-app
cd my-php-app
```

#### Option 2: Clone and create new app

[](#option-2-clone-and-create-new-app)

```
# Clone the template
git clone https://github.com/kingjethro999/fireup-build.git
cd fireup-build

# Create a new application
php create-app.php my-php-app
cd my-php-app
composer install
```

#### Option 3: Use directly

[](#option-3-use-directly)

```
# Clone and use directly
git clone https://github.com/kingjethro999/fireup-build.git my-php-app
cd my-php-app
composer install
```

### Interactive Development

[](#interactive-development)

```
# Start interactive chat (CLI)
php artisan chat

# Start web chat interface (opens .chat/interface.html)
php artisan chat --web

# Using composer scripts
composer chat
```

### Basic Commands

[](#basic-commands)

```
# Create a new project
php artisan create project my-awesome-app

# Start development server (serves user's index.php)
php artisan serve

# Build for production
php artisan build --production

# Debug your code
php artisan debug

# Using composer scripts
composer serve
composer build
```

💬 Interactive Chat Examples
---------------------------

[](#-interactive-chat-examples)

The chat interface understands natural language requests:

```
You: Create a new PHP project called "blog"
AI: ✅ Project 'blog' created successfully with complete MVC structure!

You: Create a User model with properties name, email, password
AI: ✅ Generated User model with properties: name, email, password

You: Create a UserController with CRUD methods
AI: ✅ Generated UserController with index, show, create, store methods

You: Debug this file for syntax errors
AI: 🐛 Found and fixed 2 syntax errors in UserController.php

```

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

[](#-project-structure)

When you create a new project, you get a clean, well-organized structure:

```
my-php-app/
├── public/              # Web root
│   └── index.php       # Entry point
├── src/                # Application source
│   ├── App.php         # Main application class
│   ├── Controllers/    # Controllers
│   └── Models/         # Models
├── config/             # Configuration files
├── templates/          # View templates
├── vendor/             # Dependencies
├── bin/                # CLI tools
│   └── php-build       # Main CLI executable
├── composer.json       # Project configuration
└── README.md          # Project documentation

```

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

[](#️-available-commands)

### Chat Commands

[](#chat-commands)

- `php artisan chat` - Interactive CLI chat
- `php artisan chat --web` - Web chat interface (opens .chat/interface.html)
- `php artisan chat "Create a User model"` - Direct request

### Project Commands

[](#project-commands)

- `php artisan create project ` - Create new project
- `php artisan create controller ` - Create controller
    - `php artisan create model ` - Create model
    - `php artisan create class ` - Create class

### Development Commands

[](#development-commands)

- `php bin/php-build serve` - Start development server
- `php bin/php-build serve --port 8080` - Custom port
- `php bin/php-build build` - Build application
- `php bin/php-build build --optimize` - Optimized build
- `php bin/php-build build --production` - Production build

### Debug Commands

[](#debug-commands)

- `php artisan debug` - Debug entire project
- `php artisan debug ` - Debug specific file
- `php artisan debug --fix` - Auto-fix issues
- `php artisan debug --verbose` - Detailed output

🎯 Use Cases
-----------

[](#-use-cases)

### For Beginners

[](#for-beginners)

- Learn PHP development through interactive guidance
- Generate boilerplate code automatically
- Get instant feedback on code quality
- Build complete applications step by step

### For Experienced Developers

[](#for-experienced-developers)

- Rapidly prototype new features
- Maintain consistent code structure
- Automate repetitive development tasks
- Debug complex applications efficiently

### For Teams

[](#for-teams)

- Standardize project structure
- Enforce coding conventions
- Share development knowledge
- Accelerate onboarding process

🔧 Configuration
---------------

[](#-configuration)

### Environment Variables

[](#environment-variables)

Create a `.env` file in your project root:

```
# Application
APP_ENV=development
APP_DEBUG=true
APP_URL=http://localhost:8000

# Database (if needed)
DB_HOST=localhost
DB_NAME=myapp
DB_USER=root
DB_PASS=

# Security
APP_KEY=your-secret-key-here
```

### Custom Templates

[](#custom-templates)

You can customize the generated code by modifying the templates in the `src/Services/CodeGenerator.php` file.

🚀 Advanced Features
-------------------

[](#-advanced-features)

### Web Interface

[](#web-interface)

Start the web interface for a rich development experience:

```
php artisan chat --web --port 8000
```

Features:

- Real-time chat interface
- Project file explorer
- Syntax validation
- Quick action buttons
- Chat history export

### Build Optimization

[](#build-optimization)

Optimize your application for production:

```
php artisan build --production --optimize
```

This will:

- Minify CSS and JavaScript
- Remove development files
- Optimize autoloader
- Set production environment
- Disable error reporting

### File Watching

[](#file-watching)

Watch for changes and auto-rebuild:

```
php artisan build --watch
```

📦 Publishing to Packagist
-------------------------

[](#-publishing-to-packagist)

To make `composer create-project fireup/php-build` work, you need to publish this package to Packagist:

1. **Create a Packagist account** at
2. **Submit your package** by providing your GitHub repository URL
3. **Set up webhook** for automatic updates
4. **Tag releases** in your repository

Once published, users can create new applications with:

```
composer create-project fireup/php-build my-app
cd my-app
php artisan serve
php artisan chat --web
```

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

[](#-contributing)

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

📄 License
---------

[](#-license)

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

🆘 Support
---------

[](#-support)

- 📖 [Documentation](https://fireup-php-build.com/docs)
- 💬 [Discord Community](https://discord.gg/fireup-php-build)
- 🐛 [Issue Tracker](https://github.com/fireup/php-build/issues)
- 📧 [Email Support](mailto:support@fireup-php-build.com)

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

[](#-acknowledgments)

- Built with [Symfony Console](https://symfony.com/doc/current/components/console.html)
- Styled with [Tailwind CSS](https://tailwindcss.com/)
- Powered by modern PHP 8.0+ features

---

**Made with ❤️ by the FireUp Team**

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance56

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity43

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 ~1 days

Total

3

Last Release

290d 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 (10 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[laravel/framework

The Laravel Framework.

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

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

19562.3M1.3k](/packages/drupal-core)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)

PHPackages © 2026

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