Afterburner project installer - Create new Laravel projects with Afterburner

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/laravel-afterburner/installer

1.0.0 2025-11-06 22:54 UTC

This package is auto-updated.

Last update: 2025-11-06 23:21:18 UTC


README

Create new Laravel projects with Afterburner using a simple command.

Installation

composer global require laravel-afterburner/installer

Ensure Composer's global bin directory is in your PATH:

  • macOS: ~/.composer/vendor/bin or ~/.config/composer/vendor/bin
  • Linux: ~/.config/composer/vendor/bin or ~/.composer/vendor/bin
  • Windows: %USERPROFILE%\AppData\Roaming\Composer\vendor\bin

Usage

Create a new Afterburner application:

afterburner new my-app

This will:

  1. Create a new Laravel project using the Afterburner template
  2. Install all core dependencies
  3. Set up the project structure

Next Steps

After creating your application:

cd my-app
php artisan migrate
php artisan db:seed --class=RolesSeeder  # Optional

Requirements

  • PHP ^8.2
  • Composer
  • Laravel template repository accessible via Composer

Development

To work on the installer locally:

cd afterburner-installer
composer install
php bin/afterburner new test-app

License

MIT License - see LICENSE file for details.