LS v1 is based on the LAMP stack (Linux, Apache, MySQL & PHP) and Node.
!> However, if you are not using Homestead or Valet, you will need to make sure your server meets the following requirements:
- 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
$ sudo apt-get install git
$ 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
$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
$ sudo apt-get install -y nodejs