create-berna-stencil 1.0.18 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. package/bin/create.js +1 -1
  2. package/package.json +2 -2
  3. package/src/api/core/composer.lock +492 -574
  4. package/src/api/core/vendor/autoload.php +22 -22
  5. package/src/api/core/vendor/composer/ClassLoader.php +579 -579
  6. package/src/api/core/vendor/composer/LICENSE +21 -21
  7. package/src/api/core/vendor/composer/autoload_classmap.php +15 -15
  8. package/src/api/core/vendor/composer/autoload_files.php +12 -12
  9. package/src/api/core/vendor/composer/autoload_namespaces.php +9 -9
  10. package/src/api/core/vendor/composer/autoload_psr4.php +15 -16
  11. package/src/api/core/vendor/composer/autoload_real.php +50 -50
  12. package/src/api/core/vendor/composer/autoload_static.php +81 -86
  13. package/src/api/core/vendor/composer/installed.json +6 -91
  14. package/src/api/core/vendor/composer/installed.php +2 -11
  15. package/src/api/core/vendor/composer/platform_check.php +25 -25
  16. package/src/api/core/vendor/graham-campbell/result-type/.gitattributes +9 -0
  17. package/src/api/core/vendor/graham-campbell/result-type/.github/CODE_OF_CONDUCT.md +132 -0
  18. package/src/api/core/vendor/graham-campbell/result-type/.github/CONTRIBUTING.md +31 -0
  19. package/src/api/core/vendor/graham-campbell/result-type/.github/FUNDING.yml +2 -0
  20. package/src/api/core/vendor/graham-campbell/result-type/.github/SECURITY.md +14 -0
  21. package/src/api/core/vendor/graham-campbell/result-type/.github/workflows/stale.yml +11 -0
  22. package/src/api/core/vendor/graham-campbell/result-type/.github/workflows/tests.yml +40 -0
  23. package/src/api/core/vendor/graham-campbell/result-type/CHANGELOG.md +53 -0
  24. package/src/api/core/vendor/graham-campbell/result-type/LICENSE +21 -0
  25. package/src/api/core/vendor/graham-campbell/result-type/README.md +42 -0
  26. package/src/api/core/vendor/graham-campbell/result-type/composer.json +33 -0
  27. package/src/api/core/vendor/graham-campbell/result-type/phpunit.xml.dist +13 -0
  28. package/src/api/core/vendor/graham-campbell/result-type/src/Error.php +121 -0
  29. package/src/api/core/vendor/graham-campbell/result-type/src/Result.php +69 -0
  30. package/src/api/core/vendor/graham-campbell/result-type/src/Success.php +120 -0
  31. package/src/api/core/vendor/graham-campbell/result-type/tests/ResultTest.php +95 -0
  32. package/src/api/core/vendor/phpoption/phpoption/.gitattributes +13 -0
  33. package/src/api/core/vendor/phpoption/phpoption/.github/CODE_OF_CONDUCT.md +132 -0
  34. package/src/api/core/vendor/phpoption/phpoption/.github/CONTRIBUTING.md +30 -0
  35. package/src/api/core/vendor/phpoption/phpoption/.github/FUNDING.yml +2 -0
  36. package/src/api/core/vendor/phpoption/phpoption/.github/SECURITY.md +14 -0
  37. package/src/api/core/vendor/phpoption/phpoption/.github/workflows/static.yml +40 -0
  38. package/src/api/core/vendor/phpoption/phpoption/.github/workflows/tests.yml +40 -0
  39. package/src/api/core/vendor/phpoption/phpoption/LICENSE +201 -0
  40. package/src/api/core/vendor/phpoption/phpoption/Makefile +17 -0
  41. package/src/api/core/vendor/phpoption/phpoption/README.md +201 -0
  42. package/src/api/core/vendor/phpoption/phpoption/composer.json +50 -0
  43. package/src/api/core/vendor/phpoption/phpoption/phpstan-baseline.neon +44 -0
  44. package/src/api/core/vendor/phpoption/phpoption/phpstan.neon.dist +7 -0
  45. package/src/api/core/vendor/phpoption/phpoption/phpunit.xml.dist +13 -0
  46. package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php +175 -0
  47. package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/None.php +136 -0
  48. package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/Option.php +434 -0
  49. package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/Some.php +169 -0
  50. package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php +72 -0
  51. package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php +357 -0
  52. package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php +153 -0
  53. package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php +166 -0
  54. package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php +194 -0
  55. package/src/api/core/vendor/phpoption/phpoption/tests/bootstrap.php +8 -0
  56. package/src/api/core/vendor/phpoption/phpoption/vendor-bin/phpstan/composer.json +8 -0
  57. package/src/api/core/vendor/symfony/polyfill-ctype/Ctype.php +232 -0
  58. package/src/api/core/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  59. package/src/api/core/vendor/symfony/polyfill-ctype/README.md +12 -0
  60. package/src/api/core/vendor/symfony/polyfill-ctype/bootstrap.php +50 -0
  61. package/src/api/core/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -0
  62. package/src/api/core/vendor/symfony/polyfill-ctype/composer.json +38 -0
  63. package/src/api/core/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  64. package/src/api/core/vendor/symfony/polyfill-mbstring/Mbstring.php +1077 -0
  65. package/src/api/core/vendor/symfony/polyfill-mbstring/README.md +13 -0
  66. package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -0
  67. package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
  68. package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  69. package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -0
  70. package/src/api/core/vendor/symfony/polyfill-mbstring/bootstrap.php +171 -0
  71. package/src/api/core/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -0
  72. package/src/api/core/vendor/symfony/polyfill-mbstring/composer.json +39 -0
  73. package/src/api/core/vendor/symfony/polyfill-php80/LICENSE +19 -0
  74. package/src/api/core/vendor/symfony/polyfill-php80/Php80.php +115 -0
  75. package/src/api/core/vendor/symfony/polyfill-php80/PhpToken.php +106 -0
  76. package/src/api/core/vendor/symfony/polyfill-php80/README.md +25 -0
  77. package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -0
  78. package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -0
  79. package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -0
  80. package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -0
  81. package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -0
  82. package/src/api/core/vendor/symfony/polyfill-php80/bootstrap.php +42 -0
  83. package/src/api/core/vendor/symfony/polyfill-php80/composer.json +37 -0
  84. package/src/api/core/vendor/vlucas/phpdotenv/.editorconfig +15 -0
  85. package/src/api/core/vendor/vlucas/phpdotenv/.gitattributes +15 -0
  86. package/src/api/core/vendor/vlucas/phpdotenv/.github/CODE_OF_CONDUCT.md +132 -0
  87. package/src/api/core/vendor/vlucas/phpdotenv/.github/CONTRIBUTING.md +30 -0
  88. package/src/api/core/vendor/vlucas/phpdotenv/.github/FUNDING.yml +2 -0
  89. package/src/api/core/vendor/vlucas/phpdotenv/.github/SECURITY.md +14 -0
  90. package/src/api/core/vendor/vlucas/phpdotenv/.github/workflows/static.yml +40 -0
  91. package/src/api/core/vendor/vlucas/phpdotenv/.github/workflows/tests.yml +70 -0
  92. package/src/api/core/vendor/vlucas/phpdotenv/LICENSE +30 -0
  93. package/src/api/core/vendor/vlucas/phpdotenv/Makefile +17 -0
  94. package/src/api/core/vendor/vlucas/phpdotenv/README.md +370 -0
  95. package/src/api/core/vendor/vlucas/phpdotenv/UPGRADING.md +196 -0
  96. package/src/api/core/vendor/vlucas/phpdotenv/composer.json +60 -0
  97. package/src/api/core/vendor/vlucas/phpdotenv/phpstan-baseline.neon +157 -0
  98. package/src/api/core/vendor/vlucas/phpdotenv/phpstan.neon.dist +7 -0
  99. package/src/api/core/vendor/vlucas/phpdotenv/phpunit.xml.dist +13 -0
  100. package/src/api/core/vendor/vlucas/phpdotenv/src/Dotenv.php +267 -0
  101. package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php +12 -0
  102. package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php +12 -0
  103. package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php +12 -0
  104. package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php +12 -0
  105. package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php +12 -0
  106. package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/Loader.php +48 -0
  107. package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php +20 -0
  108. package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/Resolver.php +65 -0
  109. package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Entry.php +59 -0
  110. package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php +299 -0
  111. package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Lexer.php +58 -0
  112. package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Lines.php +127 -0
  113. package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Parser.php +53 -0
  114. package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php +19 -0
  115. package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Value.php +88 -0
  116. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php +15 -0
  117. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php +89 -0
  118. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php +80 -0
  119. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php +88 -0
  120. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php +85 -0
  121. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php +110 -0
  122. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php +48 -0
  123. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php +64 -0
  124. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php +91 -0
  125. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php +17 -0
  126. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php +104 -0
  127. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php +88 -0
  128. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php +27 -0
  129. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php +107 -0
  130. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php +272 -0
  131. package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php +51 -0
  132. package/src/api/core/vendor/vlucas/phpdotenv/src/Store/File/Paths.php +44 -0
  133. package/src/api/core/vendor/vlucas/phpdotenv/src/Store/File/Reader.php +81 -0
  134. package/src/api/core/vendor/vlucas/phpdotenv/src/Store/FileStore.php +72 -0
  135. package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php +141 -0
  136. package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php +17 -0
  137. package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StringStore.php +37 -0
  138. package/src/api/core/vendor/vlucas/phpdotenv/src/Util/Regex.php +112 -0
  139. package/src/api/core/vendor/vlucas/phpdotenv/src/Util/Str.php +108 -0
  140. package/src/api/core/vendor/vlucas/phpdotenv/src/Validator.php +207 -0
  141. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/DotenvTest.php +387 -0
  142. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Loader/LoaderTest.php +86 -0
  143. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/EntryParserTest.php +234 -0
  144. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LexerTest.php +40 -0
  145. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LinesTest.php +53 -0
  146. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/ParserTest.php +98 -0
  147. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ArrayAdapterTest.php +57 -0
  148. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/EnvConstAdapterTest.php +75 -0
  149. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/PutenvAdapterTest.php +52 -0
  150. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ServerConstAdapterTest.php +75 -0
  151. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/RepositoryTest.php +305 -0
  152. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Store/StoreTest.php +141 -0
  153. package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/ValidatorTest.php +479 -0
  154. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/.env +5 -0
  155. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/assertions.env +18 -0
  156. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/booleans.env +33 -0
  157. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/commented.env +15 -0
  158. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/empty.env +1 -0
  159. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/example.env +1 -0
  160. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/exported.env +7 -0
  161. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/immutable.env +1 -0
  162. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/integers.env +17 -0
  163. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/large.env +2 -0
  164. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multibyte.env +3 -0
  165. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiline.env +14 -0
  166. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiple.env +4 -0
  167. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/mutable.env +1 -0
  168. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/nested.env +15 -0
  169. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/quoted.env +11 -0
  170. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/specialchars.env +8 -0
  171. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/unicodevarnames.env +2 -0
  172. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/utf8-with-bom-encoding.env +3 -0
  173. package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/windows.env +1 -0
  174. package/src/api/core/vendor/vlucas/phpdotenv/vendor-bin/phpstan/composer.json +15 -0
