create-berna-stencil 1.0.17 → 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.
- package/bin/create.js +1 -1
- package/package.json +72 -72
- package/src/api/core/composer.lock +492 -574
- package/src/api/core/vendor/autoload.php +1 -1
- package/src/api/core/vendor/composer/autoload_psr4.php +0 -1
- package/src/api/core/vendor/composer/autoload_real.php +5 -5
- package/src/api/core/vendor/composer/autoload_static.php +14 -19
- package/src/api/core/vendor/composer/installed.json +6 -91
- package/src/api/core/vendor/composer/installed.php +2 -11
- package/src/api/core/vendor/graham-campbell/result-type/.gitattributes +9 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/CONTRIBUTING.md +31 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/FUNDING.yml +2 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/SECURITY.md +14 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/workflows/stale.yml +11 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/workflows/tests.yml +40 -0
- package/src/api/core/vendor/graham-campbell/result-type/CHANGELOG.md +53 -0
- package/src/api/core/vendor/graham-campbell/result-type/LICENSE +21 -21
- package/src/api/core/vendor/graham-campbell/result-type/README.md +42 -0
- package/src/api/core/vendor/graham-campbell/result-type/composer.json +33 -33
- package/src/api/core/vendor/graham-campbell/result-type/phpunit.xml.dist +13 -0
- package/src/api/core/vendor/graham-campbell/result-type/src/Error.php +121 -121
- package/src/api/core/vendor/graham-campbell/result-type/src/Result.php +69 -69
- package/src/api/core/vendor/graham-campbell/result-type/src/Success.php +120 -120
- package/src/api/core/vendor/graham-campbell/result-type/tests/ResultTest.php +95 -0
- package/src/api/core/vendor/phpoption/phpoption/.gitattributes +13 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/CONTRIBUTING.md +30 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/FUNDING.yml +2 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/SECURITY.md +14 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/workflows/static.yml +40 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/workflows/tests.yml +40 -0
- package/src/api/core/vendor/phpoption/phpoption/LICENSE +200 -200
- package/src/api/core/vendor/phpoption/phpoption/Makefile +17 -0
- package/src/api/core/vendor/phpoption/phpoption/README.md +201 -0
- package/src/api/core/vendor/phpoption/phpoption/composer.json +50 -50
- package/src/api/core/vendor/phpoption/phpoption/phpstan-baseline.neon +44 -0
- package/src/api/core/vendor/phpoption/phpoption/phpstan.neon.dist +7 -0
- package/src/api/core/vendor/phpoption/phpoption/phpunit.xml.dist +13 -0
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php +175 -175
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/None.php +136 -136
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/Option.php +434 -434
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/Some.php +169 -169
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php +72 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php +357 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php +153 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php +166 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php +194 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/bootstrap.php +8 -0
- package/src/api/core/vendor/phpoption/phpoption/vendor-bin/phpstan/composer.json +8 -0
- package/src/api/core/vendor/symfony/polyfill-ctype/Ctype.php +232 -232
- package/src/api/core/vendor/symfony/polyfill-ctype/LICENSE +19 -19
- package/src/api/core/vendor/symfony/polyfill-ctype/README.md +12 -12
- package/src/api/core/vendor/symfony/polyfill-ctype/bootstrap.php +50 -50
- package/src/api/core/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -46
- package/src/api/core/vendor/symfony/polyfill-ctype/composer.json +38 -38
- package/src/api/core/vendor/symfony/polyfill-mbstring/LICENSE +19 -19
- package/src/api/core/vendor/symfony/polyfill-mbstring/Mbstring.php +1077 -1077
- package/src/api/core/vendor/symfony/polyfill-mbstring/README.md +13 -13
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -119
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -1397
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -5
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -1489
- package/src/api/core/vendor/symfony/polyfill-mbstring/bootstrap.php +171 -171
- package/src/api/core/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -167
- package/src/api/core/vendor/symfony/polyfill-mbstring/composer.json +39 -39
- package/src/api/core/vendor/symfony/polyfill-php80/LICENSE +19 -19
- package/src/api/core/vendor/symfony/polyfill-php80/Php80.php +115 -115
- package/src/api/core/vendor/symfony/polyfill-php80/PhpToken.php +106 -106
- package/src/api/core/vendor/symfony/polyfill-php80/README.md +25 -25
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -31
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -16
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -20
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -16
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -16
- package/src/api/core/vendor/symfony/polyfill-php80/bootstrap.php +42 -42
- package/src/api/core/vendor/symfony/polyfill-php80/composer.json +37 -37
- package/src/api/core/vendor/vlucas/phpdotenv/.editorconfig +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.gitattributes +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/CONTRIBUTING.md +30 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/FUNDING.yml +2 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/SECURITY.md +14 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/workflows/static.yml +40 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/workflows/tests.yml +70 -0
- package/src/api/core/vendor/vlucas/phpdotenv/LICENSE +30 -30
- package/src/api/core/vendor/vlucas/phpdotenv/Makefile +17 -0
- package/src/api/core/vendor/vlucas/phpdotenv/README.md +370 -0
- package/src/api/core/vendor/vlucas/phpdotenv/UPGRADING.md +196 -0
- package/src/api/core/vendor/vlucas/phpdotenv/composer.json +60 -60
- package/src/api/core/vendor/vlucas/phpdotenv/phpstan-baseline.neon +157 -0
- package/src/api/core/vendor/vlucas/phpdotenv/phpstan.neon.dist +7 -0
- package/src/api/core/vendor/vlucas/phpdotenv/phpunit.xml.dist +13 -0
- package/src/api/core/vendor/vlucas/phpdotenv/src/Dotenv.php +267 -267
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/Loader.php +48 -48
- package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php +20 -20
- package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/Resolver.php +65 -65
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Entry.php +59 -59
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php +299 -299
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Lexer.php +58 -58
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Lines.php +127 -127
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Parser.php +53 -53
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php +19 -19
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Value.php +88 -88
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php +15 -15
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php +89 -89
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php +80 -80
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php +88 -88
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php +85 -85
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php +110 -110
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php +48 -48
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php +64 -64
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php +91 -91
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php +17 -17
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php +104 -104
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php +88 -88
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php +27 -27
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php +107 -107
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php +272 -272
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php +51 -51
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/File/Paths.php +44 -44
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/File/Reader.php +81 -81
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/FileStore.php +72 -72
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php +141 -141
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php +17 -17
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StringStore.php +37 -37
- package/src/api/core/vendor/vlucas/phpdotenv/src/Util/Regex.php +112 -112
- package/src/api/core/vendor/vlucas/phpdotenv/src/Util/Str.php +108 -108
- package/src/api/core/vendor/vlucas/phpdotenv/src/Validator.php +207 -207
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/DotenvTest.php +387 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Loader/LoaderTest.php +86 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/EntryParserTest.php +234 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LexerTest.php +40 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LinesTest.php +53 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/ParserTest.php +98 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ArrayAdapterTest.php +57 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/EnvConstAdapterTest.php +75 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/PutenvAdapterTest.php +52 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ServerConstAdapterTest.php +75 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/RepositoryTest.php +305 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Store/StoreTest.php +141 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/ValidatorTest.php +479 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/.env +5 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/assertions.env +18 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/booleans.env +33 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/commented.env +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/empty.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/example.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/exported.env +7 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/immutable.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/integers.env +17 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/large.env +2 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multibyte.env +3 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiline.env +14 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiple.env +4 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/mutable.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/nested.env +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/quoted.env +11 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/specialchars.env +8 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/unicodevarnames.env +2 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/utf8-with-bom-encoding.env +3 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/windows.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/vendor-bin/phpstan/composer.json +15 -0
- package/src/api/core/vendor/phpmailer/phpmailer/COMMITMENT +0 -46
- package/src/api/core/vendor/phpmailer/phpmailer/LICENSE +0 -502
- package/src/api/core/vendor/phpmailer/phpmailer/README.md +0 -232
- package/src/api/core/vendor/phpmailer/phpmailer/SECURITY.md +0 -37
- package/src/api/core/vendor/phpmailer/phpmailer/SMTPUTF8.md +0 -48
- package/src/api/core/vendor/phpmailer/phpmailer/VERSION +0 -1
- package/src/api/core/vendor/phpmailer/phpmailer/composer.json +0 -84
- package/src/api/core/vendor/phpmailer/phpmailer/get_oauth_token.php +0 -182
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php +0 -26
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-as.php +0 -35
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-bn.php +0 -35
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php +0 -39
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php +0 -33
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php +0 -37
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php +0 -38
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php +0 -36
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php +0 -35
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-hy.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php +0 -31
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php +0 -37
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ku.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-mn.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php +0 -37
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php +0 -38
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php +0 -33
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php +0 -34
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php +0 -38
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php +0 -33
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php +0 -36
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-si.php +0 -34
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php +0 -30
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php +0 -36
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr_latn.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php +0 -38
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php +0 -28
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-ur.php +0 -30
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php +0 -27
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php +0 -29
- package/src/api/core/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php +0 -36
- package/src/api/core/vendor/phpmailer/phpmailer/src/DSNConfigurator.php +0 -245
- package/src/api/core/vendor/phpmailer/phpmailer/src/Exception.php +0 -40
- package/src/api/core/vendor/phpmailer/phpmailer/src/OAuth.php +0 -139
- package/src/api/core/vendor/phpmailer/phpmailer/src/OAuthTokenProvider.php +0 -44
- package/src/api/core/vendor/phpmailer/phpmailer/src/PHPMailer.php +0 -5525
- package/src/api/core/vendor/phpmailer/phpmailer/src/POP3.php +0 -470
- package/src/api/core/vendor/phpmailer/phpmailer/src/SMTP.php +0 -1617
|
@@ -10,7 +10,6 @@ return array(
|
|
|
10
10
|
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
|
|
11
11
|
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
|
|
12
12
|
'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption'),
|
|
13
|
-
'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'),
|
|
14
13
|
'GrahamCampbell\\ResultType\\' => array($vendorDir . '/graham-campbell/result-type/src'),
|
|
15
14
|
'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),
|
|
16
15
|
);
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
// autoload_real.php @generated by Composer
|
|
4
4
|
|
|
5
|
-
class
|
|
5
|
+
class ComposerAutoloaderInit108be68e4e2b97fed51d36a10eed0849
|
|
6
6
|
{
|
|
7
7
|
private static $loader;
|
|
8
8
|
|
|
@@ -24,16 +24,16 @@ class ComposerAutoloaderInit06112bd3c7053b3bb5b8a9ea876cbd9f
|
|
|
24
24
|
|
|
25
25
|
require __DIR__ . '/platform_check.php';
|
|
26
26
|
|
|
27
|
-
spl_autoload_register(array('
|
|
27
|
+
spl_autoload_register(array('ComposerAutoloaderInit108be68e4e2b97fed51d36a10eed0849', 'loadClassLoader'), true, true);
|
|
28
28
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
|
29
|
-
spl_autoload_unregister(array('
|
|
29
|
+
spl_autoload_unregister(array('ComposerAutoloaderInit108be68e4e2b97fed51d36a10eed0849', 'loadClassLoader'));
|
|
30
30
|
|
|
31
31
|
require __DIR__ . '/autoload_static.php';
|
|
32
|
-
call_user_func(\Composer\Autoload\
|
|
32
|
+
call_user_func(\Composer\Autoload\ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::getInitializer($loader));
|
|
33
33
|
|
|
34
34
|
$loader->register(true);
|
|
35
35
|
|
|
36
|
-
$filesToLoad = \Composer\Autoload\
|
|
36
|
+
$filesToLoad = \Composer\Autoload\ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$files;
|
|
37
37
|
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
|
|
38
38
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
|
39
39
|
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
namespace Composer\Autoload;
|
|
6
6
|
|
|
7
|
-
class
|
|
7
|
+
class ComposerStaticInit108be68e4e2b97fed51d36a10eed0849
|
|
8
8
|
{
|
|
9
9
|
public static $files = array (
|
|
10
10
|
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
|
|
@@ -13,53 +13,48 @@ class ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f
|
|
|
13
13
|
);
|
|
14
14
|
|
|
15
15
|
public static $prefixLengthsPsr4 = array (
|
|
16
|
-
'S' =>
|
|
16
|
+
'S' =>
|
|
17
17
|
array (
|
|
18
18
|
'Symfony\\Polyfill\\Php80\\' => 23,
|
|
19
19
|
'Symfony\\Polyfill\\Mbstring\\' => 26,
|
|
20
20
|
'Symfony\\Polyfill\\Ctype\\' => 23,
|
|
21
21
|
),
|
|
22
|
-
'P' =>
|
|
22
|
+
'P' =>
|
|
23
23
|
array (
|
|
24
24
|
'PhpOption\\' => 10,
|
|
25
|
-
'PHPMailer\\PHPMailer\\' => 20,
|
|
26
25
|
),
|
|
27
|
-
'G' =>
|
|
26
|
+
'G' =>
|
|
28
27
|
array (
|
|
29
28
|
'GrahamCampbell\\ResultType\\' => 26,
|
|
30
29
|
),
|
|
31
|
-
'D' =>
|
|
30
|
+
'D' =>
|
|
32
31
|
array (
|
|
33
32
|
'Dotenv\\' => 7,
|
|
34
33
|
),
|
|
35
34
|
);
|
|
36
35
|
|
|
37
36
|
public static $prefixDirsPsr4 = array (
|
|
38
|
-
'Symfony\\Polyfill\\Php80\\' =>
|
|
37
|
+
'Symfony\\Polyfill\\Php80\\' =>
|
|
39
38
|
array (
|
|
40
39
|
0 => __DIR__ . '/..' . '/symfony/polyfill-php80',
|
|
41
40
|
),
|
|
42
|
-
'Symfony\\Polyfill\\Mbstring\\' =>
|
|
41
|
+
'Symfony\\Polyfill\\Mbstring\\' =>
|
|
43
42
|
array (
|
|
44
43
|
0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
|
|
45
44
|
),
|
|
46
|
-
'Symfony\\Polyfill\\Ctype\\' =>
|
|
45
|
+
'Symfony\\Polyfill\\Ctype\\' =>
|
|
47
46
|
array (
|
|
48
47
|
0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
|
|
49
48
|
),
|
|
50
|
-
'PhpOption\\' =>
|
|
49
|
+
'PhpOption\\' =>
|
|
51
50
|
array (
|
|
52
51
|
0 => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption',
|
|
53
52
|
),
|
|
54
|
-
'
|
|
55
|
-
array (
|
|
56
|
-
0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src',
|
|
57
|
-
),
|
|
58
|
-
'GrahamCampbell\\ResultType\\' =>
|
|
53
|
+
'GrahamCampbell\\ResultType\\' =>
|
|
59
54
|
array (
|
|
60
55
|
0 => __DIR__ . '/..' . '/graham-campbell/result-type/src',
|
|
61
56
|
),
|
|
62
|
-
'Dotenv\\' =>
|
|
57
|
+
'Dotenv\\' =>
|
|
63
58
|
array (
|
|
64
59
|
0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src',
|
|
65
60
|
),
|
|
@@ -77,9 +72,9 @@ class ComposerStaticInit06112bd3c7053b3bb5b8a9ea876cbd9f
|
|
|
77
72
|
public static function getInitializer(ClassLoader $loader)
|
|
78
73
|
{
|
|
79
74
|
return \Closure::bind(function () use ($loader) {
|
|
80
|
-
$loader->prefixLengthsPsr4 =
|
|
81
|
-
$loader->prefixDirsPsr4 =
|
|
82
|
-
$loader->classMap =
|
|
75
|
+
$loader->prefixLengthsPsr4 = ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$prefixLengthsPsr4;
|
|
76
|
+
$loader->prefixDirsPsr4 = ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$prefixDirsPsr4;
|
|
77
|
+
$loader->classMap = ComposerStaticInit108be68e4e2b97fed51d36a10eed0849::$classMap;
|
|
83
78
|
|
|
84
79
|
}, null, ClassLoader::class);
|
|
85
80
|
}
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"time": "2025-12-27T19:43:20+00:00",
|
|
26
26
|
"type": "library",
|
|
27
|
-
"installation-source": "
|
|
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": "
|
|
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": "
|
|
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": "
|
|
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": "
|
|
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": "
|
|
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' => '
|
|
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' => '
|
|
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',
|
|
@@ -0,0 +1,132 @@
|
|
|
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
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# CONTRIBUTION GUIDELINES
|
|
2
|
+
|
|
3
|
+
Contributions are **welcome** and will be fully **credited**.
|
|
4
|
+
|
|
5
|
+
We accept contributions via pull requests on GitHub. Please review these guidelines before continuing.
|
|
6
|
+
|
|
7
|
+
## Guidelines
|
|
8
|
+
|
|
9
|
+
* Please follow the [PSR-12 Coding Style Guide](https://www.php-fig.org/psr/psr-12/), enforced by [StyleCI](https://styleci.io/).
|
|
10
|
+
* Ensure that the current tests pass, and if you've added something new, add the tests where relevant.
|
|
11
|
+
* Send a coherent commit history, making sure each commit in your pull request is meaningful.
|
|
12
|
+
* You may need to [rebase](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) to avoid merge conflicts.
|
|
13
|
+
* If you are changing or adding to the behaviour or public API, you may need to update the docs.
|
|
14
|
+
* Please remember that we follow [Semantic Versioning](https://semver.org/).
|
|
15
|
+
|
|
16
|
+
## Running Tests
|
|
17
|
+
|
|
18
|
+
First, install the dependencies using [Composer](https://getcomposer.org/):
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
$ composer install
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Then run [PHPUnit](https://phpunit.de/):
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
$ vendor/bin/phpunit
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
* The tests will be automatically run by [GitHub Actions](https://github.com/features/actions) against pull requests.
|
|
31
|
+
* We also have [StyleCI](https://styleci.io/) set up to automatically fix any code style issues.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# SECURITY POLICY
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
After each new major release, the previous release will be supported for no
|
|
6
|
+
less than 2 years, unless explicitly stated otherwise. This may mean that there
|
|
7
|
+
are multiple supported versions at any given time.
|
|
8
|
+
|
|
9
|
+
## Reporting a Vulnerability
|
|
10
|
+
|
|
11
|
+
If you discover a security vulnerability within this package, please send an
|
|
12
|
+
email to security@tidelift.com. All security vulnerabilities will be promptly
|
|
13
|
+
addressed. Please do not disclose security-related issues publicly until a fix
|
|
14
|
+
has been announced.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
tests:
|
|
9
|
+
name: PHP ${{ matrix.php }}
|
|
10
|
+
runs-on: ubuntu-24.04
|
|
11
|
+
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout Code
|
|
18
|
+
uses: actions/checkout@v6
|
|
19
|
+
|
|
20
|
+
- name: Setup PHP
|
|
21
|
+
uses: shivammathur/setup-php@v2
|
|
22
|
+
with:
|
|
23
|
+
php-version: ${{ matrix.php }}
|
|
24
|
+
tools: composer:v2
|
|
25
|
+
coverage: none
|
|
26
|
+
env:
|
|
27
|
+
update: true
|
|
28
|
+
|
|
29
|
+
- name: Setup Problem Matchers
|
|
30
|
+
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
|
31
|
+
|
|
32
|
+
- name: Install PHP Dependencies
|
|
33
|
+
uses: nick-fields/retry@v3
|
|
34
|
+
with:
|
|
35
|
+
timeout_minutes: 5
|
|
36
|
+
max_attempts: 5
|
|
37
|
+
command: composer update --no-interaction --no-progress
|
|
38
|
+
|
|
39
|
+
- name: Execute PHPUnit
|
|
40
|
+
run: vendor/bin/phpunit
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
CHANGE LOG
|
|
2
|
+
==========
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## V1.1.4 (27/12/2025)
|
|
6
|
+
|
|
7
|
+
* Added support for PHP 8.5
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## V1.1.3 (20/07/2024)
|
|
11
|
+
|
|
12
|
+
* Added support for PHP 8.4
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## V1.1.2 (12/11/2023)
|
|
16
|
+
|
|
17
|
+
* Added support for PHP 8.3
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## V1.1.1 (25/02/2023)
|
|
21
|
+
|
|
22
|
+
* Cleaned up tests
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## V1.1 (30/07/2022)
|
|
26
|
+
|
|
27
|
+
* Added support for PHP 8.2
|
|
28
|
+
* Dropped support for PHP <7.2.5
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## V1.0.4 (21/11/2021)
|
|
32
|
+
|
|
33
|
+
* Updated package metadata
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## V1.0.3 (17/10/2021)
|
|
37
|
+
|
|
38
|
+
* Corrected docs
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## V1.0.2 (28/08/2021)
|
|
42
|
+
|
|
43
|
+
* Added support for PHP 8.1
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## V1.0.1 (13/04/2020)
|
|
47
|
+
|
|
48
|
+
* Updated funding information
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
## V1.0 (21/03/2020)
|
|
52
|
+
|
|
53
|
+
* Initial release
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020-2024 Graham Campbell <hello@gjcampbell.co.uk>
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020-2024 Graham Campbell <hello@gjcampbell.co.uk>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|