jengo / installer
The Jengo CLI installer for rapid CodeIgniter 4 application bootstrapping.
dev-main
2026-06-14 01:45 UTC
Requires
- guzzlehttp/guzzle: ^7.11
- symfony/console: ^8.1
- symfony/filesystem: ^8.1
- symfony/process: ^8.1
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:
- Runs
composer create-project codeigniter4/appstarterto initialize a fresh CI4 project. - Installs
jengo/basecore package. - If a kit is specified:
- Installs
jengo/inertia. - Runs
php spark jengo:install vite. - Runs
php spark jengo:install inertia.
- Installs
License
MIT