From 11a546b498ae4524f6542608d3023bdedcb62bab Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sat, 28 Jul 2018 13:26:22 -0700 Subject: [PATCH] Flip order for copy/pasters --- panel/getting_started.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/panel/getting_started.md b/panel/getting_started.md index 87eee878..19039c7e 100644 --- a/panel/getting_started.md +++ b/panel/getting_started.md @@ -39,14 +39,6 @@ this software on an OpenVZ based system you will — most likely — not * `git` * `composer` -### Installing Composer -Composer is a dependency manager for PHP that allows us to ship everything you'll need code wise to operate the Panel. You'll -need composer installed before continuing in this process. - -``` bash -curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer -``` - ### Example Dependency Installation The commands below are simply an example of how you might install these dependencies. Please consult with your operating system's package manager to determine the correct packages to install. @@ -67,6 +59,14 @@ apt update apt -y install php7.2 php7.2-cli php7.2-gd php7.2-mysql php7.2-pdo php7.2-mbstring php7.2-tokenizer php7.2-bcmath php7.2-xml php7.2-fpm php7.2-curl php7.2-zip mariadb-server nginx curl tar unzip git redis-server ``` +### Installing Composer +Composer is a dependency manager for PHP that allows us to ship everything you'll need code wise to operate the Panel. You'll +need composer installed before continuing in this process. + +``` bash +curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer +``` + ## Download Files The first step in this process is to create the folder where the panel will live and then move ourselves into that newly created folder. Below is an example of how to perform this operation.