Notes on Laravel 5.7

From Han Wiki
Revision as of 12:47, 18 January 2019 by Mhan (talk | contribs) (→‎Installation: fix a typo)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Jump to navigation Jump to search

Installation

  • Last tested on CentOS 7.5.1804, Laravel 5.7.2 (2018-11-06)

Get composer and install Laravel installer.

$ composer global require laravel/installer

Add a symlink to laravel to ~/bin.

$ ln -s ~/.config/composer/vendor/laravel/installer/laravel ~/bin/

Create a new project.

$ laravel new alpha

Install Redis on the system, and install the necessary package.

$ composer require predis/predis

Use Redis for Cache and Session. Files are found in ./config/ folder.