PHPackages                             yii2-framework/inertia - 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. yii2-framework/inertia

ActiveLibrary

yii2-framework/inertia
======================

Inertia js server-side integration layer for yii2.

1159↑2881.1%PHPCI passing

Since Apr 3Pushed todayCompare

[ Source](https://github.com/yii2-framework/inertia)[ Packagist](https://packagist.org/packages/yii2-framework/inertia)[ RSS](/packages/yii2-framework-inertia/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (2)Used By (0)

    ![Yii Framework](https://camo.githubusercontent.com/6f0a7c6c5e9ed8d389db5c82af26a2f70418756b736357378178997e52296488/68747470733a2f2f7777772e7969696672616d65776f726b2e636f6d2f696d6167652f64657369676e2f6c6f676f2f796969335f66756c6c5f666f725f6461726b2e737667)

Inertia
=======

[](#inertia)

 [ ![PHPUnit](https://camo.githubusercontent.com/e2edfc29b1bab646e5b0b64b950b56cf51ba14336d9c7c36cfc318d555794ef0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f796969322d6672616d65776f726b2f696e65727469612f6275696c642e796d6c3f7374796c653d666f722d7468652d6261646765266c6f676f3d676974687562266c6162656c3d504850556e6974) ](https://github.com/yii2-framework/inertia/actions/workflows/build.yml) [ ![Mutation Testing](https://camo.githubusercontent.com/80ebe4bb05f48cb5a9cd6ce779e70beadda0f503144557e5bc97456e34b1c1d3/68747470733a2f2f696d672e736869656c64732e696f2f656e64706f696e743f7374796c653d666f722d7468652d62616467652675726c3d687474707325334125324625324662616467652d6170692e737472796b65722d6d757461746f722e696f2532466769746875622e636f6d253246796969322d6672616d65776f726b253246696e65727469612532466d61696e) ](https://dashboard.stryker-mutator.io/reports/github.com/yii2-framework/inertia/main) [ ![PHPStan](https://camo.githubusercontent.com/0c2b613bc11f007a6d0a69195a19258c563567b1d5ee46f4acc277e0c2692b1e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f796969322d6672616d65776f726b2f696e65727469612f7374617469632e796d6c3f7374796c653d666f722d7468652d6261646765266c6f676f3d676974687562266c6162656c3d5048505374616e) ](https://github.com/yii2-framework/inertia/actions/workflows/static.yml)

 **Inertia.js server-side integration layer for [Yii2](https://github.com/yii2-framework/yii2)**
 *Server-driven pages, shared props, redirects, and asset version handling without jQuery*

Features
--------

[](#features)

  ![Feature Overview](./docs/svgs/features-mobile.svg)Overview
--------

[](#overview)

`yii2-framework/inertia` is the server-side base package for building modern Inertia-driven pages on top of Yii2. It does not ship a client adapter. Instead, it defines the server contract that future packages such as `yii2-framework/inertia-vue`, `yii2-framework/inertia-react`, and `yii2-framework/inertia-svelte` can reuse.

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

[](#installation)

```
composer require yii2-framework/inertia:^0.1
```

Register the bootstrap class in your application configuration:

```
return [
    'bootstrap' => [\yii\inertia\Bootstrap::class],
];
```

Quick start
-----------

[](#quick-start)

Render a page directly from a controller action:

```
use yii\inertia\Inertia;
use yii\web\Controller;
use yii\web\Response;

final class SiteController extends Controller
{
    public function actionIndex(): Response
    {
        return Inertia::render(
            'Dashboard',
            ['stats' => ['visits' => 42]],
        );
    }
}
```

Or extend the convenience controller:

```
use yii\inertia\web\Controller;
use yii\web\Response;

final class SiteController extends Controller
{
    public function actionIndex(): Response
    {
        return $this->inertia(
            'Dashboard',
            [
                'stats' => ['visits' => 42],
            ]
        );
    }
}
```

Configuration example
---------------------

[](#configuration-example)

```
use yii\inertia\Manager;

return [
    'bootstrap' => [\yii\inertia\Bootstrap::class],
    'components' => [
        'inertia' => [
            'class' => Manager::class,
            'id' => 'app',
            'rootView' => '@app/views/layouts/inertia.php',
            'version' => static function (): string {
                $path = dirname(__DIR__) . '/public/build/manifest.json';

                return is_file($path) ? (string) filemtime($path) : '';
            },
            'shared' => ['app.name' => static fn(): string => Yii::$app->name],
        ],
    ],
];
```

Validation and flash messages
-----------------------------

[](#validation-and-flash-messages)

This package maps the session flash key `errors` to `props.errors` and exposes all remaining flashes at the top-level `flash` page key. A typical validation redirect looks like this:

```
if (!$model->validate()) {
    Yii::$app->session->setFlash('errors', $model->getErrors());

    return $this->redirect(['create']);
}

Yii::$app->session->setFlash('success', 'Record created.');

return $this->redirect(['view', 'id' => $model->id]);
```

Package boundaries
------------------

[](#package-boundaries)

This repository intentionally does not include Vue, React, or Svelte bootstrapping. Those concerns belong in separate client adapter packages built on top of the server contract defined here.

Documentation
-------------

[](#documentation)

For detailed configuration options and advanced usage.

- 📚 [Installation Guide](docs/installation.md)
- ⚙️ [Configuration Reference](docs/configuration.md)
- 💡 [Usage Examples](docs/examples.md)
- 🧪 [Testing Guide](docs/testing.md)

Package information
-------------------

[](#package-information)

[![PHP](https://camo.githubusercontent.com/9e9dabf3cf02992f5f7927dc70dcc68e92fe493a8a5ae3b546c78a2d40996d9b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f253345253344382e322d3737374242342e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d706870266c6f676f436f6c6f723d7768697465)](https://www.php.net/releases/8.2/en.php)[![Latest Stable Version](https://camo.githubusercontent.com/bb73912630098497a5d5eb36b1892e44ff7dbfc9a7014ee5987de55532cf5d3f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f796969322d6672616d65776f726b2f696e65727469612e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d7061636b6167697374266c6f676f436f6c6f723d7768697465266c6162656c3d537461626c65)](https://packagist.org/packages/yii2-framework/inertia)[![Total Downloads](https://camo.githubusercontent.com/f08f40993ed62cbe37b52b54c03656e7efd56c30775754e7d5de05b8934e77d3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f796969322d6672616d65776f726b2f696e65727469612e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d636f6d706f736572266c6f676f436f6c6f723d7768697465266c6162656c3d446f776e6c6f616473)](https://packagist.org/packages/yii2-framework/inertia)

Quality code
------------

[](#quality-code)

[![Codecov](https://camo.githubusercontent.com/c4559fbea0d33b6ade4215907ae77981a845682b47cb7a3018ac36402e2fa982/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f796969322d6672616d65776f726b2f696e65727469612e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d636f6465636f76266c6f676f436f6c6f723d7768697465266c6162656c3d436f766572616765)](https://codecov.io/github/yii2-framework/inertia)[![PHPStan Level Max](https://camo.githubusercontent.com/b1aeb44257ce46737d1787123b534aab9dded28219f828e4ae13a1e3b460f53c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d4c6576656c2532304d61782d3446354439352e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d676974687562266c6f676f436f6c6f723d7768697465)](https://github.com/yii2-framework/inertia/actions/workflows/static.yml)[![Super-Linter](https://camo.githubusercontent.com/ba2cc8b2ef98a0ca31940a1560dcb62da83762078366413eae3805aba55bf306/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f796969322d6672616d65776f726b2f696e65727469612f6c696e7465722e796d6c3f7374796c653d666f722d7468652d6261646765266c6162656c3d53757065722d4c696e746572266c6f676f3d676974687562)](https://github.com/yii2-framework/inertia/actions/workflows/linter.yml)[![StyleCI](https://camo.githubusercontent.com/2e44ba381d6c9ab95b548566772bd17337dc56f8a6a646974bf7277720e5be9d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5374796c6543492d5061737365642d3434434331312e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d676974687562266c6f676f436f6c6f723d7768697465)](https://github.styleci.io/repos/1196150046?branch=main)

License
-------

[](#license)

[![License](https://camo.githubusercontent.com/680c8d62ba2d5a71d7099b6e81114fb0b22d99086c121fd178e1149afc669d44/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4253442d2d332d2d436c617573652d627269676874677265656e2e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d6f70656e736f75726365696e6974696174697665266c6f676f436f6c6f723d7768697465266c6162656c436f6c6f723d353535353535)](LICENSE)

###  Health Score

26

—

LowBetter than 44% of packages

Maintenance65

Regular maintenance activity

Popularity17

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/524d2b46690f41fce7188d369488a35e7624e6c5a264d82aacd08548bfd156ab?d=identicon)[terabytesoftw](/maintainers/terabytesoftw)

---

Top Contributors

[![terabytesoftw](https://avatars.githubusercontent.com/u/42547589?v=4)](https://github.com/terabytesoftw "terabytesoftw (8 commits)")

---

Tags

inertiainertiajsphpserver-driven-uiserver-side-renderingsingle-page-applicationsspayii2

### Embed Badge

![Health badge](/badges/yii2-framework-inertia/health.svg)

```
[![Health](https://phpackages.com/badges/yii2-framework-inertia/health.svg)](https://phpackages.com/packages/yii2-framework-inertia)
```

PHPackages © 2026

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