jengo / inertia
The Codeigniter 4 adapter for inertia.js forked from fabithub/inertia-ci4
v1.1.21
2026-09-04 19:48 UTC
Requires
- php: ^8.5
- codeigniter4/framework: ^4.7
- gilads-otiannoh254/inertia-protocol: ^0.0
- jengo/base: ^1.1
Requires (Dev)
- codeigniter/coding-standard: ^1.7
- deptrac/deptrac: ^3.0
- ergebnis/composer-normalize: ^2.41
- icanhazstring/composer-unused: ^0.9.1
- infection/infection: ^0.32.4
- pestphp/pest: ^4.3
- pestphp/pest-plugin-faker: ^4.0
- pestphp/pest-plugin-type-coverage: ^4.0
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^12.5
- rector/rector: ^1.0
- vimeo/psalm: ^6.15
Suggests
None
Provides
None
Conflicts
None
Replaces
None
- dev-main
- v1.1.21
- v1.1.20
- v1.1.19
- v1.1.18
- v1.1.17
- v1.1.16
- v1.1.15
- v1.1.14
- v1.1.13
- v1.1.12
- v1.1.11
- v1.1.10
- v1.1.9
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.9
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v1.0.0-alpha
- v0.1.2
- v0.1.1
- v0.1.0
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
This package is auto-updated.
Last update: 2026-09-08 12:05:57 UTC
README
The official CodeIgniter 4 adapter for Inertia.js, bringing modern single-page app frontend workflows (React, Vue, Svelte) to classic server-side routing and controllers.
Documentation: https://lipex-org.github.io/jengophp.com/packages/inertia
Installation
composer require jengo/inertia php spark jengo:install vite php spark jengo:install inertia
Quick Start
namespace App\Controllers; use Jengo\Inertia\Inertia; class DashboardController extends BaseController { public function index() { return Inertia::render('Dashboard', [ 'totalUsers' => 150, 'recentActivity' => [...], ]); } }
Documentation
For full guides on Inertia v3 protocol features (lazy, deferred, and partial props), history encryption, and Vite configuration, visit https://lipex-org.github.io/jengophp.com/packages/inertia.
License
Released under the MIT License.