PHPackages                             pyro/custom-install - 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. [CLI &amp; Console](/categories/cli)
4. /
5. pyro/custom-install

ActiveLibrary[CLI &amp; Console](/categories/cli)

pyro/custom-install
===================

Provides extra PyroCMS install configurables, actions and commands. Exclude/Include modules, extensions or seeds from being installed, hooks, callbacks etc

1.0.0(6y ago)0179MITPHP

Since Sep 15Pushed 6y ago1 watchersCompare

[ Source](https://github.com/pyradic/custom-install)[ Packagist](https://packagist.org/packages/pyro/custom-install)[ RSS](/packages/pyro-custom-install/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (3)Versions (3)Used By (0)

Customizable Installer for PyroCMS
==================================

[](#customizable-installer-for-pyrocms)

This package allows you to:

- Exclude certain modules or extensions from being installed
- Exclude certain modules or extensions from being seeded
- Skip certain installer steps
- Start installation at step
- Thrown exceptions during installation will ask you if you want to continue to the next step or
- Add PyroCMS add-ons as composer dependency without automatically installing them
- Ignore trivial errors
- etc...

Installation
------------

[](#installation)

### Provider

[](#provider)

```
\Pyradic\CustomInstall\CustomInstallServiceProvider

```

### Configuration

[](#configuration)

Use the provided config. Some examples:

```
return [
    // call artisan commands before running install
    'call_before'          => [
        ['db:seed', ['--class' => 'Name\\Space\\Class']]
    ],

    // dispatch bus commands before running install
    'dispatch_before'      => [
        function($app){
            return new \Name\Space\PreInstallActions();
        }
    ],

    // call artisan commands after running install
    'call_after'           => [
        ['db:seed', ['--class' => 'Namespace\\To\\Class']]
    ],

    // dispatch bus commands after running install
    'dispatch_after'       => [
        function($app){
            return new \Name\Space\PostInstallActions();
        }
    ],

    // --skip_steps=11,22,46
    'skip_steps'           => [
        // 11, 22, 46
    ],

    // --start_from_step=1
    'start_from_step'      => 1,

    // --ignore_exceptions
    // if true, asks to continue
    // if true + no-interaction, continues with warning
    'ignore_exceptions'    => false,

    // skip seeds of certain modules
    'skip_seed'            => [
        'anomaly.module.users',
    ],

    // `include` takes precedence over `exclude`
    'include'              => [
        'pyro.module.*',
        'anomaly.module.preferences',
        'anomaly.module.configuration',
        'anomaly.module.dashboard',
        'anomaly.module.repeaters',
        'anomaly.module.search',
        'anomaly.module.settings',
        'anomaly.module.users',
        'anomaly.extension.default_authenticator',
        'anomaly.extension.html_block',
        'anomaly.extension.html_widget',
        'anomaly.extension.private_storage_adapter',
        'anomaly.extension.robots',
        'anomaly.extension.sitemap',
        'anomaly.extension.throttle_security_check',
        'anomaly.extension.user_security_check',
        'anomaly.extension.wysiwyg_block',
        'anomaly.extension.xml_feed_widget',
    ],
    'exclude'              => [
        '*' // excluding all, which makes it only install addons defined in `include`
    ],
    'skip_base_migrations' => false, // skip database/migrations/*
    'skip_base_seeds'      => false, // skip database/seeds/*
];
```

`install` Command
-----------------

[](#install-command)

You might prefer to check this in the console using the `--help` option.
Basically all `custom_install.php` configuration values can be overridden using the options.

### Usage

[](#usage)

- `install [--ready] [--call_before [CALL_BEFORE]] [--dispatch_before [DISPATCH_BEFORE]] [--call_after [CALL_AFTER]] [--dispatch_after [DISPATCH_AFTER]] [--skip_steps [SKIP_STEPS]] [--start_from_step [START_FROM_STEP]] [--ignore_exceptions] [--skip_install [SKIP_INSTALL]] [--skip_seed [SKIP_SEED]] [--include [INCLUDE]] [--exclude [EXCLUDE]] [--skip_base_migrations] [--skip_base_seeds] [--] []`
- `install list`

### Arguments

[](#arguments)

#### `method`

[](#method)

method name

- Is required: no
- Is array: no
- Default: `'install'`

### Options

[](#options)

#### `--ready`

[](#--ready)

Indicates that the installer should use an existing .env file.

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: `false`

#### `--call_before`

[](#--call_before)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--dispatch_before`

[](#--dispatch_before)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--call_after`

[](#--call_after)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--dispatch_after`

[](#--dispatch_after)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--skip_steps`

[](#--skip_steps)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--start_from_step`

[](#--start_from_step)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--ignore_exceptions`

[](#--ignore_exceptions)

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--skip_install`

[](#--skip_install)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--skip_seed`

[](#--skip_seed)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--include`

[](#--include)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--exclude`

[](#--exclude)

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--skip_base_migrations`

[](#--skip_base_migrations)

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--skip_base_seeds`

[](#--skip_base_seeds)

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--help|-h`

[](#--help-h)

Display this help message

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--quiet|-q`

[](#--quiet-q)

Do not output any message

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--verbose|-v|-vv|-vvv`

[](#--verbose-v-vv-vvv)

Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--version|-V`

[](#--version-v)

Display this application version

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--ansi`

[](#--ansi)

Force ANSI output

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--no-ansi`

[](#--no-ansi)

Disable ANSI output

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--no-interaction|-n`

[](#--no-interaction-n)

Do not ask any interactive question

- Accept value: no
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--env`

[](#--env)

The environment the command should run under

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

#### `--app`

[](#--app)

The application this command should run under.

- Accept value: yes
- Is value required: no
- Is multiple: no
- Default: The value of this option in the `custom_install.php` configuration file

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

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

Total

2

Last Release

2282d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/303828383a9c2bf382436a61f4471425428b28c095c6df9a9714444cbc163538?d=identicon)[radic](/maintainers/radic)

---

Top Contributors

[![RobinRadic](https://avatars.githubusercontent.com/u/754732?v=4)](https://github.com/RobinRadic "RobinRadic (22 commits)")

---

Tags

pyrocms

### Embed Badge

![Health badge](/badges/pyro-custom-install/health.svg)

```
[![Health](https://phpackages.com/badges/pyro-custom-install/health.svg)](https://phpackages.com/packages/pyro-custom-install)
```

###  Alternatives

[consolidation/annotated-command

Initialize Symfony Console commands from annotated command class methods.

22569.8M19](/packages/consolidation-annotated-command)[chi-teck/drupal-code-generator

Drupal code generator

26947.8M5](/packages/chi-teck-drupal-code-generator)[pyrocms/pyrocms

Build better Laravel websites and applications faster with Pyro.

3.2k68.8k](/packages/pyrocms-pyrocms)[php-tui/php-tui

Comprehensive TUI library heavily influenced by Ratatui

589747.0k6](/packages/php-tui-php-tui)[grasmash/yaml-cli

A command line tool for reading and manipulating yaml files.

2523.6M10](/packages/grasmash-yaml-cli)

PHPackages © 2026

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