Skip to content

Latest commit

 

History

History
executable file
·
70 lines (44 loc) · 2.41 KB

requirements.md

File metadata and controls

executable file
·
70 lines (44 loc) · 2.41 KB

Requirements

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

Install development environment.

Install production environment.

!> 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.1.3
  • 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
  • Ctype PHP Extension - Enabled default on php 7
  • JSON PHP Extension - Enabled default on php 7
  • 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

https://getcomposer.org/download/

$ 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

https://github.com/nodesource/distributions/blob/master/README.md

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