Skip to content

Commit

Permalink
Changed the base array name to authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
kschroeder committed Jul 25, 2018
1 parent 9547d03 commit 8a91dbf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readme.MD
Expand Up @@ -135,7 +135,7 @@ Now, I know the MCM is new and you probably aren't using it. That's why I provi
session_start();

$config = [
'magium' => [
'authentication' => [
'ad' => [
'client_id' => '<my client id>',
'client_secret' => '<my client secret>',
Expand Down Expand Up @@ -165,7 +165,7 @@ Pretty much the same, but rather than using the `ArrayConfigurationRepository` y

``` php
$yaml = <<<YAML
magium:
authentication:
ad:
client_id: <value>
client_secret: <value>
Expand All @@ -188,7 +188,7 @@ Pretty much the same, but rather than using the `YamlConfigurationRepository` yo
``` php
$json = <<<JSON
{
"magium": {
"authentication": {
"ad": {
"client_id": "<value>",
"client_secret": "<value>",
Expand All @@ -212,7 +212,7 @@ Pretty much the same, but rather than using the `JsonConfigurationRepository` yo

``` php
$ini = <<<INI
[magium]
[authentication]
ad[client_id] = <value>
ad[client_srcret] = <value>
ad[enabled] = yes
Expand Down

0 comments on commit 8a91dbf

Please sign in to comment.