Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.15 KB

File metadata and controls

48 lines (35 loc) · 1.15 KB

Information

This repository consist session files of the Laravel Core Concept and Ecosystem, Workshop with Laravel 5 session.

PDF

Laravel.pdf file is the session slide file. This file origin exists at Speaker Deck.

Requirements

  • PHP
    • PHP >= 5.6.4
    • Curl PHP Extension
    • PDO PHP Extension
    • BCMath PHP Extension
    • Mbstring PHP Extension
    • Mcrypte PHP Extension
    • Tokenizer PHP Extension
    • JSON PHP Extension
  • Database (MySQL)
    • MySQL PHP Native Driver (mysqlnd)
  • RabbitMQ / Redis
  • Composer
    • Laravel

Installation

You must execute only the following command to install all of dependencies:

composer install

php artisan migrate

Then you must set the QUEUE_DRIVER environment variable which you want to use.

Description

To get jobs from the mail queue with the following command:

php artisan queue:work --queue=mail --tries=3

If you want to process with another driver different from the default driver you should do it following command:

php artisan queue:work rabbitmq --queue=mail --tries=3