From 9a75e13f56e8ca31bc802bef9bd3d3ec2dbb240b Mon Sep 17 00:00:00 2001 From: Marvin Deuschle Date: Mon, 13 May 2024 19:43:09 +0200 Subject: [PATCH] docs: update twill version during installation --- docs/content/1_docs/2_getting-started/2_installation.md | 4 ++-- .../2_guides/1_page-builder-with-blade/3_installing-twill.md | 2 +- examples/basic-page-builder/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/1_docs/2_getting-started/2_installation.md b/docs/content/1_docs/2_getting-started/2_installation.md index d73f09022..128559f2e 100644 --- a/docs/content/1_docs/2_getting-started/2_installation.md +++ b/docs/content/1_docs/2_getting-started/2_installation.md @@ -21,7 +21,7 @@ The starter kit setup is a basic page builder. It comes with: You can install it in a Laravel application using: ```bash -composer require area17/twill:"^3.0" +composer require area17/twill:"^3.2" ``` :::alert=type.warning::: @@ -40,7 +40,7 @@ See [`examples/basic-page-builder`](https://github.com/area17/twill/tree/3.x/exa Twill package can be added to your application using Composer: ```bash -composer require area17/twill:"^3.0" +composer require area17/twill:"^3.2" ``` :::alert=type.warning::: diff --git a/docs/content/2_guides/1_page-builder-with-blade/3_installing-twill.md b/docs/content/2_guides/1_page-builder-with-blade/3_installing-twill.md index e5c79c66c..3065f15bd 100644 --- a/docs/content/2_guides/1_page-builder-with-blade/3_installing-twill.md +++ b/docs/content/2_guides/1_page-builder-with-blade/3_installing-twill.md @@ -4,7 +4,7 @@ Twill is a standard Laravel package, that means, we only have to require it (and So, before we get to the process of building our CMS, let's install Twill. -We can do this using `composer require area17/twill:"^3.0"`. +We can do this using `composer require area17/twill:"^3.2"`. This will install Twill 3 alongside all other required packages. diff --git a/examples/basic-page-builder/README.md b/examples/basic-page-builder/README.md index efe0391a6..f763e5aee 100644 --- a/examples/basic-page-builder/README.md +++ b/examples/basic-page-builder/README.md @@ -34,7 +34,7 @@ The [Laravel documentation](https://laravel.com/docs/10.x) is far more extensive Lets require Twill: ``` -composer require area17/twill:"^3.0" +composer require area17/twill:"^3.2" ``` And then, install this example: