├── .gitignore ├── README.md ├── bb-inertia-adapter.php ├── composer.json ├── composer.lock ├── index.php └── src ├── Inertia.php ├── InertiaHeaders.php ├── InertiaHelper.php ├── LazyProp.php └── functions.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/inertia-wordpress/HEAD/README.md -------------------------------------------------------------------------------- /bb-inertia-adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/inertia-wordpress/HEAD/bb-inertia-adapter.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/inertia-wordpress/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/inertia-wordpress/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |