PHP code example of pawprintdigital / laravel-queue-raw-sqs

1. Go to this page and download the library: Download pawprintdigital/laravel-queue-raw-sqs library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

pawprintdigital / laravel-queue-raw-sqs example snippets


PawprintDigital\LaravelQueueRawSqs\LaravelQueueRawSqsServiceProvider::class

'rawsqs' => [
    'driver' => 'rawsqs',
    'key' => env('AWS_ACCESS_KEY_ID'),
    'secret' => env('AWS_SECRET_ACCESS_KEY'),
    'prefix' => env('AWS_SQS_QUEUE_PREFIX'),
    'queue' => env('AWS_SQS_QUEUE_NAME'),
    'region' => env('AWS_REGION'),
    'routes' => [
        '*' =>'App\\Jobs\\JobHandler'
    ]
]