Skip to content

Commit 7b119dc

Browse files
committed
bump illuminate/view to 9.x
1 parent d68ed52 commit 7b119dc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
[![Release](https://img.shields.io/github/v/release/lukasleitsch/kirby-blade?style=flat-square)](https://github.com/lukasleitsch/kirby-blade)
88
[![License](https://img.shields.io/github/license/lukasleitsch/kirby-blade?style=flat-square)](https://github.com/lukasleitsch/kirby-blade)
99

10-
Kirby Blade use Laravel `illuminate/view` 8.x package and compatible with Kirby 3.
10+
Kirby Blade use Laravel `illuminate/view` 9.x package and compatible with Kirby 3.
1111

12-
This package enables [Laravel Blade](https://laravel.com/docs/8.x/blade) for your own Kirby applications.
12+
This package enables [Laravel Blade](https://laravel.com/docs/9.x/blade) for your own Kirby applications.
1313

1414
## Installation
1515

@@ -21,13 +21,13 @@ composer require leitsch/kirby-blade
2121

2222
According to Laravel Blade documentation is:
2323

24-
> Blade is the simple, yet powerful templating engine provided with Laravel. Unlike other popular PHP templating engines, Blade does not restrict you from using plain PHP code in your views. In fact, all Blade views are compiled into plain PHP code and cached until they are modified, meaning Blade adds essentially zero overhead to your application. Blade view files use the .blade.php file extension.
24+
> Blade is the simple, yet powerful templating engine that is included with Laravel. Unlike some PHP templating engines, Blade does not restrict you from using plain PHP code in your templates. In fact, all Blade templates are compiled into plain PHP code and cached until they are modified, meaning Blade adds essentially zero overhead to your application. Blade template files use the .blade.php file extension.
2525
2626
## Usage
2727

28-
You can use the power of Blade like [Layouts](https://laravel.com/docs/8.x/blade#building-layouts), [Forms](https://laravel.com/docs/8.x/blade#forms), [Sub-Views](https://laravel.com/docs/8.x/blade#including-subviews), [Components](https://laravel.com/docs/8.x/blade#components), [Directives](https://laravel.com/docs/8.x/blade#blade-directives) and your custom if statements.
28+
You can use the power of Blade like [Layouts](https://laravel.com/docs/9.x/blade#building-layouts), [Forms](https://laravel.com/docs/9.x/blade#forms), [Sub-Views](https://laravel.com/docs/9.x/blade#including-subviews), [Components](https://laravel.com/docs/9.x/blade#components), [Directives](https://laravel.com/docs/9.x/blade#blade-directives) and your custom if statements.
2929

30-
All the documentation about Laravel Blade is in the [official documentation](https://laravel.com/docs/8.x/blade).
30+
All the documentation about Laravel Blade is in the [official documentation](https://laravel.com/docs/9.x/blade).
3131

3232
## Options
3333

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"require": {
2525
"php": "^8.0",
2626
"getkirby/composer-installer": "^1.2",
27-
"illuminate/config": "^8.0",
28-
"illuminate/view": "^8.0",
27+
"illuminate/config": "^9.0",
28+
"illuminate/view": "^9.0",
2929
"voku/html-min": "^4.4"
3030
},
3131
"require-dev": {

0 commit comments

Comments
 (0)