Download the PHP package mage-os/module-eav-debug-views without Composer

On this page you can find all versions of the php package mage-os/module-eav-debug-views. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package module-eav-debug-views

Mage-OS EAV Debug Views

Developer utility module for Magento 2.4.x that creates database views aggregating EAV entity data with attribute values in JSON format.

[!IMPORTANT]

This module is designed for development and debugging.

While production-installable, consider these factors:

  • Database views may impact performance on large datasets
  • JSON aggregation is resource-intensive for complex queries
  • Intended for temporary debugging, not permanent production use
  • No query optimization beyond entity_id lookups

Suggested Use: Install in development/staging only. Do not write code that would use these views on a live site.

Requirements

Installation

Created Views

1. dev_product

Combines catalog_product_entity with all EAV attributes aggregated as JSON.

Columns:

2025-12-02_134111

Example Query:

Extract Specific Attributes:

2. dev_category

Combines catalog_category_entity with EAV attributes.

Columns:

2025-12-02_133915

Example Query:

3. dev_customer

Combines customer_entity with EAV attributes.

Columns:

2025-12-02_133737

Example Query:

4. dev_address

Combines customer_address_entity with EAV attributes.

Columns:

2025-12-02_134001

Example Query:

5. dev_product_attribute

Quick reference for product attribute metadata.

Columns:

2025-12-02_134337

Example Query:

Store Scope

All EAV views aggregate all store_id values into a single JSON object per entity.

Store-specific attribute keys use the format attribute_code:store_id (e.g., name:1, name:2). Global attributes (store_id = 0) use just the attribute_code (e.g., name, sku).

Example - Querying store-specific values:

For technical reasons, we can't sort attributes alphabetically. Scoped values for an attribute may appear anywhere within the JSON. (MySQL does not support sorting values within JSON_OBJECTAGG(...) in ONLY_FULL_GROUP_BY mode.)

Performance Considerations

Query Optimization

If filtering by attribute values, be careful about the amount of records processed.

Fast:

Not fast:

View Characteristics

Recommendation: Use for ad-hoc debugging queries, not high-frequency production queries.

Uninstallation

This command:

  1. Drops all module views from the database
  2. Removes module from setup_module table
  3. Removes module code (if installed via composer)

Use Cases

Quick Product Debugging

Find Products with Specific Attribute Values

Attribute Discovery

Category Hierarchy Analysis

License

Open Software License (OSL-3.0)

Contributing

Issues and pull requests welcome on GitHub.

Support

This is a community-maintained developer utility. No support or warranty implied. Use at your own risk.

For bugs or feature requests, please open an issue in the GitHub repository.


All versions of module-eav-debug-views with dependencies

PHP Build Version
Package Version
Requires magento/framework Version >=103.0.0
magento/module-eav Version *
magento/module-catalog Version *
magento/module-customer Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mage-os/module-eav-debug-views contains the following files

Loading the files please wait ...