|
1 | 1 | # Basic Usage
|
2 | 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. |
21 |
| - |
22 | 3 | If you wish to use a literal `%name%` within your configuration, you **must**
|
23 | 4 | double-escape the percentage signs: `%%name%%`. Failure to do so will result in
|
24 | 5 | an exception when post-processing the configuration.
|
@@ -84,14 +65,3 @@ array(5) {
|
84 | 65 | }
|
85 | 66 | }
|
86 | 67 | ```
|
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`. |
0 commit comments