# gii
**Repository Path**: wslys/gii
## Basic Information
- **Project Name**: gii
- **Description**: 代码生成工具
- **Primary Language**: Unknown
- **License**: BSD-3-Clause
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-05-29
- **Last Updated**: 2021-05-29
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
Gii Extension for Yii 2
生成带swagger注释
Installation
------------
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require --dev --prefer-dist wsl/wslgii
```
or add
```
"wsl/wslgii": "*"
```
to the require-dev section of your `composer.json` file.
Usage
-----
Once the extension is installed, simply modify your application configuration as follows:
```php
return [
'bootstrap' => ['gii'],
'modules' => [
'gii' => [
'class' => 'wsl\gii\Module',
],
// ...
],
// ...
];
```