best4u/module-backend

Best4u Backend module for Magento 2

Maintainers

Package info

github.com/best4u-magento/best4u-module-backend

Language:Less

Type:magento2-module

pkg:composer/best4u/module-backend

Statistics

Installs: 15

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.12 2025-06-11 06:11 UTC

This package is auto-updated.

Last update: 2026-03-22 05:43:57 UTC


README

A base Magento 2 backend module designed to serve as the foundation for all other Best4u Magento 2 extensions.

Table of Contents

Requirements

  • Magento 2.4.5 or later
  • PHP 7.4 or 8.x
  • Composer 2.x

Installation

Install the module via Composer:

  1. Add the repository to your Composer configuration:
composer config repositories.best4u-backend vcs [repository-url]
  1. Require the module (without updating immediately):
composer require best4u/module-backend --no-update
  1. Update Composer dependencies:
composer update best4u/module-backend
  1. Enable the module in Magento:
bin/magento module:enable Best4u_Backend
  1. Run the upgrade and deploy commands:
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento setup:static-content:deploy -f -s standard
bin/magento cache:flush

Usage

Once enabled, downstream modules can declare Best4u_Backend as a dependency in their module.xml:

<sequence>
    <module name="Best4u_Backend"/>
</sequence>

Uninstallation

To remove the module, run the following commands:

bin/magento module:disable Best4u_Backend
composer remove best4u/module-backend
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento setup:static-content:deploy -f -s standard
bin/magento cache:flush

Support

For questions, bug reports, or contributions, please contact us at magento@best4u.nl or open an issue in the repository.