├── .gitignore
├── registration.php
├── .styleci.yml
├── .gitlab-ci.yml
├── etc
├── module.xml
├── frontend
│ └── routes.xml
├── di.xml
└── widget.xml
├── .github
└── workflows
│ ├── phpcs.yml
│ ├── phpcompatibility.yml
│ ├── phpcsfixer.yml
│ └── phpstan.yml
├── phpstan.neon
├── Block
├── Link.php
├── Navigation
│ └── State.php
├── Navigation.php
├── Product
│ └── ListProduct.php
└── Widget
│ └── Special.php
├── .travis.yml
├── view
└── frontend
│ ├── layout
│ ├── default.xml
│ └── special_index_index.xml
│ └── templates
│ └── product
│ └── widget
│ └── special
│ ├── column
│ ├── special_images_list.phtml
│ ├── special_names_list.phtml
│ └── special_default_list.phtml
│ └── content
│ ├── special_grid.phtml
│ └── special_list.phtml
├── composer.json
├── Controller
└── Index
│ └── Index.php
├── .php-cs-fixer.dist.php
├── Model
├── Layer
│ └── Resolver.php
├── ResourceModel
│ └── Layer
│ │ └── Filter
│ │ └── Price.php
└── Layer.php
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | /.idea
3 | /.vscode
--------------------------------------------------------------------------------
/registration.php:
--------------------------------------------------------------------------------
1 |
2 |