justbetter/laravel-magento-utilities

Additional utilities for the Laravel Magento Client

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Type:package

pkg:composer/justbetter/laravel-magento-utilities

1.0.1 2025-10-06 06:15 UTC

This package is auto-updated.

Last update: 2025-10-06 06:16:36 UTC


README

Tests Coverage Analysis Total downloads

A set of common utilities to ease working with Magento. All helpers implement caching to reduce overhead. It will cache the results for a day by default. Caching can be disabled via the configuration file.

Utilities

Currently, this packge provides the following utilities:

  • Fetching all stores.
  • Fetching all websites.

Example

An example to fetch all websites.

use JustBetter\MagentoUtilities\Contracts\GetsWebsites;

$contract = app(GetsWebsites::class);

$websites = $contract->get();

Installation

Install the composer package.

composer require justbetter/laravel-magento-utilities

Setup

Optionally publish the configuration of the package.

php artisan vendor:publish --provider="JustBetter\MagentoUtilities\ServiceProvider" --tag=config

Quality

To ensure the quality of this package, run the following command:

composer quality

This will execute three tasks:

  1. Makes sure all tests are passed
  2. Checks for any issues using static code analysis
  3. 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

License

The MIT License (MIT). Please see License File for more information.

JustBetter logo