├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Model └── CatalogUrlRewrite │ └── ProductUrlRewriteGenerator.php ├── README.md ├── Test └── Unit │ ├── Model │ └── CatalogUrlRewrite │ │ └── ProductUrlRewriteGeneratorTest.php │ └── bootstrap.php ├── composer.json ├── etc ├── di.xml └── module.xml ├── phpunit.xml.dist └── registration.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Model/CatalogUrlRewrite/ProductUrlRewriteGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/Model/CatalogUrlRewrite/ProductUrlRewriteGenerator.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/README.md -------------------------------------------------------------------------------- /Test/Unit/Model/CatalogUrlRewrite/ProductUrlRewriteGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/Test/Unit/Model/CatalogUrlRewrite/ProductUrlRewriteGeneratorTest.php -------------------------------------------------------------------------------- /Test/Unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/Test/Unit/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/etc/module.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aune-io/magento2-product-category-url-fix/HEAD/registration.php --------------------------------------------------------------------------------