Download the PHP package perspct/laravel-plain-sqs without Composer
On this page you can find all versions of the php package perspct/laravel-plain-sqs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-plain-sqs
Plain Sqs
A custom SQS connector for Laravel (or Lumen) that supports custom format JSON payloads. Out of the box, Laravel expects SQS messages to be generated in specific format - format that includes job handler class and a serialized job.
But in certain cases you may want to parse messages from third party applications, custom JSON messages and so on.
Dependencies
- PHP >= 5.5
- Laravel (or Lumen) >= 5.2
Installation via Composer
To install simply run:
Or add it to composer.json
manually:
Usage in Laravel 5
Usage in Lumen 5
Configuration
Edit config/sqs-plain.php to suit your needs. This config matches SQS queues with handler classes.
If queue is not found in 'handlers' array, SQS payload is passed to default handler.
Add sqs-plain connection to your config/queue.php, eg:
In your .env file, choose sqs-plain as your new default queue driver:
Dispatching to SQS
If you plan to push plain messages from Laravel or Lumen, you can rely on DispatcherJob:
This will push the following JSON object to SQS:
'job' field is not used, actually. It's just kept for compatibility sake.
Receiving from SQS
If a third-party application is creating custom-format JSON messages, just add a handler in the config file and implement a handler class as follows:
Todo
- Add more unit and integration tests
License
The MIT License (MIT) Copyright (c) 2016 Denis Mysenko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
All versions of laravel-plain-sqs with dependencies
illuminate/support Version 5.*|6.*
illuminate/queue Version 5.*|6.*
illuminate/bus Version 5.*|6.*
aws/aws-sdk-php Version ~3.0