create-berna-stencil 2.0.1 → 2.0.2
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.
- package/package.json +58 -58
- package/src/backend/_core/vendor/composer/autoload_static.php +10 -10
- package/src/backend/_core/vendor/composer/installed.json +6 -6
- package/src/backend/_core/vendor/composer/installed.php +2 -2
- package/src/backend/_core/vendor/graham-campbell/result-type/LICENSE +21 -21
- package/src/backend/_core/vendor/graham-campbell/result-type/composer.json +33 -33
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Error.php +121 -121
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Result.php +69 -69
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Success.php +120 -120
- package/src/backend/_core/vendor/phpoption/phpoption/LICENSE +200 -200
- package/src/backend/_core/vendor/phpoption/phpoption/composer.json +50 -50
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php +175 -175
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/None.php +136 -136
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/Option.php +434 -434
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/Some.php +169 -169
- package/src/backend/_core/vendor/symfony/polyfill-ctype/Ctype.php +232 -232
- package/src/backend/_core/vendor/symfony/polyfill-ctype/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-ctype/README.md +12 -12
- package/src/backend/_core/vendor/symfony/polyfill-ctype/bootstrap.php +50 -50
- package/src/backend/_core/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -46
- package/src/backend/_core/vendor/symfony/polyfill-ctype/composer.json +38 -38
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Mbstring.php +1077 -1077
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/README.md +13 -13
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -119
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -1397
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -5
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -1489
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/bootstrap.php +171 -171
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -167
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/composer.json +39 -39
- package/src/backend/_core/vendor/symfony/polyfill-php80/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-php80/Php80.php +115 -115
- package/src/backend/_core/vendor/symfony/polyfill-php80/PhpToken.php +106 -106
- package/src/backend/_core/vendor/symfony/polyfill-php80/README.md +25 -25
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -31
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -20
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/bootstrap.php +42 -42
- package/src/backend/_core/vendor/symfony/polyfill-php80/composer.json +37 -37
- package/src/backend/_core/vendor/vlucas/phpdotenv/LICENSE +30 -30
- package/src/backend/_core/vendor/vlucas/phpdotenv/composer.json +60 -60
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Dotenv.php +267 -267
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/Loader.php +48 -48
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php +20 -20
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/Resolver.php +65 -65
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Entry.php +59 -59
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php +299 -299
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Lexer.php +58 -58
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Lines.php +127 -127
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Parser.php +53 -53
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php +19 -19
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Value.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php +15 -15
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php +89 -89
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php +80 -80
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php +85 -85
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php +110 -110
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php +48 -48
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php +64 -64
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php +91 -91
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php +17 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php +104 -104
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php +27 -27
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php +107 -107
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php +272 -272
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php +51 -51
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/File/Paths.php +44 -44
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/File/Reader.php +81 -81
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/FileStore.php +72 -72
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php +141 -141
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php +17 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StringStore.php +37 -37
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Util/Regex.php +112 -112
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Util/Str.php +108 -108
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Validator.php +207 -207
- package/src/frontend/components/welcome.njk +11 -2
- package/src/frontend/data/site.json +43 -43
- package/src/backend/_core/vendor/graham-campbell/result-type/.gitattributes +0 -9
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/CODE_OF_CONDUCT.md +0 -132
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/CONTRIBUTING.md +0 -31
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/FUNDING.yml +0 -2
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/SECURITY.md +0 -14
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/workflows/stale.yml +0 -11
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/workflows/tests.yml +0 -40
- package/src/backend/_core/vendor/graham-campbell/result-type/CHANGELOG.md +0 -53
- package/src/backend/_core/vendor/graham-campbell/result-type/README.md +0 -42
- package/src/backend/_core/vendor/graham-campbell/result-type/phpunit.xml.dist +0 -13
- package/src/backend/_core/vendor/graham-campbell/result-type/tests/ResultTest.php +0 -95
- package/src/backend/_core/vendor/phpoption/phpoption/.gitattributes +0 -13
- package/src/backend/_core/vendor/phpoption/phpoption/.github/CODE_OF_CONDUCT.md +0 -132
- package/src/backend/_core/vendor/phpoption/phpoption/.github/CONTRIBUTING.md +0 -30
- package/src/backend/_core/vendor/phpoption/phpoption/.github/FUNDING.yml +0 -2
- package/src/backend/_core/vendor/phpoption/phpoption/.github/SECURITY.md +0 -14
- package/src/backend/_core/vendor/phpoption/phpoption/.github/workflows/static.yml +0 -40
- package/src/backend/_core/vendor/phpoption/phpoption/.github/workflows/tests.yml +0 -40
- package/src/backend/_core/vendor/phpoption/phpoption/Makefile +0 -17
- package/src/backend/_core/vendor/phpoption/phpoption/README.md +0 -201
- package/src/backend/_core/vendor/phpoption/phpoption/phpstan-baseline.neon +0 -44
- package/src/backend/_core/vendor/phpoption/phpoption/phpstan.neon.dist +0 -7
- package/src/backend/_core/vendor/phpoption/phpoption/phpunit.xml.dist +0 -13
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php +0 -72
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php +0 -357
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php +0 -153
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php +0 -166
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php +0 -194
- package/src/backend/_core/vendor/phpoption/phpoption/tests/bootstrap.php +0 -8
- package/src/backend/_core/vendor/phpoption/phpoption/vendor-bin/phpstan/composer.json +0 -8
- package/src/backend/_core/vendor/vlucas/phpdotenv/.editorconfig +0 -15
- package/src/backend/_core/vendor/vlucas/phpdotenv/.gitattributes +0 -15
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/CODE_OF_CONDUCT.md +0 -132
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/CONTRIBUTING.md +0 -30
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/FUNDING.yml +0 -2
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/SECURITY.md +0 -14
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/workflows/static.yml +0 -40
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/workflows/tests.yml +0 -70
- package/src/backend/_core/vendor/vlucas/phpdotenv/Makefile +0 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/README.md +0 -370
- package/src/backend/_core/vendor/vlucas/phpdotenv/UPGRADING.md +0 -196
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpstan-baseline.neon +0 -157
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpstan.neon.dist +0 -7
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpunit.xml.dist +0 -13
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/DotenvTest.php +0 -387
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Loader/LoaderTest.php +0 -86
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/EntryParserTest.php +0 -234
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LexerTest.php +0 -40
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LinesTest.php +0 -53
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/ParserTest.php +0 -98
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ArrayAdapterTest.php +0 -57
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/EnvConstAdapterTest.php +0 -75
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/PutenvAdapterTest.php +0 -52
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ServerConstAdapterTest.php +0 -75
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/RepositoryTest.php +0 -305
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Store/StoreTest.php +0 -141
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/ValidatorTest.php +0 -479
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/.env +0 -5
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/assertions.env +0 -18
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/booleans.env +0 -33
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/commented.env +0 -15
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/empty.env +0 -1
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/example.env +0 -1
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/exported.env +0 -7
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/immutable.env +0 -1
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/integers.env +0 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/large.env +0 -2
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multibyte.env +0 -3
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiline.env +0 -14
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiple.env +0 -4
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/mutable.env +0 -1
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/nested.env +0 -15
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/quoted.env +0 -11
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/specialchars.env +0 -8
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/unicodevarnames.env +0 -2
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/utf8-with-bom-encoding.env +0 -3
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/windows.env +0 -1
- package/src/backend/_core/vendor/vlucas/phpdotenv/vendor-bin/phpstan/composer.json +0 -15
- package/src/backend/config.php +0 -18
|
@@ -1,207 +1,207 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
declare(strict_types=1);
|
|
4
|
-
|
|
5
|
-
namespace Dotenv;
|
|
6
|
-
|
|
7
|
-
use Dotenv\Exception\ValidationException;
|
|
8
|
-
use Dotenv\Repository\RepositoryInterface;
|
|
9
|
-
use Dotenv\Util\Regex;
|
|
10
|
-
use Dotenv\Util\Str;
|
|
11
|
-
|
|
12
|
-
class Validator
|
|
13
|
-
{
|
|
14
|
-
/**
|
|
15
|
-
* The environment repository instance.
|
|
16
|
-
*
|
|
17
|
-
* @var \Dotenv\Repository\RepositoryInterface
|
|
18
|
-
*/
|
|
19
|
-
private $repository;
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* The variables to validate.
|
|
23
|
-
*
|
|
24
|
-
* @var string[]
|
|
25
|
-
*/
|
|
26
|
-
private $variables;
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Create a new validator instance.
|
|
30
|
-
*
|
|
31
|
-
* @param \Dotenv\Repository\RepositoryInterface $repository
|
|
32
|
-
* @param string[] $variables
|
|
33
|
-
*
|
|
34
|
-
* @return void
|
|
35
|
-
*/
|
|
36
|
-
public function __construct(RepositoryInterface $repository, array $variables)
|
|
37
|
-
{
|
|
38
|
-
$this->repository = $repository;
|
|
39
|
-
$this->variables = $variables;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Assert that each variable is present.
|
|
44
|
-
*
|
|
45
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
46
|
-
*
|
|
47
|
-
* @return \Dotenv\Validator
|
|
48
|
-
*/
|
|
49
|
-
public function required()
|
|
50
|
-
{
|
|
51
|
-
return $this->assert(
|
|
52
|
-
static function (?string $value) {
|
|
53
|
-
return $value !== null;
|
|
54
|
-
},
|
|
55
|
-
'is missing'
|
|
56
|
-
);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
/**
|
|
60
|
-
* Assert that each variable is not empty.
|
|
61
|
-
*
|
|
62
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
63
|
-
*
|
|
64
|
-
* @return \Dotenv\Validator
|
|
65
|
-
*/
|
|
66
|
-
public function notEmpty()
|
|
67
|
-
{
|
|
68
|
-
return $this->assertNullable(
|
|
69
|
-
static function (string $value) {
|
|
70
|
-
return Str::len(\trim($value)) > 0;
|
|
71
|
-
},
|
|
72
|
-
'is empty'
|
|
73
|
-
);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Assert that each specified variable is an integer.
|
|
78
|
-
*
|
|
79
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
80
|
-
*
|
|
81
|
-
* @return \Dotenv\Validator
|
|
82
|
-
*/
|
|
83
|
-
public function isInteger()
|
|
84
|
-
{
|
|
85
|
-
return $this->assertNullable(
|
|
86
|
-
static function (string $value) {
|
|
87
|
-
return \ctype_digit($value);
|
|
88
|
-
},
|
|
89
|
-
'is not an integer'
|
|
90
|
-
);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
/**
|
|
94
|
-
* Assert that each specified variable is a boolean.
|
|
95
|
-
*
|
|
96
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
97
|
-
*
|
|
98
|
-
* @return \Dotenv\Validator
|
|
99
|
-
*/
|
|
100
|
-
public function isBoolean()
|
|
101
|
-
{
|
|
102
|
-
return $this->assertNullable(
|
|
103
|
-
static function (string $value) {
|
|
104
|
-
if ($value === '') {
|
|
105
|
-
return false;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
return \filter_var($value, \FILTER_VALIDATE_BOOLEAN, \FILTER_NULL_ON_FAILURE) !== null;
|
|
109
|
-
},
|
|
110
|
-
'is not a boolean'
|
|
111
|
-
);
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
/**
|
|
115
|
-
* Assert that each variable is amongst the given choices.
|
|
116
|
-
*
|
|
117
|
-
* @param string[] $choices
|
|
118
|
-
*
|
|
119
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
120
|
-
*
|
|
121
|
-
* @return \Dotenv\Validator
|
|
122
|
-
*/
|
|
123
|
-
public function allowedValues(array $choices)
|
|
124
|
-
{
|
|
125
|
-
return $this->assertNullable(
|
|
126
|
-
static function (string $value) use ($choices) {
|
|
127
|
-
return \in_array($value, $choices, true);
|
|
128
|
-
},
|
|
129
|
-
\sprintf('is not one of [%s]', \implode(', ', $choices))
|
|
130
|
-
);
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/**
|
|
134
|
-
* Assert that each variable matches the given regular expression.
|
|
135
|
-
*
|
|
136
|
-
* @param string $regex
|
|
137
|
-
*
|
|
138
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
139
|
-
*
|
|
140
|
-
* @return \Dotenv\Validator
|
|
141
|
-
*/
|
|
142
|
-
public function allowedRegexValues(string $regex)
|
|
143
|
-
{
|
|
144
|
-
return $this->assertNullable(
|
|
145
|
-
static function (string $value) use ($regex) {
|
|
146
|
-
return Regex::matches($regex, $value)->success()->getOrElse(false);
|
|
147
|
-
},
|
|
148
|
-
\sprintf('does not match "%s"', $regex)
|
|
149
|
-
);
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/**
|
|
153
|
-
* Assert that the callback returns true for each variable.
|
|
154
|
-
*
|
|
155
|
-
* @param callable(?string):bool $callback
|
|
156
|
-
* @param string $message
|
|
157
|
-
*
|
|
158
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
159
|
-
*
|
|
160
|
-
* @return \Dotenv\Validator
|
|
161
|
-
*/
|
|
162
|
-
public function assert(callable $callback, string $message)
|
|
163
|
-
{
|
|
164
|
-
$failing = [];
|
|
165
|
-
|
|
166
|
-
foreach ($this->variables as $variable) {
|
|
167
|
-
if ($callback($this->repository->get($variable)) === false) {
|
|
168
|
-
$failing[] = \sprintf('%s %s', $variable, $message);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
if (\count($failing) > 0) {
|
|
173
|
-
throw new ValidationException(\sprintf(
|
|
174
|
-
'One or more environment variables failed assertions: %s.',
|
|
175
|
-
\implode(', ', $failing)
|
|
176
|
-
));
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
return $this;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/**
|
|
183
|
-
* Assert that the callback returns true for each variable.
|
|
184
|
-
*
|
|
185
|
-
* Skip checking null variable values.
|
|
186
|
-
*
|
|
187
|
-
* @param callable(string):bool $callback
|
|
188
|
-
* @param string $message
|
|
189
|
-
*
|
|
190
|
-
* @throws \Dotenv\Exception\ValidationException
|
|
191
|
-
*
|
|
192
|
-
* @return \Dotenv\Validator
|
|
193
|
-
*/
|
|
194
|
-
public function assertNullable(callable $callback, string $message)
|
|
195
|
-
{
|
|
196
|
-
return $this->assert(
|
|
197
|
-
static function (?string $value) use ($callback) {
|
|
198
|
-
if ($value === null) {
|
|
199
|
-
return true;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
return $callback($value);
|
|
203
|
-
},
|
|
204
|
-
$message
|
|
205
|
-
);
|
|
206
|
-
}
|
|
207
|
-
}
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
declare(strict_types=1);
|
|
4
|
+
|
|
5
|
+
namespace Dotenv;
|
|
6
|
+
|
|
7
|
+
use Dotenv\Exception\ValidationException;
|
|
8
|
+
use Dotenv\Repository\RepositoryInterface;
|
|
9
|
+
use Dotenv\Util\Regex;
|
|
10
|
+
use Dotenv\Util\Str;
|
|
11
|
+
|
|
12
|
+
class Validator
|
|
13
|
+
{
|
|
14
|
+
/**
|
|
15
|
+
* The environment repository instance.
|
|
16
|
+
*
|
|
17
|
+
* @var \Dotenv\Repository\RepositoryInterface
|
|
18
|
+
*/
|
|
19
|
+
private $repository;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* The variables to validate.
|
|
23
|
+
*
|
|
24
|
+
* @var string[]
|
|
25
|
+
*/
|
|
26
|
+
private $variables;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Create a new validator instance.
|
|
30
|
+
*
|
|
31
|
+
* @param \Dotenv\Repository\RepositoryInterface $repository
|
|
32
|
+
* @param string[] $variables
|
|
33
|
+
*
|
|
34
|
+
* @return void
|
|
35
|
+
*/
|
|
36
|
+
public function __construct(RepositoryInterface $repository, array $variables)
|
|
37
|
+
{
|
|
38
|
+
$this->repository = $repository;
|
|
39
|
+
$this->variables = $variables;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Assert that each variable is present.
|
|
44
|
+
*
|
|
45
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
46
|
+
*
|
|
47
|
+
* @return \Dotenv\Validator
|
|
48
|
+
*/
|
|
49
|
+
public function required()
|
|
50
|
+
{
|
|
51
|
+
return $this->assert(
|
|
52
|
+
static function (?string $value) {
|
|
53
|
+
return $value !== null;
|
|
54
|
+
},
|
|
55
|
+
'is missing'
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Assert that each variable is not empty.
|
|
61
|
+
*
|
|
62
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
63
|
+
*
|
|
64
|
+
* @return \Dotenv\Validator
|
|
65
|
+
*/
|
|
66
|
+
public function notEmpty()
|
|
67
|
+
{
|
|
68
|
+
return $this->assertNullable(
|
|
69
|
+
static function (string $value) {
|
|
70
|
+
return Str::len(\trim($value)) > 0;
|
|
71
|
+
},
|
|
72
|
+
'is empty'
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Assert that each specified variable is an integer.
|
|
78
|
+
*
|
|
79
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
80
|
+
*
|
|
81
|
+
* @return \Dotenv\Validator
|
|
82
|
+
*/
|
|
83
|
+
public function isInteger()
|
|
84
|
+
{
|
|
85
|
+
return $this->assertNullable(
|
|
86
|
+
static function (string $value) {
|
|
87
|
+
return \ctype_digit($value);
|
|
88
|
+
},
|
|
89
|
+
'is not an integer'
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Assert that each specified variable is a boolean.
|
|
95
|
+
*
|
|
96
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
97
|
+
*
|
|
98
|
+
* @return \Dotenv\Validator
|
|
99
|
+
*/
|
|
100
|
+
public function isBoolean()
|
|
101
|
+
{
|
|
102
|
+
return $this->assertNullable(
|
|
103
|
+
static function (string $value) {
|
|
104
|
+
if ($value === '') {
|
|
105
|
+
return false;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
return \filter_var($value, \FILTER_VALIDATE_BOOLEAN, \FILTER_NULL_ON_FAILURE) !== null;
|
|
109
|
+
},
|
|
110
|
+
'is not a boolean'
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Assert that each variable is amongst the given choices.
|
|
116
|
+
*
|
|
117
|
+
* @param string[] $choices
|
|
118
|
+
*
|
|
119
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
120
|
+
*
|
|
121
|
+
* @return \Dotenv\Validator
|
|
122
|
+
*/
|
|
123
|
+
public function allowedValues(array $choices)
|
|
124
|
+
{
|
|
125
|
+
return $this->assertNullable(
|
|
126
|
+
static function (string $value) use ($choices) {
|
|
127
|
+
return \in_array($value, $choices, true);
|
|
128
|
+
},
|
|
129
|
+
\sprintf('is not one of [%s]', \implode(', ', $choices))
|
|
130
|
+
);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Assert that each variable matches the given regular expression.
|
|
135
|
+
*
|
|
136
|
+
* @param string $regex
|
|
137
|
+
*
|
|
138
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
139
|
+
*
|
|
140
|
+
* @return \Dotenv\Validator
|
|
141
|
+
*/
|
|
142
|
+
public function allowedRegexValues(string $regex)
|
|
143
|
+
{
|
|
144
|
+
return $this->assertNullable(
|
|
145
|
+
static function (string $value) use ($regex) {
|
|
146
|
+
return Regex::matches($regex, $value)->success()->getOrElse(false);
|
|
147
|
+
},
|
|
148
|
+
\sprintf('does not match "%s"', $regex)
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Assert that the callback returns true for each variable.
|
|
154
|
+
*
|
|
155
|
+
* @param callable(?string):bool $callback
|
|
156
|
+
* @param string $message
|
|
157
|
+
*
|
|
158
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
159
|
+
*
|
|
160
|
+
* @return \Dotenv\Validator
|
|
161
|
+
*/
|
|
162
|
+
public function assert(callable $callback, string $message)
|
|
163
|
+
{
|
|
164
|
+
$failing = [];
|
|
165
|
+
|
|
166
|
+
foreach ($this->variables as $variable) {
|
|
167
|
+
if ($callback($this->repository->get($variable)) === false) {
|
|
168
|
+
$failing[] = \sprintf('%s %s', $variable, $message);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
if (\count($failing) > 0) {
|
|
173
|
+
throw new ValidationException(\sprintf(
|
|
174
|
+
'One or more environment variables failed assertions: %s.',
|
|
175
|
+
\implode(', ', $failing)
|
|
176
|
+
));
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
return $this;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Assert that the callback returns true for each variable.
|
|
184
|
+
*
|
|
185
|
+
* Skip checking null variable values.
|
|
186
|
+
*
|
|
187
|
+
* @param callable(string):bool $callback
|
|
188
|
+
* @param string $message
|
|
189
|
+
*
|
|
190
|
+
* @throws \Dotenv\Exception\ValidationException
|
|
191
|
+
*
|
|
192
|
+
* @return \Dotenv\Validator
|
|
193
|
+
*/
|
|
194
|
+
public function assertNullable(callable $callback, string $message)
|
|
195
|
+
{
|
|
196
|
+
return $this->assert(
|
|
197
|
+
static function (?string $value) use ($callback) {
|
|
198
|
+
if ($value === null) {
|
|
199
|
+
return true;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
return $callback($value);
|
|
203
|
+
},
|
|
204
|
+
$message
|
|
205
|
+
);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
@@ -310,7 +310,7 @@ export function yourFunction() {
|
|
|
310
310
|
"description": "Page description"
|
|
311
311
|
}
|
|
312
312
|
}</code></pre>
|
|
313
|
-
<p>See <a href="head-
|
|
313
|
+
<p>See <a href="#" class="nav-to-head-seo">Head & SEO</a> for all available options</p>
|
|
314
314
|
</div>
|
|
315
315
|
</div>
|
|
316
316
|
|
|
@@ -832,7 +832,16 @@ const res = await fetch('/api/posts', {
|
|
|
832
832
|
if (assistantRadio) {
|
|
833
833
|
assistantRadio.checked = true;
|
|
834
834
|
assistantRadio.dispatchEvent(new Event('change'));
|
|
835
|
-
|
|
835
|
+
}
|
|
836
|
+
});
|
|
837
|
+
document.querySelector('.nav-to-head-seo').addEventListener('click', (e) => {
|
|
838
|
+
e.preventDefault();
|
|
839
|
+
|
|
840
|
+
const headAndSeoRadio = document.querySelector('input[name="guide-filter"][value="head-seo"]');
|
|
841
|
+
|
|
842
|
+
if (headAndSeoRadio) {
|
|
843
|
+
headAndSeoRadio.checked = true;
|
|
844
|
+
headAndSeoRadio.dispatchEvent(new Event('change'));
|
|
836
845
|
}
|
|
837
846
|
});
|
|
838
847
|
</script>
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"site_name": "Site name",
|
|
3
|
-
"title": "Site title",
|
|
4
|
-
"description": "Site description",
|
|
5
|
-
"keywords": "keyword1, keyword2, keyword3",
|
|
6
|
-
"domain": "yoursite.com",
|
|
7
|
-
"url": "https://yoursite.com",
|
|
8
|
-
"lang": "en",
|
|
9
|
-
"author": "Name and surname",
|
|
10
|
-
"data_bs_theme": "dark",
|
|
11
|
-
"favicon": "/assets/brand/favicon.svg",
|
|
12
|
-
"logo": "/assets/brand/logo.svg",
|
|
13
|
-
"copyright": {
|
|
14
|
-
"year": "2026",
|
|
15
|
-
"text": "Copyright text"
|
|
16
|
-
},
|
|
17
|
-
"legal": {
|
|
18
|
-
"privacy": "",
|
|
19
|
-
"cookie": "",
|
|
20
|
-
"cookieControls": "",
|
|
21
|
-
"terms": ""
|
|
22
|
-
},
|
|
23
|
-
"pages": {
|
|
24
|
-
"404": {
|
|
25
|
-
"seo": {
|
|
26
|
-
"title": "404 - Not found"
|
|
27
|
-
},
|
|
28
|
-
"cdn": {
|
|
29
|
-
"css": [],
|
|
30
|
-
"js": []
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"homepage": {
|
|
34
|
-
"seo": {
|
|
35
|
-
"title": "Homepage",
|
|
36
|
-
"description": "Description"
|
|
37
|
-
},
|
|
38
|
-
"cdn": {
|
|
39
|
-
"css": [],
|
|
40
|
-
"js": []
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"site_name": "Site name",
|
|
3
|
+
"title": "Site title",
|
|
4
|
+
"description": "Site description",
|
|
5
|
+
"keywords": "keyword1, keyword2, keyword3",
|
|
6
|
+
"domain": "yoursite.com",
|
|
7
|
+
"url": "https://yoursite.com",
|
|
8
|
+
"lang": "en",
|
|
9
|
+
"author": "Name and surname",
|
|
10
|
+
"data_bs_theme": "dark",
|
|
11
|
+
"favicon": "/assets/brand/favicon.svg",
|
|
12
|
+
"logo": "/assets/brand/logo.svg",
|
|
13
|
+
"copyright": {
|
|
14
|
+
"year": "2026",
|
|
15
|
+
"text": "Copyright text"
|
|
16
|
+
},
|
|
17
|
+
"legal": {
|
|
18
|
+
"privacy": "",
|
|
19
|
+
"cookie": "",
|
|
20
|
+
"cookieControls": "",
|
|
21
|
+
"terms": ""
|
|
22
|
+
},
|
|
23
|
+
"pages": {
|
|
24
|
+
"404": {
|
|
25
|
+
"seo": {
|
|
26
|
+
"title": "404 - Not found"
|
|
27
|
+
},
|
|
28
|
+
"cdn": {
|
|
29
|
+
"css": [],
|
|
30
|
+
"js": []
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"homepage": {
|
|
34
|
+
"seo": {
|
|
35
|
+
"title": "Homepage",
|
|
36
|
+
"description": "Description"
|
|
37
|
+
},
|
|
38
|
+
"cdn": {
|
|
39
|
+
"css": [],
|
|
40
|
+
"js": []
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
44
|
}
|
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
# CONTRIBUTOR COVENANT CODE OF CONDUCT
|
|
2
|
-
|
|
3
|
-
## Our Pledge
|
|
4
|
-
|
|
5
|
-
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
-
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
-
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
-
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
-
nationality, personal appearance, race, caste, color, religion, or sexual identity
|
|
10
|
-
and orientation.
|
|
11
|
-
|
|
12
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
-
diverse, inclusive, and healthy community.
|
|
14
|
-
|
|
15
|
-
## Our Standards
|
|
16
|
-
|
|
17
|
-
Examples of behavior that contributes to a positive environment for our
|
|
18
|
-
community include:
|
|
19
|
-
|
|
20
|
-
* Demonstrating empathy and kindness toward other people
|
|
21
|
-
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
-
* Giving and gracefully accepting constructive feedback
|
|
23
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
-
and learning from the experience
|
|
25
|
-
* Focusing on what is best not just for us as individuals, but for the
|
|
26
|
-
overall community
|
|
27
|
-
|
|
28
|
-
Examples of unacceptable behavior include:
|
|
29
|
-
|
|
30
|
-
* The use of sexualized language or imagery, and sexual attention or
|
|
31
|
-
advances of any kind
|
|
32
|
-
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
-
* Public or private harassment
|
|
34
|
-
* Publishing others' private information, such as a physical or email
|
|
35
|
-
address, without their explicit permission
|
|
36
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
-
professional setting
|
|
38
|
-
|
|
39
|
-
## Enforcement Responsibilities
|
|
40
|
-
|
|
41
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
-
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
-
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
-
or harmful.
|
|
45
|
-
|
|
46
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
-
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
-
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
-
decisions when appropriate.
|
|
50
|
-
|
|
51
|
-
## Scope
|
|
52
|
-
|
|
53
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
-
an individual is officially representing the community in public spaces.
|
|
55
|
-
Examples of representing our community include using an official e-mail address,
|
|
56
|
-
posting via an official social media account, or acting as an appointed
|
|
57
|
-
representative at an online or offline event.
|
|
58
|
-
|
|
59
|
-
## Enforcement
|
|
60
|
-
|
|
61
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
-
reported to the community leaders responsible for enforcement at
|
|
63
|
-
hello@gjcampbell.co.uk.
|
|
64
|
-
All complaints will be reviewed and investigated promptly and fairly.
|
|
65
|
-
|
|
66
|
-
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
-
reporter of any incident.
|
|
68
|
-
|
|
69
|
-
## Enforcement Guidelines
|
|
70
|
-
|
|
71
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
-
the consequences for any action they deem in violation of this Code of Conduct:
|
|
73
|
-
|
|
74
|
-
### 1. Correction
|
|
75
|
-
|
|
76
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
-
unprofessional or unwelcome in the community.
|
|
78
|
-
|
|
79
|
-
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
-
clarity around the nature of the violation and an explanation of why the
|
|
81
|
-
behavior was inappropriate. A public apology may be requested.
|
|
82
|
-
|
|
83
|
-
### 2. Warning
|
|
84
|
-
|
|
85
|
-
**Community Impact**: A violation through a single incident or series
|
|
86
|
-
of actions.
|
|
87
|
-
|
|
88
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
-
interaction with the people involved, including unsolicited interaction with
|
|
90
|
-
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
-
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
-
like social media. Violating these terms may lead to a temporary or
|
|
93
|
-
permanent ban.
|
|
94
|
-
|
|
95
|
-
### 3. Temporary Ban
|
|
96
|
-
|
|
97
|
-
**Community Impact**: A serious violation of community standards, including
|
|
98
|
-
sustained inappropriate behavior.
|
|
99
|
-
|
|
100
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
-
communication with the community for a specified period of time. No public or
|
|
102
|
-
private interaction with the people involved, including unsolicited interaction
|
|
103
|
-
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
-
Violating these terms may lead to a permanent ban.
|
|
105
|
-
|
|
106
|
-
### 4. Permanent Ban
|
|
107
|
-
|
|
108
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
-
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
-
individual, or aggression toward or disparagement of classes of individuals.
|
|
111
|
-
|
|
112
|
-
**Consequence**: A permanent ban from any sort of public interaction within
|
|
113
|
-
the community.
|
|
114
|
-
|
|
115
|
-
## Attribution
|
|
116
|
-
|
|
117
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
-
version 2.1, available at
|
|
119
|
-
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
|
120
|
-
|
|
121
|
-
Community Impact Guidelines were inspired by
|
|
122
|
-
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
|
123
|
-
|
|
124
|
-
For answers to common questions about this code of conduct, see the FAQ at
|
|
125
|
-
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available
|
|
126
|
-
at [https://www.contributor-covenant.org/translations][translations].
|
|
127
|
-
|
|
128
|
-
[homepage]: https://www.contributor-covenant.org
|
|
129
|
-
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
|
130
|
-
[Mozilla CoC]: https://github.com/mozilla/diversity
|
|
131
|
-
[FAQ]: https://www.contributor-covenant.org/faq
|
|
132
|
-
[translations]: https://www.contributor-covenant.org/translations
|