laravel-afterburner / installer
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
Requires
- php: ^8.2
- laravel/prompts: ^0.3.5
- symfony/console: ^6.4.14 || ^7.1.7
- symfony/process: ^6.4.14 || ^7.1.7
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/binor~/.config/composer/vendor/bin - Linux:
~/.config/composer/vendor/binor~/.composer/vendor/bin - Windows:
%USERPROFILE%\AppData\Roaming\Composer\vendor\bin
Usage
Create a new Afterburner application:
afterburner new my-app
This will:
- Create a new Laravel project using the Afterburner template
- Install all core dependencies
- 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.