PHPackages                             skobel/laravel-install-command - 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. skobel/laravel-install-command

ActiveLibrary

skobel/laravel-install-command
==============================

Configurable install command for Laravel. Simply define your application installation steps so you can deploy your project more easily.

1.1.2(6y ago)014MITPHPCI failing

Since Oct 19Pushed 6y ago1 watchersCompare

[ Source](https://github.com/Skobel/laravel-install-command)[ Packagist](https://packagist.org/packages/skobel/laravel-install-command)[ RSS](/packages/skobel-laravel-install-command/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (5)Used By (0)

Laravel Artisan Install Command
===============================

[](#laravel-artisan-install-command)

### Introduction

[](#introduction)

Use this package to define your application's installation steps, so you can deploy your Laravel project more easily.

[![Terminal window](https://camo.githubusercontent.com/4b841f00fbd4758fe9cda5c0192e0d6aad003b3b1c0e11530e239d87de6290b2/68747470733a2f2f7374617469632e736b6f62656c77656273697465732e636f6d2f4f746865722f4c61726176656c5f496e7374616c6c65725f436f6d6d616e642e706e67)](https://camo.githubusercontent.com/4b841f00fbd4758fe9cda5c0192e0d6aad003b3b1c0e11530e239d87de6290b2/68747470733a2f2f7374617469632e736b6f62656c77656273697465732e636f6d2f4f746865722f4c61726176656c5f496e7374616c6c65725f436f6d6d616e642e706e67)

### Installation

[](#installation)

Install using composer:

```
composer require skobel/laravel-install-command

```

Laravel should automatically discover the service provider.

### Quickstart

[](#quickstart)

Follow these steps to get started quickly.

Run the setup command:

```
php artisan installer:setup

```

This will create the following files and directories in your `app` folder:

```
Installation/
    Steps/
    Configuration.php

```

In the newly created `Configuration.php` you can define your installation steps. There are a few default steps available out of the box.

```
class Configuration extends \Skobel\LaravelInstallCommand\Configuration
{
    public function steps(): array
    {
        return [
            //new CopyDotEnvFile,
            //new GenerateApplicationKey,
            //new RunMigrations,
            //new SeedDatabase,
        ];
    }
}

```

Begin installation:

```
php artisan install

```

### Available Steps

[](#available-steps)

Class nameDescriptionCopyDotEnvFileCopy .env.example to .envGenerateApplicationKeyRun `php artisan key:generate`RunMigrationsRun your migrations with the `--force` optionSeedDatabaseSeed your database with the `--force` optionCreatePassportKeysRun `php artisan passport:keys`, use only if you have Laravel Passport installed### Creating Installation Steps

[](#creating-installation-steps)

```
php artisan installer:step StepName

```

This will generate a Step class with the given name. Next add this Step to your `steps` array in your configuration:

```
use App\Installation\Steps\StepName;

class Configuration extends \Skobel\LaravelInstallCommand\Configuration
{
    public function steps(): array
    {
        return [
            // ...
            new StepName,
        ];
    }
}

```

### Custom Configuration and Directory Structure

[](#custom-configuration-and-directory-structure)

Of course you can place your configuration class and installation steps wherever you want. After you have your configuration class at a custom location add the following code to your `AppServiceProvider`'s boot method.

```
use App\Installation\Configuration;

// ...

public function boot()
{
    Installer::use(new Configuration);
}

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

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

Total

4

Last Release

2393d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ae0e853818cf9e7ac1ded2afe9438e0fae79cdb829a76d52c5de4cc45711cc9c?d=identicon)[zsoltgyure](/maintainers/zsoltgyure)

---

Top Contributors

[![zoltiecodes](https://avatars.githubusercontent.com/u/11029586?v=4)](https://github.com/zoltiecodes "zoltiecodes (9 commits)")

---

Tags

artisanartisan-commandinstallation-scriptlaravellaravel-framework

### Embed Badge

![Health badge](/badges/skobel-laravel-install-command/health.svg)

```
[![Health](https://phpackages.com/badges/skobel-laravel-install-command/health.svg)](https://phpackages.com/packages/skobel-laravel-install-command)
```

###  Alternatives

[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135192.6k5](/packages/statamic-rad-pack-runway)

PHPackages © 2026

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