Download the PHP package justbetter/laravel-magento-products without Composer
On this page you can find all versions of the php package justbetter/laravel-magento-products. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download justbetter/laravel-magento-products
More information about justbetter/laravel-magento-products
Files in justbetter/laravel-magento-products
Package laravel-magento-products
Short Description Package to store product data in a local DB
License MIT
Informations about the package laravel-magento-products
Magento Products
This package tracks if products exist in Magento by storing the status locally in the DB. We developed this to prevent multiple calls when multiple packages need to check product existence in Magento.
Installation
Require this package:
Add the following to your schedule to automatically search for products in Magento.
[!IMPORTANT] This package requires Job Batching
Usage
Checking if a product exists in Magento
You can use this package to determine if products exist in Magento. For example:
If it does not exist the sku will still be stored in the database. The \JustBetter\MagentoProducts\Commands\CheckKnownProductsExistenceCommand
command will automatically check these known products for existence.
Retrieving product data
You can use this package to retrieve product data. This data will be saved in the database and automatically retrieved when it is older than X hours. You can configure the amount of ours in the config file For example:
Events
When your application discovers new products in Magento you should dispatch one of the following events:
\JustBetter\MagentoProducts\Events\ProductDiscoveredEvent
containing a single sku.
When a single product or multiple products appear in Magento, an event is dispatched:
\JustBetter\MagentoProducts\Events\ProductCreatedInMagentoEvent
containing a single sku.
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
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-magento-products with dependencies
justbetter/laravel-magento-client Version ^2.6.1
laravel/framework Version ^10.0|^11.0