Download the PHP package ambrosethebuild/laravel-installer without Composer
On this page you can find all versions of the php package ambrosethebuild/laravel-installer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ambrosethebuild/laravel-installer
More information about ambrosethebuild/laravel-installer
Files in ambrosethebuild/laravel-installer
Package laravel-installer
Short Description Laravel system install. Helps with checks before installing project on server
License MIT
Homepage https://github.com/ambrosethebuild/laravel-installer
Informations about the package laravel-installer

Laravel Installer
A beautiful, step-by-step installer for Laravel projects. This package helps you verify your server environment, check required PHP extensions and folder permissions, edit your .env file, and run migrations—all before your app goes live.
Features:
- System requirements and PHP extension checks
- Folder permission checks
- Easy .env editor
- Database migration runner
- Modern, responsive UI (no external CSS dependencies)
- Progress is tracked and resumable
Get your Laravel app production-ready with confidence and ease!
Installation
You can install the package via composer:
You can publish the config file with:
This is the contents of the published config file:
Usage
To automatically redirect users to the installer until it is completed, you can add the following check in the boot method of your App\Providers\AppServiceProvider.php:
This will ensure that all web requests are sent to the installer wizard until the installation is finished. Once completed, a flag file is created in your storage directory, and this redirect will no longer trigger.
Tailwind CSS Configuration (Important)
If your Laravel project uses Tailwind CSS and you are running npm run build or npm run prod, you must add the package's views to your tailwind.config.js file. This prevents the styles used in the installer from being purged during the production build:
Publish Installer Styles
The installer ships with a pre-built, minified Tailwind CSS stylesheet. Publish it to your public directory:
This copies style.css to public/vendor/laravel-installer/style.css, which is what installer::installer.style links to. You do not need Tailwind installed in your own project for the installer UI to render correctly — the stylesheet is self-contained.
Testing
Building Styles (Maintainers)
The installer's UI is styled with Tailwind CSS, compiled ahead of time into resources/dist/style.css. If you change any classes in resources/views/**/*.blade.php or resources/css/installer.css, rebuild the stylesheet before committing:
Use npm run dev to watch for changes while editing views.
All versions of laravel-installer with dependencies
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0||^12.0