jengo/installer

The Jengo CLI installer for rapid CodeIgniter 4 application bootstrapping.

Maintainers

Package info

github.com/lipex-org/jengo-installer

pkg:composer/jengo/installer

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-06-14 01:45 UTC

This package is auto-updated.

Last update: 2026-06-14 02:00:39 UTC


README

The Jengo CLI installer is a tool for quickly bootstrapping new Jengo-powered CodeIgniter 4 applications.

Installation

You can install the Jengo Installer as a global Composer dependency:

composer global require jengo/installer

Make sure your global Composer bin directory is in your system's PATH.

Usage

Create a new application

To create a new Jengo application, run:

jengo new my-app

Choose a starter kit

You can specify a starter kit using the --kit option. Available kits: react, vue, svelte.

jengo new my-app --kit=react

Force installation

If the directory already exists, you can force the installation using the --force or -f flag:

jengo new my-app --force

How it works

The installer performs the following steps:

  1. Runs composer create-project codeigniter4/appstarter to initialize a fresh CI4 project.
  2. Installs jengo/base core package.
  3. If a kit is specified:
    • Installs jengo/inertia.
    • Runs php spark jengo:install vite.
    • Runs php spark jengo:install inertia.

License

MIT