Skip to content

Commit d03edb5

Browse files
froschdesignboesing
authored andcommitted
Updates page strcuture of documentation
Signed-off-by: Frank Brückner <[email protected]>
1 parent a38657e commit d03edb5

File tree

5 files changed

+35
-31
lines changed

5 files changed

+35
-31
lines changed

docs/book/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
../../README.md

docs/book/introduction.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Introduction
2+
3+
This package supplies a [laminas-config-aggregator post processor](https://docs.laminas.dev/laminas-config-aggregator/config-post-processors/)
4+
that consumes the [Symfony DependencyInjection ParameterBag](https://symfony.com/doc/current/configuration/using_parameters_in_dic.html)
5+
in order to allow users to define parameters to re-use within their
6+
configuration.
7+
8+
As an example, one could define an API key, cache path, or other common
9+
filesystem location _once_ as a _parameter_, and then refer to that parameter
10+
_multiple times_ within the configuration, in order to simplify updates to the
11+
value.
12+
13+
Parameters are referenced within configuration using `%name%` notation.
14+
Parameters may be defined as nested associative arrays as well; in such cases, a
15+
`.` character references an additional layer of hierarchy to dereference:
16+
`%foo.bar%` refers to the paramter found at `'foo' => [ 'bar' => 'value' ]`.
17+
18+
> Available since version 1.1.0
19+
20+
Parameters which reference other parameters can also be used.

docs/book/parameter-lazy-loading.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Parameter Lazy Loading
2+
3+
> Available since version 1.4.0
4+
5+
If your parameters are resolved from a database, redis, consul, or any other i/o
6+
resource, you can use the `LazyParameterPostProcessor` which consumes just a
7+
`callable` which can provide the parameters.
8+
9+
In case you are using config-caching, the i/o is not executed when performed in the `callable`.

docs/book/usage.md

-30
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
11
# Basic Usage
22

3-
This package supplies a [laminas-config-aggregator post processor](https://docs.laminas.dev/laminas-config-aggregator/config-post-processors/)
4-
that consumes the [Symfony DependencyInjection ParameterBag](https://symfony.com/doc/current/configuration/using_parameters_in_dic.html)
5-
in order to allow users to define parameters to re-use within their
6-
configuration.
7-
8-
As an example, one could define an API key, cache path, or other common
9-
filesystem location _once_ as a _parameter_, and then refer to that parameter
10-
_multiple times_ within the configuration, in order to simplify updates to the
11-
value.
12-
13-
Parameters are referenced within configuration using `%name%` notation.
14-
Parameters may be defined as nested associative arrays as well; in such cases, a
15-
`.` character references an additional layer of hierarchy to dereference:
16-
`%foo.bar%` refers to the paramter found at `'foo' => [ 'bar' => 'value' ]`.
17-
18-
> Available since version 1.1.0
19-
20-
Parameters which reference other parameters can also be used.
21-
223
If you wish to use a literal `%name%` within your configuration, you **must**
234
double-escape the percentage signs: `%%name%%`. Failure to do so will result in
245
an exception when post-processing the configuration.
@@ -84,14 +65,3 @@ array(5) {
8465
}
8566
}
8667
```
87-
88-
## Parameter Lazy Loading
89-
90-
> Available since version 1.4.0
91-
92-
If your parameters are resolved from a database, redis, consul, or any other i/o
93-
resource, you can use the `LazyParameterPostProcessor` which consumes just a
94-
`callable` which can provide the parameters.
95-
96-
In case you are using config-caching, the i/o is not executed when performed in
97-
the `callable`.

mkdocs.yml

+6
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ docs_dir: docs/book
33
site_dir: docs/html
44
nav:
55
- Home: index.md
6+
- Introduction: introduction.md
67
- Basic Usage: usage.md
8+
- Parameter Lazy Loading: parameter-lazy-loading.md
79
site_description: 'PostProcessor extension for laminas/laminas-config-aggregator to allow usage of templated parameters within your configuration'
810
repo_url: 'https://github.com/laminas/laminas-config-aggregator-parameters'
911
extra:
1012
project: Components
13+
related_documentations:
14+
headline: Related Components
15+
links:
16+
- laminas-config-aggregator: https://docs.laminas.dev/laminas-config-aggregator/

0 commit comments

Comments
 (0)