We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 223bb55 + 9dd52ca commit 0a14e29Copy full SHA for 0a14e29
1 file changed
README.md
@@ -9,7 +9,7 @@ This library requires PHP 7.1 or later.
9
## Install
10
11
```bash
12
-composer install platformsh/config-reader
+composer require platformsh/config-reader
13
```
14
15
## Usage Example
@@ -116,7 +116,7 @@ The return value of `credentials()` is an associative array matching the relatio
116
To make sure that a relationship is defined before you try to access credentials out of it, use the `hasRelationship()` method:
117
118
```php
119
-if ($config->hasRelationship('database') {
+if ($config->hasRelationship('database')) {
120
$creds = $conifg->credentials('database');
121
// ...
122
}
0 commit comments