Skip to content
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
11 changes: 1 addition & 10 deletions src/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export default {
nav: [
{text: 'Guide', link: '/guide/'},
{text: 'Cookbook', link: '/cookbook/'},
{text: 'Third-Party Integrations', link: '/third-party-integrations/'},
{text: 'Internals', link: '/internals/'},
{text: 'Site', link: 'https://www.yiiframework.com'}
],
Expand Down Expand Up @@ -209,7 +208,7 @@ export default {
{text: 'Sentry Integration', link: '/cookbook/sentry-integration'},
{text: 'Using a Custom Migration Template', link: '/cookbook/custom-migration-template'},
{text: 'Using Yii in Third-Party Applications', link: '/cookbook/using-yii-in-third-party-apps'},
{text: 'Third-Party Integrations', link: '/third-party-integrations/'}
{text: 'Third-Party Integrations', link: '/cookbook/third-party-integrations/'}
]
},
{
Expand Down Expand Up @@ -249,14 +248,6 @@ export default {
]
}
],
'/third-party-integrations/': [
{
text: 'Third-Party Integrations',
items: [
{text: 'Symfony Messenger integration guide', link: '/third-party-integrations/symfony-messenger-integration-guide'},
]
}
],
'/internals/': [
{
text: 'Internals',
Expand Down
1 change: 1 addition & 0 deletions src/cookbook/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This book conforms to the [Terms of Yii Documentation](https://www.yiiframework.
- [Sentry integration](sentry-integration.md)
- [Using a custom migration template](custom-migration-template.md)
- [Using Yii in third-party applications](using-yii-in-third-party-apps.md)
- [Third-party integrations](third-party-integrations/index.md)
- [Working on Windows](working-on-windows.md)
- [Opening files directly in PhpStorm](opening-files-in-phpstorm.md)
- [Configuring Xdebug](configuring-xdebug.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Third-Party Integrations

Third-Party Integrations is a collection of community-contributed guides for Third-Party integrated packages.
This is a collection of community-contributed guides for integrating third-party packages with Yii3.

- The Yii community creates the guides.
- Yii core team members curate and edit it.
Expand Down
1 change: 0 additions & 1 deletion src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ features:

- [The Definitive Guide](guide/) — the comprehensive guide covering all aspects of the framework.
- [Community Cookbook](cookbook/) — a collection of community-contributed tips, tricks, and solutions for common Yii development tasks.
- [Third-Party Integrations](third-party-integrations/) — a collection of community-contributed guides for Third-Party integrated packages.
- [Internals](internals/) — documentation for developers contributing to the Yii framework itself, including guidelines, workflows, and best
practices.
Loading