Created
April 25, 2026 19:06
-
-
Save blopa/fac62051ac3dd2937e28ebf8b7cf7346 to your computer and use it in GitHub Desktop.
Code for post "I built a retro RPG game shop extension for my Magento 2 store"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app/code/Werules/GameShop/ | |
| ├── Api/ | |
| │ ├── CartManagementInterface.php | |
| │ ├── CategoryManagementInterface.php | |
| │ ├── ProductManagementInterface.php | |
| ├── Controller/ | |
| │ ├── Index/ | |
| │ │ ├── Index.php | |
| ├── etc/ | |
| │ ├── adminhtml/ | |
| │ │ ├── system.xml | |
| │ ├── frontend/ | |
| │ │ ├── di.xml | |
| │ │ ├── module.xml | |
| │ │ ├── routes.xml | |
| │ ├── webapi.xml | |
| ├── Model/ | |
| │ ├── CartManagement.php | |
| │ ├── CategoryManagement.php | |
| │ ├── ProductManagement.php | |
| ├── view/ | |
| │ ├── frontend/ | |
| │ │ ├── layout/ | |
| │ │ │ ├── werules_gameshop_index_index.xml | |
| │ │ ├── templates/ | |
| │ │ │ ├── index.phtml | |
| │ │ ├── web/ | |
| │ │ │ ├── css/ | |
| │ │ │ │ ├── gameshop.css | |
| │ │ │ ├── js/ | |
| │ │ │ │ ├── vue.global.js | |
| │ │ │ │ ├── tailwind.min.js | |
| │ │ │ ├── images/ | |
| │ │ │ │ ├── shopkeeper.png | |
| ├── registration.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment