Download the PHP package justbetter/laravel-magento-async without Composer
On this page you can find all versions of the php package justbetter/laravel-magento-async. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download justbetter/laravel-magento-async
More information about justbetter/laravel-magento-async
Files in justbetter/laravel-magento-async
Package laravel-magento-async
Short Description Interact with Magento via Async requests
License MIT
Informations about the package laravel-magento-async
Laravel Magento Async
This package provides a way to store async/bulk requests to Magento to later retrieve the status of the operation and handle the status. It works by storing the send async request with the operations in the database and retrieving the statuses periodically.
Once the status of an operation changes an event is fired. It is possible to relate any model to an operation which makes it possible to know where the operation originates from and handle the operation result.
Installation
This package is an extension of justbetter/laravel-magento-client. Be sure to install and configure that package first.
Require this package:
Optionally, publish the configuration file of this package to edit the queue and cleanup time.
Scheduler
In order to update and cleanup the statuses of the async operation two commands are required in your scheduler:
Usage
This package provides a MagentoAsync
client to send requests.
An event will later be dispatched by the package to inform the application that the operation has been processed
You can listen to this event to handle the operation result.
Sending the request
To send an async (bulk) request using this package use the MagentoAsync
client:
The subjects array is a list of models, the indexes have to match with the payload in order to bind Magento's operation id with the correct model.
When sending non-bulk requests a ->subject()
method is available:
Retrieving the operation status
This package provides an event that dispatches for all operations: \JustBetter\MagentoAsync\Events\BulkOperationStatusEvent
.
The event includes the bulk operation that has been updated for you to handle the response.
This event dispatches for all operation changes, you can use the operation model to determine what endpoint was called
If you have bound a subject the package provides an abstract listener \JustBetter\MagentoAsync\Listeners\BulkOperationStatusListener
.
This class provides a way to filter on a specific model and ignore the Open
status.
Example implementation:
Quality
To ensure the quality of this package, run the following command:
This will execute three tasks:
- Makes sure all tests are passed
- Checks for any issues using static code analysis
- Checks if the code is correctly formatted
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Vincent Boon
- Ramon Rietdijk
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-magento-async with dependencies
guzzlehttp/guzzle Version ^7.5
justbetter/laravel-magento-client Version ^2.4
justbetter/laravel-magento-webhooks Version ^2.1
laravel/framework Version ^11.0|^12.0