Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
  • PHP Challenge PHP Challenge
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Deployments
    • Deployments
    • Releases
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Jobsity
  • PHP ChallengePHP Challenge
  • Wiki
  • Using RabbitMQ with Slim Framework

Using RabbitMQ with Slim Framework · Changes

Page history
Create Using RabbitMQ with Slim Framework authored Jun 02, 2021 by Brian Debuire's avatar Brian Debuire
Hide whitespace changes
Inline Side-by-side
Showing with 29 additions and 0 deletions
+29 -0
  • Using-RabbitMQ-with-Slim-Framework.md Using-RabbitMQ-with-Slim-Framework.md +29 -0
  • No files found.
Using-RabbitMQ-with-Slim-Framework.md 0 → 100644
View page @ 0d68168c
## Using RabbitMQ with Slim Framework
Install the recommended AMQP library for PHP:
```bash
composer require php-amqplib/php-amqplib
```
Install RabbitMQ for your operating system from:
https://www.rabbitmq.com/download.html
Or you can create a free CloudAMQP from:
https://customer.cloudamqp.com/signup
Official RabbitMQ docker images are also available from:
https://hub.docker.com/_/rabbitmq
Update your `.env` settings for the RabbitMQ service like:
```dotenv
RMQ_HOST=localhost
RMQ_USER=guest
...
```
Register a new RabbitMQ service in `app/services.php`.
\ No newline at end of file
Clone repository
  • PHP Challenge Instructions
  • Usage of the Mailer service (SwiftMailer)
  • Using RabbitMQ with Slim Framework
  • Home