esso / magento2-abandonedcart
Magento 2 module to display abandoned carts in admin dashboard
Package info
github.com/essam-saber/magento-abandoned-cart
Type:magento2-module
pkg:composer/esso/magento2-abandonedcart
1.0.0
2025-07-13 13:03 UTC
Requires
- php: ~7.4.0||~8.1.0||~8.2.0||~8.3.0
- magento/framework: ^103.0||^104.0
- magento/module-backend: *
- magento/module-quote: *
This package is auto-updated.
Last update: 2026-04-13 14:46:50 UTC
README
One-Command Installation
Copy and run this complete command sequence in your Magento root directory:
# Install package composer require esso/magento2-abandonedcart && \ # Enable module bin/magento module:enable Esso_AbandonedCart && \ # Run setup bin/magento setup:upgrade && \ # Compile (production only) bin/magento setup:di:compile && \ bin/magento setup:static-content:deploy -f && \ # Clear caches bin/magento cache:clean && \ bin/magento cache:flush && \ # Verify installation echo "Verification:" && \ bin/magento module:status Esso_AbandonedCart && \ echo "Module installed successfully"