-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 9d3bedd
Showing
22 changed files
with
741 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generates Administration Module Structure | ||
|
||
![Generates Administration Module Structure](module-generator.jpg) | ||
|
||
### Installation | ||
|
||
- `composer require allekslar/module-generator` | ||
- `bin/console plugin:refresh` | ||
- `bin/console plugin:install --activate --clearCache AllekslarModuleGenerator` | ||
|
||
### Commands | ||
The first parameter accepts the name of the plugin for which the scaffolding should be generated. | ||
|
||
The second parameter accepts the name of the module. | ||
|
||
- `bin/console allekslar:generate:module <pluginName> <moduleName>` | ||
|
||
or | ||
|
||
- `bin/console allekslar:generate:module` requests options interactively |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "allekslar/module-generator", | ||
"description": "Creates the structure for new administration module", | ||
"type": "shopware-platform-plugin", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "allekslar" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"AllekslarModuleGenerator\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"shopware-plugin-class": "AllekslarModuleGenerator\\AllekslarModuleGenerator", | ||
"label": { | ||
"de-DE": "Administrations modul-generator Shopware 6", | ||
"en-GB": "administration module-generator Shopware 6" | ||
}, | ||
"description": { | ||
"de-DE": "Erstellt die Struktur für das neue Administrationsmodul Shopware 6", | ||
"en-GB": "Creates the structure for new administration module Shopware 6 " | ||
}, | ||
"supportLink": { | ||
"de-DE": "https://github.com/Allekslar", | ||
"en-GB": "https://github.com/Allekslar" | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace AllekslarModuleGenerator; | ||
|
||
use Shopware\Core\Framework\Plugin; | ||
|
||
class AllekslarModuleGenerator extends Plugin | ||
{ | ||
} |
Oops, something went wrong.