From 033701e11dbb30bf7ba9ec0d2a84ebcfe0effca3 Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:14:20 -0300 Subject: [PATCH 1/6] Update README.md Co-authored-by: Alexander Makarov --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index f856bf0..87918ba 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,6 @@ The file paths are relative to the [source-directory](#source-directory), which ### Markers - `?` - marks optional files. Absence of files not marked with this marker will cause exception. - ```php "params": [ "params.php", From 840189373e47412877f33f4fc624206d8936156b Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:14:37 -0300 Subject: [PATCH 2/6] Update README.md Co-authored-by: Alexander Makarov --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 87918ba..8829cfe 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,6 @@ The file paths are relative to the [source-directory](#source-directory), which "?params-local.php" ] ``` - It's okay if `params-local.php` will not be found, but it's not okay if `params.php` will be absent. - `*` - marks wildcard path. It means zero or more matches by wildcard mask. From 8637a5a672c36c761dfad8a742c6c1e76caa74ba Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:14:47 -0300 Subject: [PATCH 3/6] Update README.md Co-authored-by: Alexander Makarov --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 8829cfe..d1a3d8e 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,6 @@ The file paths are relative to the [source-directory](#source-directory), which It's okay if `params-local.php` will not be found, but it's not okay if `params.php` will be absent. - `*` - marks wildcard path. It means zero or more matches by wildcard mask. - ```php "web": [ "../src/Modules/*/config/web.php" From 210cf79891ae9c3471884c5f6119fe5cfc13134d Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:15:01 -0300 Subject: [PATCH 4/6] Update README.md Co-authored-by: Alexander Makarov --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index d1a3d8e..7c741a6 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,6 @@ The file paths are relative to the [source-directory](#source-directory), which "../src/Modules/*/config/web.php" ] ``` - It will collect all `web.php` in any sub-folders of `src/Modules/` in `config` folder. However, if the configuration folder is packaged as part of the `PHAR` archive, the configuration files will not be uploaded. In this case, you must explicitly specify each configuration file. From 08c24dd198edcaff95ce663233958927881b569a Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:15:09 -0300 Subject: [PATCH 5/6] Update README.md Co-authored-by: Alexander Makarov --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 7c741a6..7ab2670 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,6 @@ The file paths are relative to the [source-directory](#source-directory), which files will not be uploaded. In this case, you must explicitly specify each configuration file. - `$` - reference to another config by its group name. - ```php "params": [ "params.php", From 520f2e270f9a40cf84811e76e250e1494dc49e17 Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:15:19 -0300 Subject: [PATCH 6/6] Update README.md Co-authored-by: Alexander Makarov --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 7ab2670..d4f3100 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,6 @@ The file paths are relative to the [source-directory](#source-directory), which "params-web.php" ] ``` - The config groups `params-console` and `params-web` will both contain the config values from `params.php` and `params-local.php` additional to their own configuration values. ***