degdigital / magerun-addons
Addon commands for N98 MageRun
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 10
Forks: 1
Open Issues: 0
pkg:composer/degdigital/magerun-addons
Requires
- php: >=5.3.0
Requires (Dev)
- n98/magerun: 1.91.*
- phpunit/phpunit: 4.1.*
This package is auto-updated.
Last update: 2025-09-27 15:00:13 UTC
README
Some additional commands for the excellent N98-MageRun Magento command-line tool.
The purpose of this project is just to have an easy way to deploy new, custom commands that we need for Magento development and automated testing.
Installation
There are a few options.
Here's the easiest:
-
Create ~/.n98-magerun/modules/ if it doesn't already exist.
mkdir -p ~/.n98-magerun/modules/
-
Clone the magerun-commands repository in there
cd ~/.n98-magerun/modules/ git clone git@github.com:degdigital/magerun-commands.git
Commands
Export Dataset
This command will export a specific list of table(s).
$ n98-magerun db:export --tables="catalog_product_entity" --where-limit=100
It's intended to be used to export a partial dataset(catalog, customers, orders) for automated testing.