├── .gitignore ├── Iazel └── RegenProductUrl │ ├── Console │ └── Command │ │ └── RegenerateProductUrlCommand.php │ ├── etc │ ├── di.xml │ └── module.xml │ └── registration.php ├── LICENSE ├── README.md └── composer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/.gitignore -------------------------------------------------------------------------------- /Iazel/RegenProductUrl/Console/Command/RegenerateProductUrlCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/Iazel/RegenProductUrl/Console/Command/RegenerateProductUrlCommand.php -------------------------------------------------------------------------------- /Iazel/RegenProductUrl/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/Iazel/RegenProductUrl/etc/di.xml -------------------------------------------------------------------------------- /Iazel/RegenProductUrl/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/Iazel/RegenProductUrl/etc/module.xml -------------------------------------------------------------------------------- /Iazel/RegenProductUrl/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/Iazel/RegenProductUrl/registration.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iazel/magento2-regenurl/HEAD/composer.json --------------------------------------------------------------------------------