Skip to content

Commit

Permalink
Fix docs (#128)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergei Predvoditelev <[email protected]>
  • Loading branch information
luizcmarin and vjik authored May 23, 2024
1 parent 4ac39ab commit 935c21a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Yii Framework Gii extension Change Log
# Yii Gii extension Change Log

## 1.0.0 under development

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://github.com/yiisoft" target="_blank">
<img src="https://yiisoft.github.io/docs/images/yii_logo.svg" height="100px">
<img src="https://yiisoft.github.io/docs/images/yii_logo.svg" height="100px" alt="Yii">
</a>
<h1 align="center">Gii Extension for Yii</h1>
<br>
Expand Down Expand Up @@ -77,7 +77,7 @@ yii gii/model --tableName=city --modelClass=City

## Documentation

- Guide: [English](docs/guide/en/README.md), [中国人](docs/guide/zh-CN/README.md), [日本語](docs/guide/ja/README.md), [Português - Brasil](docs/guide/pt-BR/README.md), [Русский](docs/guide/ru/README.md)
- Guide: [English](docs/guide/en/README.md), [Português - Brasil](docs/guide/pt-BR/README.md), [Русский](docs/guide/ru/README.md), [日本語](docs/guide/ja/README.md), [中国人](docs/guide/zh-CN/README.md)
- [Internals](docs/internals.md)

If you need help or have a question, the [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) is a good place for that.
Expand Down
12 changes: 11 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,23 @@
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii-gii/issues?state=open",
"source": "https://github.com/yiisoft/yii-gii",
"issues": "https://github.com/yiisoft/yii-gii/issues",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"chat": "https://t.me/yii3en"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/yiisoft"
},
{
"type": "github",
"url": "https://github.com/sponsors/yiisoft"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/en/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The preferred way to install this extension is through [composer](https://getcom
Either run

```
php composer.phar require --dev --prefer-dist yiisoft/yii-gii
composer require --dev yiisoft/yii-gii
```

or add
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/ja/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
下記のコマンドを実行してください。

```
php composer.phar require --dev --prefer-dist yiisoft/yii-gii
composer require --dev yiisoft/yii-gii
```

または、あなたの `composer.json` ファイルの `require` セクションに、下記を追加してください。
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pt-BR/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A maneira preferida para instalar essa extensão é via [composer](https://getco
Então rode

```
php composer.phar require --dev --prefer-dist yiisoft/yii2-gii
composer require --dev yiisoft/yii-gii
```

ou adicione
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/zh-CN/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
执行

```
php composer.phar require --dev --prefer-dist yiisoft/yii-gii
composer require --dev yiisoft/yii-gii
```

或者在项目的 `composer.json` 中的 require-dev 部分添加如下代码
Expand Down

0 comments on commit 935c21a

Please sign in to comment.