You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,22 @@ All notable changes to this project will be documented in this file, in reverse
24
24
25
25
- Nothing.
26
26
27
+
## 1.4.1 - 2020-09-02
28
+
29
+
### Release Notes for [1.4.1](https://github.com/laminas/laminas-config-aggregator-parameters/milestone/2)
30
+
31
+
1.4.x bugfix release (patch)
32
+
33
+
### 1.4.1
34
+
35
+
- Total issues resolved: **0**
36
+
- Total pull requests resolved: **1**
37
+
- Total contributors: **1**
38
+
39
+
#### Documentation,Enhancement
40
+
41
+
-[5: Updates version hints, headline and line length in documentation](https://github.com/laminas/laminas-config-aggregator-parameters/pull/5) thanks to @froschdesign
Copy file name to clipboardExpand all lines: docs/book/usage.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Usage
1
+
# Basic Usage
2
2
3
3
This package supplies a [laminas-config-aggregator post processor](https://docs.laminas.dev/laminas-config-aggregator/config-post-processors/)
4
4
that consumes the [Symfony DependencyInjection ParameterBag](https://symfony.com/doc/current/configuration/using_parameters_in_dic.html)
@@ -15,8 +15,9 @@ Parameters may be defined as nested associative arrays as well; in such cases, a
15
15
`.` character references an additional layer of hierarchy to dereference:
16
16
`%foo.bar%` refers to the paramter found at `'foo' => [ 'bar' => 'value' ]`.
17
17
18
-
> Starting in version 1.1.0, you can use parameters which reference other
19
-
> parameters as well.
18
+
> Available since version 1.1.0
19
+
20
+
Parameters which reference other parameters can also be used.
20
21
21
22
If you wish to use a literal `%name%` within your configuration, you **must**
22
23
double-escape the percentage signs: `%%name%%`. Failure to do so will result in
@@ -86,6 +87,11 @@ array(5) {
86
87
87
88
## Parameter Lazy Loading
88
89
89
-
If your parameters are resolved from a database, redis, consul, or any other i/o resource, you can use the `LazyParameterPostProcessor` which consumes just a `callable` which can provide the parameters.
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.
90
95
91
-
In case you are using config-caching, the i/o is not executed when performed in the `callable`.
96
+
In case you are using config-caching, the i/o is not executed when performed in
0 commit comments