From a69752fe015e17e078ba81cd307aba96d3c78988 Mon Sep 17 00:00:00 2001 From: gillnd Date: Tue, 28 Jul 2026 12:37:49 +1200 Subject: [PATCH] Update getting-started-part-1.md Composer section referred to no-script instead of no-scripts. Also added a note to explain use of no-scripts (KB-1566) --- docs/5.x/getting-started-part-1.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/5.x/getting-started-part-1.md b/docs/5.x/getting-started-part-1.md index fe0da2fa7..68a0bc89c 100644 --- a/docs/5.x/getting-started-part-1.md +++ b/docs/5.x/getting-started-part-1.md @@ -86,7 +86,7 @@ If your computer is using a Debian based operating system, you can install all t -### Get & Install Matomo +### Get & install Matomo We'll get the latest version of Matomo's source code using git. @@ -100,15 +100,15 @@ Open a terminal, `cd` into the directory where you want to install Matomo, and t Next, we will install all the libraries that Matomo needs using Composer. - * Follow the [download instructions for Composer](https://getcomposer.org/download/) in order to get composer on your machine + * Follow the [download instructions for Composer](https://getcomposer.org/download/) to get composer on your machine. * Then run this command to download all PHP packages that Matomo requires: $ php composer.phar install - On Windows, you will likely need to add an option `--no-script`: + On Windows, you will likely need to add an option `--no-scripts`. Some Composer “scripts” defined in `composer.json` may rely on Unix-like shell behaviour or tools that are not available or behave differently on Windows environments. Using `--no-scripts` prevents Composer from ignoring these scripts and allows the installation to complete without being interrupted by Windows-specific compatibility issues: - $ php composer.phar install --no-script + $ php composer.phar install --no-scripts ### Get a web server