maratib / just-blade
Just Blade standalone templating engine for use outside of Laravel.
dev-main
2025-08-21 20:46 UTC
Requires
- php: ^7.4|^8.0
- illuminate/config: ^11.44.2
- illuminate/view: 11.7.0
Requires (Dev)
- laravel/pint: ^1.22
- phpunit/phpunit: ^12.1
This package is not auto-updated.
Last update: 2025-08-22 03:20:10 UTC
README
Laravel's Blade standalone
Blade templating engine for use outside of Laravel
composer require maratib/just-blade
Howto use it
How to use it in your plain php projects
$views = THEME_PATH . '/views'; $cache = THEME_PATH . '/storage/cache'; $blade = new \Just\Blade($views, $cache); $blade->render($template, $data);