Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.92 KB

requirements.md

File metadata and controls

61 lines (38 loc) · 1.92 KB

Requirements

LS v1 is based on the LAMP stack (Linux, Apache, MySQL & PHP) and Node.

Install development environment by Laravel.

Install production environment by Digital Ocean.

!> However, if you are not using Homestead or Valet, you will need to make sure your server meets the following requirements:

Install PHP extensions

  • PHP >= 7.0.0
  • OpenSSL PHP Extension - Enabled default on php 7
  • PDO PHP Extension - Enabled default on php 7
  • Tokenizer PHP Extension - Enabled default on php 7
  • Mbstring PHP Extension - Install it with $ sudo apt-get install php-mbstring
  • XML PHP Extension - Install it with $ sudo apt-get install php-xml
  • CURL PHP Extension - Install it with $ sudo apt-get install php-curl
  • GD PHP Extension - Install it with $ sudo apt-get install php-gd

Install Git

$ sudo apt-get install git

Install Composer

$ php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
$ php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
$ php composer-setup.php
$ php -r "unlink('composer-setup.php');"

Install globally as a system wide executable

$ sudo mv composer.phar /usr/local/bin/composer

!> NOTE: Composer requiere unzip install it with $ sudo apt-get install unzip

Install Node & NPM

$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
$ sudo apt-get install -y nodejs