Skip to content

Instantly share code, notes, and snippets.

@schmunk42
Created February 10, 2015 19:49
Show Gist options
  • Save schmunk42/dd8f5130d909618b1c68 to your computer and use it in GitHub Desktop.
Save schmunk42/dd8f5130d909618b1c68 to your computer and use it in GitHub Desktop.
Generating extensions via CLI with Gii
./yii gii/extension \
--vendorName=dmstr \
--packageName=yii2-application-info \
--namespace=dmstr\\modules\\backend\\ \
--license=BSD-3-Clause \
--title="Extended application information for Yii 2.0 Framework" \
--description="Provides in-depth configuration and application information" \
--authorName="Tobias Munk" \
--authorEmail=tobias@diemeisterei.de
./yii gii/extension \
--vendorName=dmstr \
--packageName=yii2-pages-module \
--namespace=dmstr\\modules\\pages\\ \
--license=BSD-3-Clause \
--title="Yii2 Page Manager" \
--description="Application sitemap and navigation manager module for Yii 2.0 Framework" \
--authorName="Tobias Munk" \
--authorEmail=tobias@diemeisterei.de
./yii gii/extension \
--vendorName=dmstr \
--packageName=yii2-vitality-theme \
--namespace=dmstr\\themes\\vitality\\ \
--license=BSD-3-Clause \
--title="Vitality Theme for Yii 2.0 Framework" \
--description="Asset bundle and widgets" \
--authorName="Tobias Munk" \
--authorEmail=tobias@diemeisterei.de
./yii gii/extension \
--vendorName=dmstr \
--packageName=yii2-flattern-theme \
--namespace=dmstr\\themes\\flattern\\ \
--license=BSD-3-Clause \
--title="Flattern Theme for Yii 2.0 Framework" \
--description="Asset bundle and widgets" \
--authorName="Tobias Munk" \
--authorEmail=tobias@diemeisterei.de
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment