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
@@ -1,21 +1,21 @@
1
-
2
- Copyright (c) Nils Adermann, Jordi Boggiano
3
-
4
- Permission is hereby granted, free of charge, to any person obtaining a copy
5
- of this software and associated documentation files (the "Software"), to deal
6
- in the Software without restriction, including without limitation the rights
7
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- copies of the Software, and to permit persons to whom the Software is furnished
9
- to do so, subject to the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be included in all
12
- copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
- THE SOFTWARE.
21
-
1
+
2
+ Copyright (c) Nils Adermann, Jordi Boggiano
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is furnished
9
+ to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ THE SOFTWARE.
21
+
@@ -1,15 +1,15 @@
1
- <?php
2
-
3
- // autoload_classmap.php @generated by Composer
4
-
5
- $vendorDir = dirname(__DIR__);
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
10
- 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
11
- 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
12
- 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
13
- 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
14
- 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
15
- );
1
+ <?php
2
+
3
+ // autoload_classmap.php @generated by Composer
4
+
5
+ $vendorDir = dirname(__DIR__);
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
10
+ 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
11
+ 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
12
+ 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
13
+ 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
14
+ 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
15
+ );
@@ -1,12 +1,12 @@
1
- <?php
2
-
3
- // autoload_files.php @generated by Composer
4
-
5
- $vendorDir = dirname(__DIR__);
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
10
- '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
11
- 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
12
- );
1
+ <?php
2
+
3
+ // autoload_files.php @generated by Composer
4
+
5
+ $vendorDir = dirname(__DIR__);
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
10
+ '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
11
+ 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
12
+ );
@@ -1,9 +1,9 @@
1
- <?php
2
-
3
- // autoload_namespaces.php @generated by Composer
4
-
5
- $vendorDir = dirname(__DIR__);
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- );
1
+ <?php
2
+
3
+ // autoload_namespaces.php @generated by Composer
4
+
5
+ $vendorDir = dirname(__DIR__);
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ );
@@ -1,16 +1,15 @@
1
- <?php
2
-
3
- // autoload_psr4.php @generated by Composer
4
-
5
- $vendorDir = dirname(__DIR__);
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- 'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
10
- 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
11
- 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
12
- 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption'),
13
- 'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'),
14
- 'GrahamCampbell\\ResultType\\' => array($vendorDir . '/graham-campbell/result-type/src'),
15
- 'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),
16
- );
1
+ <?php
2
+
3
+ // autoload_psr4.php @generated by Composer
4
+
5
+ $vendorDir = dirname(__DIR__);
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ 'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
10
+ 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
11
+ 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
12
+ 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption'),
13
+ 'GrahamCampbell\\ResultType\\' => array($vendorDir . '/graham-campbell/result-type/src'),
14
+ 'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),
15
+ );
@@ -1,50 +1,50 @@
1
- <?php
2
-
3
- // autoload_real.php @generated by Composer
4
-
5
- class ComposerAutoloaderInit06112bd3c7053b3bb5b8a9ea876cbd9f
6
- {
7
- private static $loader;
8
-
9
- public static function loadClassLoader($class)
10
- {
11
- if ('Composer\Autoload\ClassLoader' === $class) {
12
- require __DIR__ . '/ClassLoader.php';
13
- }
14
- }
15
-
16
- /**
17
- * @return \Composer\Autoload\ClassLoader
18
- */
19
- public static function getLoader()
20
- {
21
- if (null !== self::$loader) {
22
- return self::$loader;
23
- }
24
-
25
- require __DIR__ . '/platform_check.php';
26
-
27
- spl_autoload_register(array('ComposerAutoloaderInit06112bd3c7053b3bb5b8a9ea876cbd9f', 'loadClassLoader'), true, true);
28
- self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInit06112bd3c7053b3bb5b8a9ea876cbd9f', 'loadClassLoader'));
30
-
31
- require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f::getInitializer($loader));
33
-
34
- $loader->register(true);
35
-
36
- $filesToLoad = \Composer\Autoload\ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f::$files;
37
- $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
38
- if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
39
- $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
40
-
41
- require $file;
42
- }
43
- }, null, null);
44
- foreach ($filesToLoad as $fileIdentifier => $file) {
45
- $requireFile($fileIdentifier, $file);
46
- }
47
-
48
- return $loader;
49
- }
50
- }
1
+ <?php
2
+
3
+ // autoload_real.php @generated by Composer
4
+
5
+ class ComposerAutoloaderInit108be68e4e2b97fed51d36a10eed0849
6
+ {
7
+ private static $loader;
8
+
9
+ public static function loadClassLoader($class)
10
+ {
11
+ if ('Composer\Autoload\ClassLoader' === $class) {
12
+ require __DIR__ . '/ClassLoader.php';
13
+ }
14
+ }
15
+
16
+ /**
17
+ * @return \Composer\Autoload\ClassLoader
18
+ */
19
+ public static function getLoader()
20
+ {
21
+ if (null !== self::$loader) {
22
+ return self::$loader;
23
+ }
24
+
25
+ require __DIR__ . '/platform_check.php';
26
+
27
+ spl_autoload_register(array('ComposerAutoloaderInit108be68e4e2b97fed51d36a10eed0849', 'loadClassLoader'), true, true);
28
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInit108be68e4e2b97fed51d36a10eed0849', 'loadClassLoader'));
30
+
31
+ require __DIR__ . '/autoload_static.php';
32
+ call_user_func(\Composer\Autoload\ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::getInitializer($loader));
33
+
34
+ $loader->register(true);
35
+
36
+ $filesToLoad = \Composer\Autoload\ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$files;
37
+ $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
38
+ if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
39
+ $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
40
+
41
+ require $file;
42
+ }
43
+ }, null, null);
44
+ foreach ($filesToLoad as $fileIdentifier => $file) {
45
+ $requireFile($fileIdentifier, $file);
46
+ }
47
+
48
+ return $loader;
49
+ }
50
+ }
@@ -1,86 +1,81 @@
1
- <?php
2
-
3
- // autoload_static.php @generated by Composer
4
-
5
- namespace Composer\Autoload;
6
-
7
- class ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f
8
- {
9
- public static $files = array (
10
- '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
11
- '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
12
- 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
13
- );
14
-
15
- public static $prefixLengthsPsr4 = array (
16
- 'S' =>
17
- array (
18
- 'Symfony\\Polyfill\\Php80\\' => 23,
19
- 'Symfony\\Polyfill\\Mbstring\\' => 26,
20
- 'Symfony\\Polyfill\\Ctype\\' => 23,
21
- ),
22
- 'P' =>
23
- array (
24
- 'PhpOption\\' => 10,
25
- 'PHPMailer\\PHPMailer\\' => 20,
26
- ),
27
- 'G' =>
28
- array (
29
- 'GrahamCampbell\\ResultType\\' => 26,
30
- ),
31
- 'D' =>
32
- array (
33
- 'Dotenv\\' => 7,
34
- ),
35
- );
36
-
37
- public static $prefixDirsPsr4 = array (
38
- 'Symfony\\Polyfill\\Php80\\' =>
39
- array (
40
- 0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
41
- ),
42
- 'Symfony\\Polyfill\\Mbstring\\' =>
43
- array (
44
- 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
45
- ),
46
- 'Symfony\\Polyfill\\Ctype\\' =>
47
- array (
48
- 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
49
- ),
50
- 'PhpOption\\' =>
51
- array (
52
- 0 => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption',
53
- ),
54
- 'PHPMailer\\PHPMailer\\' =>
55
- array (
56
- 0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src',
57
- ),
58
- 'GrahamCampbell\\ResultType\\' =>
59
- array (
60
- 0 => __DIR__ . '/..' . '/graham-campbell/result-type/src',
61
- ),
62
- 'Dotenv\\' =>
63
- array (
64
- 0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src',
65
- ),
66
- );
67
-
68
- public static $classMap = array (
69
- 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
70
- 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
71
- 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
72
- 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
73
- 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
74
- 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
75
- );
76
-
77
- public static function getInitializer(ClassLoader $loader)
78
- {
79
- return \Closure::bind(function () use ($loader) {
80
- $loader->prefixLengthsPsr4 = ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f::$prefixLengthsPsr4;
81
- $loader->prefixDirsPsr4 = ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f::$prefixDirsPsr4;
82
- $loader->classMap = ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f::$classMap;
83
-
84
- }, null, ClassLoader::class);
85
- }
86
- }
1
+ <?php
2
+
3
+ // autoload_static.php @generated by Composer
4
+
5
+ namespace Composer\Autoload;
6
+
7
+ class ComposerStaticInit108be68e4e2b97fed51d36a10eed0849
8
+ {
9
+ public static $files = array (
10
+ '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
11
+ '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
12
+ 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
13
+ );
14
+
15
+ public static $prefixLengthsPsr4 = array (
16
+ 'S' =>
17
+ array (
18
+ 'Symfony\\Polyfill\\Php80\\' => 23,
19
+ 'Symfony\\Polyfill\\Mbstring\\' => 26,
20
+ 'Symfony\\Polyfill\\Ctype\\' => 23,
21
+ ),
22
+ 'P' =>
23
+ array (
24
+ 'PhpOption\\' => 10,
25
+ ),
26
+ 'G' =>
27
+ array (
28
+ 'GrahamCampbell\\ResultType\\' => 26,
29
+ ),
30
+ 'D' =>
31
+ array (
32
+ 'Dotenv\\' => 7,
33
+ ),
34
+ );
35
+
36
+ public static $prefixDirsPsr4 = array (
37
+ 'Symfony\\Polyfill\\Php80\\' =>
38
+ array (
39
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
40
+ ),
41
+ 'Symfony\\Polyfill\\Mbstring\\' =>
42
+ array (
43
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
44
+ ),
45
+ 'Symfony\\Polyfill\\Ctype\\' =>
46
+ array (
47
+ 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
48
+ ),
49
+ 'PhpOption\\' =>
50
+ array (
51
+ 0 => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption',
52
+ ),
53
+ 'GrahamCampbell\\ResultType\\' =>
54
+ array (
55
+ 0 => __DIR__ . '/..' . '/graham-campbell/result-type/src',
56
+ ),
57
+ 'Dotenv\\' =>
58
+ array (
59
+ 0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src',
60
+ ),
61
+ );
62
+
63
+ public static $classMap = array (
64
+ 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
65
+ 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
66
+ 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
67
+ 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
68
+ 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
69
+ 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',
70
+ );
71
+
72
+ public static function getInitializer(ClassLoader $loader)
73
+ {
74
+ return \Closure::bind(function () use ($loader) {
75
+ $loader->prefixLengthsPsr4 = ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$prefixLengthsPsr4;
76
+ $loader->prefixDirsPsr4 = ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$prefixDirsPsr4;
77
+ $loader->classMap = ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$classMap;
78
+
79
+ }, null, ClassLoader::class);
80
+ }
81
+ }
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "time": "2025-12-27T19:43:20+00:00",
26
26
  "type": "library",
27
- "installation-source": "dist",
27
+ "installation-source": "source",
28
28
  "autoload": {
29
29
  "psr-4": {
30
30
  "GrahamCampbell\\ResultType\\": "src/"
@@ -65,91 +65,6 @@
65
65
  ],
66
66
  "install-path": "../graham-campbell/result-type"
67
67
  },
68
- {
69
- "name": "phpmailer/phpmailer",
70
- "version": "v7.0.2",
71
- "version_normalized": "7.0.2.0",
72
- "source": {
73
- "type": "git",
74
- "url": "https://github.com/PHPMailer/PHPMailer.git",
75
- "reference": "ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088"
76
- },
77
- "dist": {
78
- "type": "zip",
79
- "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088",
80
- "reference": "ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088",
81
- "shasum": ""
82
- },
83
- "require": {
84
- "ext-ctype": "*",
85
- "ext-filter": "*",
86
- "ext-hash": "*",
87
- "php": ">=5.5.0"
88
- },
89
- "require-dev": {
90
- "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
91
- "doctrine/annotations": "^1.2.6 || ^1.13.3",
92
- "php-parallel-lint/php-console-highlighter": "^1.0.0",
93
- "php-parallel-lint/php-parallel-lint": "^1.3.2",
94
- "phpcompatibility/php-compatibility": "^10.0.0@dev",
95
- "squizlabs/php_codesniffer": "^3.13.5",
96
- "yoast/phpunit-polyfills": "^1.0.4"
97
- },
98
- "suggest": {
99
- "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
100
- "directorytree/imapengine": "For uploading sent messages via IMAP, see gmail example",
101
- "ext-imap": "Needed to support advanced email address parsing according to RFC822",
102
- "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
103
- "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
104
- "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
105
- "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
106
- "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
107
- "psr/log": "For optional PSR-3 debug logging",
108
- "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
109
- "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
110
- },
111
- "time": "2026-01-09T18:02:33+00:00",
112
- "type": "library",
113
- "installation-source": "dist",
114
- "autoload": {
115
- "psr-4": {
116
- "PHPMailer\\PHPMailer\\": "src/"
117
- }
118
- },
119
- "notification-url": "https://packagist.org/downloads/",
120
- "license": [
121
- "LGPL-2.1-only"
122
- ],
123
- "authors": [
124
- {
125
- "name": "Marcus Bointon",
126
- "email": "phpmailer@synchromedia.co.uk"
127
- },
128
- {
129
- "name": "Jim Jagielski",
130
- "email": "jimjag@gmail.com"
131
- },
132
- {
133
- "name": "Andy Prevost",
134
- "email": "codeworxtech@users.sourceforge.net"
135
- },
136
- {
137
- "name": "Brent R. Matzelle"
138
- }
139
- ],
140
- "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
141
- "support": {
142
- "issues": "https://github.com/PHPMailer/PHPMailer/issues",
143
- "source": "https://github.com/PHPMailer/PHPMailer/tree/v7.0.2"
144
- },
145
- "funding": [
146
- {
147
- "url": "https://github.com/Synchro",
148
- "type": "github"
149
- }
150
- ],
151
- "install-path": "../phpmailer/phpmailer"
152
- },
153
68
  {
154
69
  "name": "phpoption/phpoption",
155
70
  "version": "1.9.5",
@@ -183,7 +98,7 @@
183
98
  "dev-master": "1.9-dev"
184
99
  }
185
100
  },
186
- "installation-source": "dist",
101
+ "installation-source": "source",
187
102
  "autoload": {
188
103
  "psr-4": {
189
104
  "PhpOption\\": "src/PhpOption/"
@@ -260,7 +175,7 @@
260
175
  "name": "symfony/polyfill"
261
176
  }
262
177
  },
263
- "installation-source": "dist",
178
+ "installation-source": "source",
264
179
  "autoload": {
265
180
  "files": [
266
181
  "bootstrap.php"
@@ -347,7 +262,7 @@
347
262
  "name": "symfony/polyfill"
348
263
  }
349
264
  },
350
- "installation-source": "dist",
265
+ "installation-source": "source",
351
266
  "autoload": {
352
267
  "files": [
353
268
  "bootstrap.php"
@@ -428,7 +343,7 @@
428
343
  "name": "symfony/polyfill"
429
344
  }
430
345
  },
431
- "installation-source": "dist",
346
+ "installation-source": "source",
432
347
  "autoload": {
433
348
  "files": [
434
349
  "bootstrap.php"
@@ -532,7 +447,7 @@
532
447
  "dev-master": "5.6-dev"
533
448
  }
534
449
  },
535
- "installation-source": "dist",
450
+ "installation-source": "source",
536
451
  "autoload": {
537
452
  "psr-4": {
538
453
  "Dotenv\\": "src/"
@@ -3,7 +3,7 @@
3
3
  'name' => '__root__',
4
4
  'pretty_version' => 'dev-main',
5
5
  'version' => 'dev-main',
6
- 'reference' => 'a66f65dcf5f4bb5ffb5513237f850d852fe7603c',
6
+ 'reference' => 'e4d3643e35a44fdeefbcfd5a5ca35bf44191fd6d',
7
7
  'type' => 'library',
8
8
  'install_path' => __DIR__ . '/../../',
9
9
  'aliases' => array(),
@@ -13,7 +13,7 @@
13
13
  '__root__' => array(
14
14
  'pretty_version' => 'dev-main',
15
15
  'version' => 'dev-main',
16
- 'reference' => 'a66f65dcf5f4bb5ffb5513237f850d852fe7603c',
16
+ 'reference' => 'e4d3643e35a44fdeefbcfd5a5ca35bf44191fd6d',
17
17
  'type' => 'library',
18
18
  'install_path' => __DIR__ . '/../../',
19
19
  'aliases' => array(),
@@ -28,15 +28,6 @@
28
28
  'aliases' => array(),
29
29
  'dev_requirement' => false,
30
30
  ),
31
- 'phpmailer/phpmailer' => array(
32
- 'pretty_version' => 'v7.0.2',
33
- 'version' => '7.0.2.0',
34
- 'reference' => 'ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088',
35
- 'type' => 'library',
36
- 'install_path' => __DIR__ . '/../phpmailer/phpmailer',
37
- 'aliases' => array(),
38
- 'dev_requirement' => false,
39
- ),
40
31
  'phpoption/phpoption' => array(
41
32
  'pretty_version' => '1.9.5',
42
33
  'version' => '1.9.5.0',