Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs #214

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 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">Yii Cycle ORM support</h1>
<br>
Expand All @@ -22,15 +22,15 @@ Read more in the [official documentation](https://cycle-orm.dev/docs/readme/2.x)

## Documentation

- Guide: [English](docs/guide/en/README.md), [Português - Brasil](docs/guide/pt-BR/README.md), [Русский](docs/guide/ru/README.md), [Spanish](docs/guide/es/README.md)
- Guide: [English](docs/guide/en/README.md), [Español](docs/guide/es/README.md), [Português - Brasil](docs/guide/pt-BR/README.md), [Русский](docs/guide/ru/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.
You may also check out other [Yii Community Resources](https://www.yiiframework.com/community).

## License

The Yii Cycle ORM support is free software. It is released under the terms of the BSD License.
The Yii Cycle ORM is free software. It is released under the terms of the BSD License.
Please see [`LICENSE`](./LICENSE.md) for more information.

Maintained by [Yii Software](https://www.yiiframework.com/).
Expand Down
19 changes: 16 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,22 @@
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii-cycle/issues?state=open",
"source": "https://github.com/yiisoft/yii-cycle",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"source": "https://github.com/yiisoft/yii-cycle"
"chat": "https://t.me/yii3en"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/yiisoft"
},
{
"type": "github",
"url": "https://github.com/sponsors/yiisoft"
}
],
"require": {
"php": "^8.1",
"cycle/annotated": "^3.5",
Expand All @@ -39,7 +50,7 @@
"yiisoft/friendly-exception": "^1.1",
"yiisoft/injector": "^1.1",
"symfony/console": "^6.4",
"symfony/finder":"^5.4"
"symfony/finder": "^5.4"
},
"require-dev": {
"ext-uopz": "*",
Expand Down Expand Up @@ -67,7 +78,9 @@
"psr-4": {
"Yiisoft\\Yii\\Cycle\\Tests\\": "tests"
},
"files": ["tests/bootstrap.php"]
"files": [
"tests/bootstrap.php"
]
},
"extra": {
"branch-alias": {
Expand Down
Loading