@@ -0,0 +1,15 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ interface AdapterInterface extends ReaderInterface, WriterInterface
8
+ {
9
+ /**
10
+ * Create a new instance of the adapter, if it is available.
11
+ *
12
+ * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface>
13
+ */
14
+ public static function create();
15
+ }
@@ -0,0 +1,89 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ use PhpOption\None;
8
+ use PhpOption\Option;
9
+ use PhpOption\Some;
10
+
11
+ final class ApacheAdapter implements AdapterInterface
12
+ {
13
+ /**
14
+ * Create a new apache adapter instance.
15
+ *
16
+ * @return void
17
+ */
18
+ private function __construct()
19
+ {
20
+ //
21
+ }
22
+
23
+ /**
24
+ * Create a new instance of the adapter, if it is available.
25
+ *
26
+ * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface>
27
+ */
28
+ public static function create()
29
+ {
30
+ if (self::isSupported()) {
31
+ /** @var \PhpOption\Option<AdapterInterface> */
32
+ return Some::create(new self());
33
+ }
34
+
35
+ return None::create();
36
+ }
37
+
38
+ /**
39
+ * Determines if the adapter is supported.
40
+ *
41
+ * This happens if PHP is running as an Apache module.
42
+ *
43
+ * @return bool
44
+ */
45
+ private static function isSupported()
46
+ {
47
+ return \function_exists('apache_getenv') && \function_exists('apache_setenv');
48
+ }
49
+
50
+ /**
51
+ * Read an environment variable, if it exists.
52
+ *
53
+ * @param non-empty-string $name
54
+ *
55
+ * @return \PhpOption\Option<string>
56
+ */
57
+ public function read(string $name)
58
+ {
59
+ /** @var \PhpOption\Option<string> */
60
+ return Option::fromValue(apache_getenv($name))->filter(static function ($value) {
61
+ return \is_string($value) && $value !== '';
62
+ });
63
+ }
64
+
65
+ /**
66
+ * Write to an environment variable, if possible.
67
+ *
68
+ * @param non-empty-string $name
69
+ * @param string $value
70
+ *
71
+ * @return bool
72
+ */
73
+ public function write(string $name, string $value)
74
+ {
75
+ return apache_setenv($name, $value);
76
+ }
77
+
78
+ /**
79
+ * Delete an environment variable, if possible.
80
+ *
81
+ * @param non-empty-string $name
82
+ *
83
+ * @return bool
84
+ */
85
+ public function delete(string $name)
86
+ {
87
+ return apache_setenv($name, '');
88
+ }
89
+ }
@@ -0,0 +1,80 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ use PhpOption\Option;
8
+ use PhpOption\Some;
9
+
10
+ final class ArrayAdapter implements AdapterInterface
11
+ {
12
+ /**
13
+ * The variables and their values.
14
+ *
15
+ * @var array<string, string>
16
+ */
17
+ private $variables;
18
+
19
+ /**
20
+ * Create a new array adapter instance.
21
+ *
22
+ * @return void
23
+ */
24
+ private function __construct()
25
+ {
26
+ $this->variables = [];
27
+ }
28
+
29
+ /**
30
+ * Create a new instance of the adapter, if it is available.
31
+ *
32
+ * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface>
33
+ */
34
+ public static function create()
35
+ {
36
+ /** @var \PhpOption\Option<AdapterInterface> */
37
+ return Some::create(new self());
38
+ }
39
+
40
+ /**
41
+ * Read an environment variable, if it exists.
42
+ *
43
+ * @param non-empty-string $name
44
+ *
45
+ * @return \PhpOption\Option<string>
46
+ */
47
+ public function read(string $name)
48
+ {
49
+ return Option::fromArraysValue($this->variables, $name);
50
+ }
51
+
52
+ /**
53
+ * Write to an environment variable, if possible.
54
+ *
55
+ * @param non-empty-string $name
56
+ * @param string $value
57
+ *
58
+ * @return bool
59
+ */
60
+ public function write(string $name, string $value)
61
+ {
62
+ $this->variables[$name] = $value;
63
+
64
+ return true;
65
+ }
66
+
67
+ /**
68
+ * Delete an environment variable, if possible.
69
+ *
70
+ * @param non-empty-string $name
71
+ *
72
+ * @return bool
73
+ */
74
+ public function delete(string $name)
75
+ {
76
+ unset($this->variables[$name]);
77
+
78
+ return true;
79
+ }
80
+ }
@@ -0,0 +1,88 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ use PhpOption\Option;
8
+ use PhpOption\Some;
9
+
10
+ final class EnvConstAdapter implements AdapterInterface
11
+ {
12
+ /**
13
+ * Create a new env const adapter instance.
14
+ *
15
+ * @return void
16
+ */
17
+ private function __construct()
18
+ {
19
+ //
20
+ }
21
+
22
+ /**
23
+ * Create a new instance of the adapter, if it is available.
24
+ *
25
+ * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface>
26
+ */
27
+ public static function create()
28
+ {
29
+ /** @var \PhpOption\Option<AdapterInterface> */
30
+ return Some::create(new self());
31
+ }
32
+
33
+ /**
34
+ * Read an environment variable, if it exists.
35
+ *
36
+ * @param non-empty-string $name
37
+ *
38
+ * @return \PhpOption\Option<string>
39
+ */
40
+ public function read(string $name)
41
+ {
42
+ /** @var \PhpOption\Option<string> */
43
+ return Option::fromArraysValue($_ENV, $name)
44
+ ->filter(static function ($value) {
45
+ return \is_scalar($value);
46
+ })
47
+ ->map(static function ($value) {
48
+ if ($value === false) {
49
+ return 'false';
50
+ }
51
+
52
+ if ($value === true) {
53
+ return 'true';
54
+ }
55
+
56
+ return (string) $value;
57
+ });
58
+ }
59
+
60
+ /**
61
+ * Write to an environment variable, if possible.
62
+ *
63
+ * @param non-empty-string $name
64
+ * @param string $value
65
+ *
66
+ * @return bool
67
+ */
68
+ public function write(string $name, string $value)
69
+ {
70
+ $_ENV[$name] = $value;
71
+
72
+ return true;
73
+ }
74
+
75
+ /**
76
+ * Delete an environment variable, if possible.
77
+ *
78
+ * @param non-empty-string $name
79
+ *
80
+ * @return bool
81
+ */
82
+ public function delete(string $name)
83
+ {
84
+ unset($_ENV[$name]);
85
+
86
+ return true;
87
+ }
88
+ }
@@ -0,0 +1,85 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ final class GuardedWriter implements WriterInterface
8
+ {
9
+ /**
10
+ * The inner writer to use.
11
+ *
12
+ * @var \Dotenv\Repository\Adapter\WriterInterface
13
+ */
14
+ private $writer;
15
+
16
+ /**
17
+ * The variable name allow list.
18
+ *
19
+ * @var string[]
20
+ */
21
+ private $allowList;
22
+
23
+ /**
24
+ * Create a new guarded writer instance.
25
+ *
26
+ * @param \Dotenv\Repository\Adapter\WriterInterface $writer
27
+ * @param string[] $allowList
28
+ *
29
+ * @return void
30
+ */
31
+ public function __construct(WriterInterface $writer, array $allowList)
32
+ {
33
+ $this->writer = $writer;
34
+ $this->allowList = $allowList;
35
+ }
36
+
37
+ /**
38
+ * Write to an environment variable, if possible.
39
+ *
40
+ * @param non-empty-string $name
41
+ * @param string $value
42
+ *
43
+ * @return bool
44
+ */
45
+ public function write(string $name, string $value)
46
+ {
47
+ // Don't set non-allowed variables
48
+ if (!$this->isAllowed($name)) {
49
+ return false;
50
+ }
51
+
52
+ // Set the value on the inner writer
53
+ return $this->writer->write($name, $value);
54
+ }
55
+
56
+ /**
57
+ * Delete an environment variable, if possible.
58
+ *
59
+ * @param non-empty-string $name
60
+ *
61
+ * @return bool
62
+ */
63
+ public function delete(string $name)
64
+ {
65
+ // Don't clear non-allowed variables
66
+ if (!$this->isAllowed($name)) {
67
+ return false;
68
+ }
69
+
70
+ // Set the value on the inner writer
71
+ return $this->writer->delete($name);
72
+ }
73
+
74
+ /**
75
+ * Determine if the given variable is allowed.
76
+ *
77
+ * @param non-empty-string $name
78
+ *
79
+ * @return bool
80
+ */
81
+ private function isAllowed(string $name)
82
+ {
83
+ return \in_array($name, $this->allowList, true);
84
+ }
85
+ }
@@ -0,0 +1,110 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ final class ImmutableWriter implements WriterInterface
8
+ {
9
+ /**
10
+ * The inner writer to use.
11
+ *
12
+ * @var \Dotenv\Repository\Adapter\WriterInterface
13
+ */
14
+ private $writer;
15
+
16
+ /**
17
+ * The inner reader to use.
18
+ *
19
+ * @var \Dotenv\Repository\Adapter\ReaderInterface
20
+ */
21
+ private $reader;
22
+
23
+ /**
24
+ * The record of loaded variables.
25
+ *
26
+ * @var array<string, string>
27
+ */
28
+ private $loaded;
29
+
30
+ /**
31
+ * Create a new immutable writer instance.
32
+ *
33
+ * @param \Dotenv\Repository\Adapter\WriterInterface $writer
34
+ * @param \Dotenv\Repository\Adapter\ReaderInterface $reader
35
+ *
36
+ * @return void
37
+ */
38
+ public function __construct(WriterInterface $writer, ReaderInterface $reader)
39
+ {
40
+ $this->writer = $writer;
41
+ $this->reader = $reader;
42
+ $this->loaded = [];
43
+ }
44
+
45
+ /**
46
+ * Write to an environment variable, if possible.
47
+ *
48
+ * @param non-empty-string $name
49
+ * @param string $value
50
+ *
51
+ * @return bool
52
+ */
53
+ public function write(string $name, string $value)
54
+ {
55
+ // Don't overwrite existing environment variables
56
+ // Ruby's dotenv does this with `ENV[key] ||= value`
57
+ if ($this->isExternallyDefined($name)) {
58
+ return false;
59
+ }
60
+
61
+ // Set the value on the inner writer
62
+ if (!$this->writer->write($name, $value)) {
63
+ return false;
64
+ }
65
+
66
+ // Record that we have loaded the variable
67
+ $this->loaded[$name] = '';
68
+
69
+ return true;
70
+ }
71
+
72
+ /**
73
+ * Delete an environment variable, if possible.
74
+ *
75
+ * @param non-empty-string $name
76
+ *
77
+ * @return bool
78
+ */
79
+ public function delete(string $name)
80
+ {
81
+ // Don't clear existing environment variables
82
+ if ($this->isExternallyDefined($name)) {
83
+ return false;
84
+ }
85
+
86
+ // Clear the value on the inner writer
87
+ if (!$this->writer->delete($name)) {
88
+ return false;
89
+ }
90
+
91
+ // Leave the variable as fair game
92
+ unset($this->loaded[$name]);
93
+
94
+ return true;
95
+ }
96
+
97
+ /**
98
+ * Determine if the given variable is externally defined.
99
+ *
100
+ * That is, is it an "existing" variable.
101
+ *
102
+ * @param non-empty-string $name
103
+ *
104
+ * @return bool
105
+ */
106
+ private function isExternallyDefined(string $name)
107
+ {
108
+ return $this->reader->read($name)->isDefined() && !isset($this->loaded[$name]);
109
+ }
110
+ }
@@ -0,0 +1,48 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ use PhpOption\None;
8
+
9
+ final class MultiReader implements ReaderInterface
10
+ {
11
+ /**
12
+ * The set of readers to use.
13
+ *
14
+ * @var \Dotenv\Repository\Adapter\ReaderInterface[]
15
+ */
16
+ private $readers;
17
+
18
+ /**
19
+ * Create a new multi-reader instance.
20
+ *
21
+ * @param \Dotenv\Repository\Adapter\ReaderInterface[] $readers
22
+ *
23
+ * @return void
24
+ */
25
+ public function __construct(array $readers)
26
+ {
27
+ $this->readers = $readers;
28
+ }
29
+
30
+ /**
31
+ * Read an environment variable, if it exists.
32
+ *
33
+ * @param non-empty-string $name
34
+ *
35
+ * @return \PhpOption\Option<string>
36
+ */
37
+ public function read(string $name)
38
+ {
39
+ foreach ($this->readers as $reader) {
40
+ $result = $reader->read($name);
41
+ if ($result->isDefined()) {
42
+ return $result;
43
+ }
44
+ }
45
+
46
+ return None::create();
47
+ }
48
+ }
@@ -0,0 +1,64 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ final class MultiWriter implements WriterInterface
8
+ {
9
+ /**
10
+ * The set of writers to use.
11
+ *
12
+ * @var \Dotenv\Repository\Adapter\WriterInterface[]
13
+ */
14
+ private $writers;
15
+
16
+ /**
17
+ * Create a new multi-writer instance.
18
+ *
19
+ * @param \Dotenv\Repository\Adapter\WriterInterface[] $writers
20
+ *
21
+ * @return void
22
+ */
23
+ public function __construct(array $writers)
24
+ {
25
+ $this->writers = $writers;
26
+ }
27
+
28
+ /**
29
+ * Write to an environment variable, if possible.
30
+ *
31
+ * @param non-empty-string $name
32
+ * @param string $value
33
+ *
34
+ * @return bool
35
+ */
36
+ public function write(string $name, string $value)
37
+ {
38
+ foreach ($this->writers as $writers) {
39
+ if (!$writers->write($name, $value)) {
40
+ return false;
41
+ }
42
+ }
43
+
44
+ return true;
45
+ }
46
+
47
+ /**
48
+ * Delete an environment variable, if possible.
49
+ *
50
+ * @param non-empty-string $name
51
+ *
52
+ * @return bool
53
+ */
54
+ public function delete(string $name)
55
+ {
56
+ foreach ($this->writers as $writers) {
57
+ if (!$writers->delete($name)) {
58
+ return false;
59
+ }
60
+ }
61
+
62
+ return true;
63
+ }
64
+ }
@@ -0,0 +1,91 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ use PhpOption\None;
8
+ use PhpOption\Option;
9
+ use PhpOption\Some;
10
+
11
+ final class PutenvAdapter implements AdapterInterface
12
+ {
13
+ /**
14
+ * Create a new putenv adapter instance.
15
+ *
16
+ * @return void
17
+ */
18
+ private function __construct()
19
+ {
20
+ //
21
+ }
22
+
23
+ /**
24
+ * Create a new instance of the adapter, if it is available.
25
+ *
26
+ * @return \PhpOption\Option<\Dotenv\Repository\Adapter\AdapterInterface>
27
+ */
28
+ public static function create()
29
+ {
30
+ if (self::isSupported()) {
31
+ /** @var \PhpOption\Option<AdapterInterface> */
32
+ return Some::create(new self());
33
+ }
34
+
35
+ return None::create();
36
+ }
37
+
38
+ /**
39
+ * Determines if the adapter is supported.
40
+ *
41
+ * @return bool
42
+ */
43
+ private static function isSupported()
44
+ {
45
+ return \function_exists('getenv') && \function_exists('putenv');
46
+ }
47
+
48
+ /**
49
+ * Read an environment variable, if it exists.
50
+ *
51
+ * @param non-empty-string $name
52
+ *
53
+ * @return \PhpOption\Option<string>
54
+ */
55
+ public function read(string $name)
56
+ {
57
+ /** @var \PhpOption\Option<string> */
58
+ return Option::fromValue(\getenv($name), false)->filter(static function ($value) {
59
+ return \is_string($value);
60
+ });
61
+ }
62
+
63
+ /**
64
+ * Write to an environment variable, if possible.
65
+ *
66
+ * @param non-empty-string $name
67
+ * @param string $value
68
+ *
69
+ * @return bool
70
+ */
71
+ public function write(string $name, string $value)
72
+ {
73
+ \putenv("$name=$value");
74
+
75
+ return true;
76
+ }
77
+
78
+ /**
79
+ * Delete an environment variable, if possible.
80
+ *
81
+ * @param non-empty-string $name
82
+ *
83
+ * @return bool
84
+ */
85
+ public function delete(string $name)
86
+ {
87
+ \putenv($name);
88
+
89
+ return true;
90
+ }
91
+ }
@@ -0,0 +1,17 @@
1
+ <?php
2
+
3
+ declare(strict_types=1);
4
+
5
+ namespace Dotenv\Repository\Adapter;
6
+
7
+ interface ReaderInterface
8
+ {
9
+ /**
10
+ * Read an environment variable, if it exists.
11
+ *
12
+ * @param non-empty-string $name
13
+ *
14
+ * @return \PhpOption\Option<string>
15
+ */
16
+ public function read(string $name);
17
+ }