Skip to content

Commit cb489a3

Browse files
committed
Start preparing navigation structure
1 parent d923c95 commit cb489a3

18 files changed

+61
-28
lines changed

Diff for: docs/async_event_dispatcher/quick_tour.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Enqueue is an MIT-licensed open source project with its ongoing development made
1414
# Async event dispatcher (Symfony)
1515

1616
The doc shows how you can setup async event dispatching in plain PHP.
17-
If you are looking for the ways to use it in Symfony application [read this post instead](../bundle/async_events.md)
17+
If you are looking for the ways to use it in Symfony application [read this post instead](../symfony/async_events.md)
1818

1919
* [Installation](#installation)
2020
* [Configuration](#configuration)

Diff for: docs/consumption/extensions.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: Consumption
4+
title: Extensions
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

@@ -14,7 +15,7 @@ Enqueue is an MIT-licensed open source project with its ongoing development made
1415
# Consumption extensions.
1516

1617
You can learn how to register extensions in [quick tour](../quick_tour.md#consumption).
17-
There's dedicated [chapter](../bundle/consumption_extension.md) for how to add extension in Symfony app.
18+
There's dedicated [chapter](../symfony/consumption_extension.md) for how to add extension in Symfony app.
1819

1920
## [LoggerExtension](https://github.com/php-enqueue/enqueue-dev/blob/master/pkg/enqueue/Consumption/Extension/LoggerExtension.php)
2021

Diff for: docs/consumption/index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: default
3+
title: Consumption
4+
nav_order: 2
5+
has_children: true
6+
permalink: /consumption
7+
---
8+
9+
{:toc}

Diff for: docs/consumption/message_processor.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: Consumption
4+
title: Message processors
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/index.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@ Enqueue is an MIT-licensed open source project with its ongoing development made
4747
- [Run unique job](job_queue/run_unique_job.md)
4848
- [Run sub job(s)](job_queue/run_sub_job.md)
4949
* [EnqueueBundle (Symfony)](#enqueue-bundle-symfony).
50-
- [Quick tour](bundle/quick_tour.md)
51-
- [Config reference](bundle/config_reference.md)
52-
- [Cli commands](bundle/cli_commands.md)
53-
- [Message producer](bundle/message_producer.md)
54-
- [Message processor](bundle/message_processor.md)
55-
- [Async events](bundle/async_events.md)
56-
- [Async commands](bundle/async_commands.md)
57-
- [Job queue](bundle/job_queue.md)
58-
- [Consumption extension](bundle/consumption_extension.md)
59-
- [Production settings](bundle/production_settings.md)
60-
- [Debugging](bundle/debugging.md)
61-
- [Functional testing](bundle/functional_testing.md)
50+
- [Quick tour](symfony/quick_tour.md)
51+
- [Config reference](symfony/config_reference.md)
52+
- [Cli commands](symfony/cli_commands.md)
53+
- [Message producer](symfony/message_producer.md)
54+
- [Message processor](symfony/message_processor.md)
55+
- [Async events](symfony/async_events.md)
56+
- [Async commands](symfony/async_commands.md)
57+
- [Job queue](symfony/job_queue.md)
58+
- [Consumption extension](symfony/consumption_extension.md)
59+
- [Production settings](symfony/production_settings.md)
60+
- [Debugging](symfony/debugging.md)
61+
- [Functional testing](symfony/functional_testing.md)
6262
* [Laravel](#laravel)
6363
- [Quick tour](laravel/quick_tour.md)
6464
- [Queues](laravel/queues.md)

Diff for: docs/bundle/async_commands.md renamed to docs/symfony/async_commands.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Async commands
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/async_events.md renamed to docs/symfony/async_events.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Async events
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/cli_commands.md renamed to docs/symfony/cli_commands.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: CLI commands
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/config_reference.md renamed to docs/symfony/config_reference.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Config reference
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/consumption_extension.md renamed to docs/symfony/consumption_extension.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Consumption extension
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/debugging.md renamed to docs/symfony/debugging.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Debugging
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/functional_testing.md renamed to docs/symfony/functional_testing.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Functional testing
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/symfony/index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: default
3+
title: "Symfony bundle"
4+
nav_order: 8
5+
has_children: true
6+
permalink: /symfony
7+
---
8+
9+
{:toc}

Diff for: docs/bundle/job_queue.md renamed to docs/symfony/job_queue.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Job queue
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/message_processor.md renamed to docs/symfony/message_processor.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Message processor
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/message_producer.md renamed to docs/symfony/message_producer.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Message producer
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/production_settings.md renamed to docs/symfony/production_settings.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Production settings
45
---
56
<h2 align="center">Supporting Enqueue</h2>
67

Diff for: docs/bundle/quick_tour.md renamed to docs/symfony/quick_tour.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
layout: default
3-
nav_exclude: true
3+
parent: "Symfony bundle"
4+
title: Quick tour
5+
nav_order: -1
46
---
57
<h2 align="center">Supporting Enqueue</h2>
68

0 commit comments

Comments
 (0)