How to integrate Amazon AWS SQS

SQS stands for Simple Queue Service, is a highly scalable and reliable distributed queueing system, which can be used to make applications asynchronous.

I will show you the simplest way of integrating the SQS, installing AWS SDK, Creating a Queue and a Worker to manage the queues and push tasks to Queues.
Continue reading “How to integrate Amazon AWS SQS”

How to use Amazon PHP AWS SDK

If you have to use one of their services with the new PHP SDK 3.31 you will have to first install it using composer

composer install aws/aws-sdk-php

then you have to

Continue reading “How to use Amazon PHP AWS SDK”