create-berna-stencil 1.0.24 → 1.0.25
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/.eleventy.js +1 -0
- package/_tools/assistant.js +6 -6
- package/_tools/modules/updateOutputPath.js +1 -4
- package/_tools/modules/updatePage.js +33 -72
- package/_tools/res/templates/template.js +23 -0
- package/_tools/res/templates/template.njk +8 -0
- package/_tools/res/templates/template.scss +17 -0
- package/bin/create.js +1 -1
- package/package.json +1 -1
- package/src/api/.htaccess +6 -11
- package/src/api/config.example.php +4 -6
- package/src/api/config.php +5 -20
- package/src/api/core/composer.json +2 -1
- package/src/api/core/composer.lock +679 -492
- package/src/api/{index.php → core/index.php} +53 -24
- package/src/api/core/init.php +0 -13
- package/src/api/core/vendor/composer/autoload_files.php +1 -0
- package/src/api/core/vendor/composer/autoload_psr4.php +2 -0
- package/src/api/core/vendor/composer/autoload_static.php +14 -0
- package/src/api/core/vendor/composer/installed.json +196 -0
- package/src/api/core/vendor/composer/installed.php +29 -2
- package/src/api/core/vendor/composer/platform_check.php +2 -2
- package/src/api/core/vendor/fakerphp/faker/.editorconfig +18 -0
- package/src/api/core/vendor/fakerphp/faker/.gitattributes +16 -0
- package/src/api/core/vendor/fakerphp/faker/.github/CONTRIBUTING.md +35 -0
- package/src/api/core/vendor/fakerphp/faker/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/src/api/core/vendor/fakerphp/faker/.github/PULL_REQUEST_TEMPLATE.md +21 -0
- package/src/api/core/vendor/fakerphp/faker/.github/SECURITY.md +17 -0
- package/src/api/core/vendor/fakerphp/faker/.github/dependabot.yml +63 -0
- package/src/api/core/vendor/fakerphp/faker/.github/stale.yml +14 -0
- package/src/api/core/vendor/fakerphp/faker/.github/workflows/bc-check.yaml +24 -0
- package/src/api/core/vendor/fakerphp/faker/.github/workflows/branch-alias.yaml +67 -0
- package/src/api/core/vendor/fakerphp/faker/.github/workflows/code-coverage.yaml +55 -0
- package/src/api/core/vendor/fakerphp/faker/.github/workflows/coding-standards.yaml +77 -0
- package/src/api/core/vendor/fakerphp/faker/.github/workflows/rector.yaml +51 -0
- package/src/api/core/vendor/fakerphp/faker/.github/workflows/static-analysis.yaml +91 -0
- package/src/api/core/vendor/fakerphp/faker/.github/workflows/tests.yaml +58 -0
- package/src/api/core/vendor/fakerphp/faker/.php-cs-fixer.dist.php +241 -0
- package/src/api/core/vendor/fakerphp/faker/.yamllint.yaml +67 -0
- package/src/api/core/vendor/fakerphp/faker/CHANGELOG.md +209 -0
- package/src/api/core/vendor/fakerphp/faker/LICENSE +22 -0
- package/src/api/core/vendor/fakerphp/faker/Makefile +43 -0
- package/src/api/core/vendor/fakerphp/faker/README.md +114 -0
- package/src/api/core/vendor/fakerphp/faker/codecov.yml +1 -0
- package/src/api/core/vendor/fakerphp/faker/composer.json +56 -0
- package/src/api/core/vendor/fakerphp/faker/phpstan-baseline.neon +945 -0
- package/src/api/core/vendor/fakerphp/faker/phpstan.neon.dist +10 -0
- package/src/api/core/vendor/fakerphp/faker/phpunit.xml.dist +29 -0
- package/src/api/core/vendor/fakerphp/faker/psalm.baseline.xml +227 -0
- package/src/api/core/vendor/fakerphp/faker/psalm.xml +19 -0
- package/src/api/core/vendor/fakerphp/faker/rector-migrate.php +161 -0
- package/src/api/core/vendor/fakerphp/faker/roave-bc-check.yaml +51 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Ean.php +50 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Iban.php +69 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Inn.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Isbn.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/Luhn.php +72 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Calculator/TCNo.php +43 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ChanceGenerator.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/Container.php +139 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/ContainerBuilder.php +68 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/ContainerException.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/ContainerInterface.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Container/NotInContainerException.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Barcode.php +52 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Blood.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Color.php +177 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Coordinates.php +78 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/DateTime.php +217 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/File.php +564 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Number.php +83 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Uuid.php +65 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Core/Version.php +69 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/DefaultGenerator.php +49 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Documentor.php +70 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/AddressExtension.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/BarcodeExtension.php +41 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/BloodExtension.php +30 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/ColorExtension.php +63 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/CompanyExtension.php +21 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/CountryExtension.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/DateTimeExtension.php +242 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/Extension.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/ExtensionNotFound.php +12 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/FileExtension.php +28 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/GeneratorAwareExtension.php +20 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/GeneratorAwareExtensionTrait.php +30 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/Helper.php +106 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/NumberExtension.php +53 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/PersonExtension.php +52 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/PhoneNumberExtension.php +19 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/UuidExtension.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Extension/VersionExtension.php +21 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Factory.php +71 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Generator.php +985 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Guesser/Name.php +180 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/CakePHP/ColumnTypeGuesser.php +79 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/CakePHP/EntityPopulator.php +173 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/CakePHP/Populator.php +113 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/ColumnTypeGuesser.php +91 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/EntityPopulator.php +248 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/Populator.php +126 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Doctrine/backward-compatibility.php +11 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Mandango/ColumnTypeGuesser.php +57 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Mandango/EntityPopulator.php +123 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Mandango/Populator.php +63 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel/ColumnTypeGuesser.php +109 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel/EntityPopulator.php +204 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel/Populator.php +90 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel2/ColumnTypeGuesser.php +112 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel2/EntityPopulator.php +207 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Propel2/Populator.php +93 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Spot/ColumnTypeGuesser.php +84 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Spot/EntityPopulator.php +199 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ORM/Spot/Populator.php +89 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Address.php +166 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Barcode.php +107 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Base.php +710 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Biased.php +65 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Color.php +158 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Company.php +50 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/DateTime.php +389 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/File.php +610 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/HtmlLorem.php +307 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Image.php +196 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Internet.php +407 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Lorem.php +228 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Medical.php +34 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Miscellaneous.php +342 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Payment.php +312 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Person.php +147 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/PhoneNumber.php +270 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Text.php +202 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/UserAgent.php +219 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/Uuid.php +59 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Address.php +217 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Color.php +65 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Company.php +85 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Internet.php +93 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Payment.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Person.php +107 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_EG/Text.php +31 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Address.php +152 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Company.php +66 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Internet.php +55 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Person.php +108 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_JO/Text.php +272 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Address.php +146 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Color.php +81 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Company.php +78 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Internet.php +55 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Person.php +121 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ar_SA/Text.php +272 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/at_AT/Payment.php +11 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/Payment.php +46 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/Person.php +117 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bg_BG/PhoneNumber.php +20 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Address.php +310 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Company.php +28 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Person.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/PhoneNumber.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/bn_BD/Utils.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Address.php +149 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Company.php +125 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/DateTime.php +65 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Person.php +538 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/PhoneNumber.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/cs_CZ/Text.php +7186 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Address.php +284 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Company.php +67 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Internet.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/Person.php +195 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/da_DK/PhoneNumber.php +18 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Address.php +143 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Company.php +13 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Payment.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Person.php +154 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/PhoneNumber.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_AT/Text.php +7 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Address.php +197 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Company.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Internet.php +17 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Person.php +119 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/PhoneNumber.php +47 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_CH/Text.php +2038 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Address.php +126 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Company.php +24 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Internet.php +26 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Payment.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Person.php +132 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/PhoneNumber.php +127 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/de_DE/Text.php +2038 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Address.php +55 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Company.php +18 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Payment.php +50 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/Person.php +100 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_CY/PhoneNumber.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Address.php +61 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Company.php +84 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Person.php +181 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/PhoneNumber.php +324 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/el_GR/Text.php +2582 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_AU/Address.php +112 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_AU/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_AU/PhoneNumber.php +56 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_CA/Address.php +72 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_CA/PhoneNumber.php +18 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Address.php +174 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Company.php +130 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/Person.php +113 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_GB/PhoneNumber.php +49 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_HK/Address.php +239 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_HK/Internet.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_HK/PhoneNumber.php +41 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/Address.php +188 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/Person.php +125 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_IN/PhoneNumber.php +37 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/Address.php +98 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/Internet.php +8 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/Person.php +90 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NG/PhoneNumber.php +133 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NZ/Address.php +88 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NZ/Internet.php +17 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_NZ/PhoneNumber.php +102 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_PH/Address.php +417 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_PH/PhoneNumber.php +59 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_SG/Address.php +125 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_SG/Person.php +74 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_SG/PhoneNumber.php +105 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/Address.php +101 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/Person.php +133 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_UG/PhoneNumber.php +17 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Address.php +97 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Company.php +119 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Payment.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Person.php +133 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/PhoneNumber.php +135 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_US/Text.php +3721 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Address.php +70 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Company.php +26 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Internet.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/Person.php +182 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/en_ZA/PhoneNumber.php +116 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/Address.php +68 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/Company.php +68 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/Person.php +90 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_AR/PhoneNumber.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Address.php +101 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Color.php +24 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Company.php +82 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Payment.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Person.php +149 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/PhoneNumber.php +47 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_ES/Text.php +688 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/Address.php +65 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/Company.php +88 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/Person.php +105 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_PE/PhoneNumber.php +17 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Address.php +72 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Company.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/Person.php +176 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/es_VE/PhoneNumber.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/et_EE/Person.php +84 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Address.php +100 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Company.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Internet.php +102 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Person.php +210 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/PhoneNumber.php +76 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fa_IR/Text.php +551 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Address.php +85 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Company.php +66 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/Person.php +154 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fi_FI/PhoneNumber.php +101 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Address.php +72 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Color.php +7 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Company.php +13 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Payment.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/Person.php +49 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_BE/PhoneNumber.php +20 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Address.php +125 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Color.php +7 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Company.php +7 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Person.php +82 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CA/Text.php +2446 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Address.php +150 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Color.php +7 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Company.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Person.php +114 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/PhoneNumber.php +43 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_CH/Text.php +7 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Address.php +151 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Color.php +40 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Company.php +481 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Payment.php +49 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Person.php +130 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/PhoneNumber.php +168 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/fr_FR/Text.php +15532 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Address.php +122 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Company.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/Person.php +132 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/he_IL/PhoneNumber.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Address.php +68 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Company.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/Person.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hr_HR/PhoneNumber.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Address.php +148 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Company.php +13 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Person.php +101 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/PhoneNumber.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hu_HU/Text.php +3407 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Address.php +132 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Color.php +12 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Company.php +56 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/Person.php +110 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/hy_AM/PhoneNumber.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Address.php +319 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Color.php +40 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Company.php +64 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Internet.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/Person.php +343 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/id_ID/PhoneNumber.php +55 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Address.php +175 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Company.php +50 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Internet.php +20 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/Person.php +142 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/is_IS/PhoneNumber.php +17 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Address.php +149 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Company.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Person.php +102 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/PhoneNumber.php +43 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_CH/Text.php +7 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Address.php +97 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Company.php +95 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Person.php +113 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/PhoneNumber.php +21 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/it_IT/Text.php +2079 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Address.php +137 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Company.php +17 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Internet.php +93 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Person.php +147 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/PhoneNumber.php +19 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ja_JP/Text.php +640 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Address.php +139 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Color.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Company.php +53 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/DateTime.php +43 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Internet.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Payment.php +55 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Person.php +63 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/PhoneNumber.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ka_GE/Text.php +1000 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Address.php +105 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Color.php +12 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Company.php +72 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Payment.php +35 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Person.php +265 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/PhoneNumber.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/kk_KZ/Text.php +492 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Address.php +96 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Company.php +31 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Internet.php +86 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Person.php +54 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/PhoneNumber.php +40 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ko_KR/Text.php +1725 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Address.php +209 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Company.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Internet.php +18 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/Person.php +390 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lt_LT/PhoneNumber.php +17 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Address.php +117 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Color.php +19 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/Person.php +173 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/lv_LV/PhoneNumber.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Address.php +119 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Company.php +49 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/Person.php +102 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/me_ME/PhoneNumber.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/mn_MN/Person.php +102 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/mn_MN/PhoneNumber.php +13 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Address.php +710 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Company.php +105 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Miscellaneous.php +169 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Payment.php +244 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/Person.php +812 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ms_MY/PhoneNumber.php +217 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Address.php +197 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Company.php +57 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/Person.php +335 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nb_NO/PhoneNumber.php +41 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Address.php +131 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Internet.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Payment.php +316 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/Person.php +121 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ne_NP/PhoneNumber.php +19 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Address.php +124 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Company.php +13 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Payment.php +49 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Person.php +108 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/PhoneNumber.php +20 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_BE/Text.php +25348 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Address.php +153 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Color.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Company.php +122 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Person.php +353 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/PhoneNumber.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/nl_NL/Text.php +3933 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Address.php +209 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Color.php +40 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Company.php +90 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/LicensePlate.php +545 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Payment.php +120 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Person.php +243 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/PhoneNumber.php +18 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Text.php +2867 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Address.php +154 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Company.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Payment.php +148 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Person.php +159 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/PhoneNumber.php +150 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/Text.php +3427 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_BR/check_digit.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Address.php +130 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Company.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/Person.php +147 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/pt_PT/PhoneNumber.php +50 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Address.php +125 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Person.php +91 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/PhoneNumber.php +33 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_MD/Text.php +2465 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Address.php +153 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Person.php +251 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/PhoneNumber.php +62 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ro_RO/Text.php +155 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Address.php +139 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Color.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Company.php +178 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Payment.php +812 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Person.php +188 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/PhoneNumber.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/ru_RU/Text.php +4551 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Address.php +343 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Company.php +66 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/Person.php +171 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sk_SK/PhoneNumber.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Address.php +106 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Company.php +14 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Internet.php +10 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/Person.php +149 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sl_SI/PhoneNumber.php +18 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Cyrl_RS/Address.php +58 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Cyrl_RS/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Cyrl_RS/Person.php +242 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Latn_RS/Address.php +58 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Latn_RS/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_Latn_RS/Person.php +213 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_RS/Address.php +58 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_RS/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sr_RS/Person.php +143 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Address.php +151 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Company.php +26 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Municipality.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/Person.php +170 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/sv_SE/PhoneNumber.php +64 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Address.php +141 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Color.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Company.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Internet.php +8 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Payment.php +44 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/Person.php +87 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/th_TH/PhoneNumber.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Address.php +94 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Color.php +58 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Company.php +100 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/DateTime.php +48 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Payment.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/Person.php +159 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/tr_TR/PhoneNumber.php +186 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Address.php +364 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Color.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Company.php +74 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Internet.php +9 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Payment.php +41 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Person.php +101 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/PhoneNumber.php +72 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/uk_UA/Text.php +4512 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Address.php +170 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Color.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Internet.php +8 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/Person.php +186 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/vi_VN/PhoneNumber.php +61 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Address.php +148 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Color.php +66 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Company.php +235 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/DateTime.php +48 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Internet.php +24 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Payment.php +43 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/Person.php +83 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_CN/PhoneNumber.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Address.php +421 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Color.php +66 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Company.php +268 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/DateTime.php +48 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Internet.php +28 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Payment.php +21 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Person.php +201 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/PhoneNumber.php +19 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/Provider/zh_TW/Text.php +900 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/UniqueGenerator.php +87 -0
- package/src/api/core/vendor/fakerphp/faker/src/Faker/ValidGenerator.php +78 -0
- package/src/api/core/vendor/fakerphp/faker/src/autoload.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/EanTest.php +82 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/IbanTest.php +305 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/IsbnTest.php +57 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Calculator/LuhnTest.php +69 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/BarcodeTest.php +40 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/BloodTest.php +73 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/ColorTest.php +77 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/DateTimeTest.php +279 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/NumberTest.php +99 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/UuidTest.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Core/VersionTest.php +21 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/DefaultGeneratorTest.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/ContainerBuilderTest.php +149 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/ContainerTest.php +226 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/GeneratorAwareExtensionTest.php +33 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Extension/HelperTest.php +84 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/GeneratorTest.php +331 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/ORM/Doctrine/ColumnTypeGuesserTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/ORM/Doctrine/EntityPopulatorTest.php +26 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/ORM/Doctrine/PopulatorTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/AddressTest.php +45 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/BarcodeTest.php +47 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/BaseTest.php +652 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/BiasedTest.php +82 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ColorTest.php +68 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/CompanyTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/DateTimeTest.php +295 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/HtmlLoremTest.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ImageTest.php +192 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/InternetTest.php +141 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/LocalizationTest.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/LoremTest.php +112 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/MedicalTest.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/MiscellaneousTest.php +62 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/PaymentTest.php +200 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/PersonTest.php +86 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/PhoneNumberTest.php +33 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ProviderOverrideTest.php +137 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/TextTest.php +111 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/UserAgentTest.php +59 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/UuidTest.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/CompanyTest.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/InternetTest.php +24 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/PersonTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_EG/TextTest.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_JO/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_SA/CompanyTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_SA/InternetTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ar_SA/PersonTest.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/bg_BG/PaymentTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/bn_BD/PersonTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/cs_CZ/PersonTest.php +58 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/da_DK/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/AddressTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/PaymentTest.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/PersonTest.php +64 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_AT/PhoneNumberTest.php +31 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/AddressTest.php +54 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/PersonTest.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_CH/PhoneNumberTest.php +35 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_DE/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/de_DE/PhoneNumberTest.php +48 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/el_GR/PhoneNumberTest.php +77 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/el_GR/TextTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_AU/AddressTest.php +40 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_CA/AddressTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/AddressTest.php +24 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/CompanyTest.php +73 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/PersonTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_GB/PhoneNumberTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_IN/AddressTest.php +48 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/AddressTest.php +46 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/InternetTest.php +28 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/PersonTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NG/PhoneNumberTest.php +26 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_NZ/PhoneNumberTest.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_PH/AddressTest.php +44 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_SG/AddressTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_SG/PersonTest.php +79 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_SG/PhoneNumberTest.php +71 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_UG/AddressTest.php +38 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/CompanyTest.php +28 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/PaymentTest.php +79 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/PersonTest.php +42 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_US/PhoneNumberTest.php +87 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/CompanyTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/PersonTest.php +68 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/en_ZA/PhoneNumberTest.php +67 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/PaymentTest.php +58 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/PersonTest.php +44 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/PhoneNumberTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_ES/TextTest.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_PE/CompanyTest.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_PE/PersonTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_VE/CompanyTest.php +30 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/es_VE/PersonTest.php +28 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fa_IR/PersonTest.php +48 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fi_FI/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fi_FI/PersonTest.php +85 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_BE/PaymentTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/AddressTest.php +54 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/PersonTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_CH/PhoneNumberTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/AddressTest.php +43 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/ColorTest.php +35 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/CompanyTest.php +76 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/PaymentTest.php +49 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/PersonTest.php +35 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/PhoneNumberTest.php +73 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/fr_FR/TextTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/hu_HU/PersonTest.php +26 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/id_ID/PersonTest.php +89 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/AddressTest.php +54 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/InternetTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/PersonTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_CH/PhoneNumberTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_IT/CompanyTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/it_IT/PersonTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ja_JP/InternetTest.php +33 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ja_JP/PersonTest.php +57 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ja_JP/PhoneNumberTest.php +26 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ka_GE/TextTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/kk_KZ/CompanyTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/kk_KZ/PersonTest.php +56 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/kk_KZ/TextTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ko_KR/TextTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/lt_LT/AddressTest.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/lv_LV/AddressTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/lv_LV/PersonTest.php +37 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/mn_MN/PersonTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ms_MY/PersonTest.php +45 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nb_NO/PhoneNumberTest.php +47 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ne_NP/PaymentTest.php +94 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_BE/PaymentTest.php +46 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_BE/PersonTest.php +48 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_NL/CompanyTest.php +33 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/nl_NL/PersonTest.php +31 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/AddressTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/ColorTest.php +35 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/LicensePlateTest.php +275 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pl_PL/PersonTest.php +102 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/CompanyTest.php +25 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/PersonTest.php +33 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/PhoneNumberTest.php +51 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_BR/TextTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_PT/AddressTest.php +34 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_PT/PersonTest.php +50 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/pt_PT/PhoneNumberTest.php +27 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ro_RO/PersonTest.php +234 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ro_RO/PhoneNumberTest.php +32 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ru_RU/CompanyTest.php +83 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ru_RU/PersonTest.php +172 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/ru_RU/TextTest.php +60 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/sv_SE/MunicipalityTest.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/sv_SE/PersonTest.php +78 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/sv_SE/PhoneNumberTest.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/CompanyTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/PaymentTest.php +23 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/PersonTest.php +74 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/tr_TR/PhoneNumberTest.php +36 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/uk_UA/AddressTest.php +75 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/uk_UA/PersonTest.php +57 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/uk_UA/PhoneNumberTest.php +39 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/zh_TW/CompanyTest.php +22 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/zh_TW/PersonTest.php +41 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/Provider/zh_TW/TextTest.php +79 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/TestCase.php +54 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/UniqueGeneratorTest.php +29 -0
- package/src/api/core/vendor/fakerphp/faker/test/Faker/ValidGeneratorTest.php +19 -0
- package/src/api/core/vendor/fakerphp/faker/test/Fixture/Container/UnconstructableClass.php +15 -0
- package/src/api/core/vendor/fakerphp/faker/test/Fixture/Enum/BackedEnum.php +12 -0
- package/src/api/core/vendor/fakerphp/faker/test/Fixture/Provider/BarProvider.php +11 -0
- package/src/api/core/vendor/fakerphp/faker/test/Fixture/Provider/FooProvider.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/test/documentor.php +16 -0
- package/src/api/core/vendor/fakerphp/faker/test/test.php +38 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/php-cs-fixer/composer.json +13 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/php-cs-fixer/composer.lock +1941 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/phpstan/composer.json +18 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/phpstan/composer.lock +178 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/psalm/composer.json +16 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/psalm/composer.lock +2262 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/rector/composer.json +13 -0
- package/src/api/core/vendor/fakerphp/faker/vendor-bin/rector/composer.lock +142 -0
- package/src/api/core/vendor/psr/container/LICENSE +21 -0
- package/src/api/core/vendor/psr/container/README.md +13 -0
- package/src/api/core/vendor/psr/container/composer.json +27 -0
- package/src/api/core/vendor/psr/container/src/ContainerExceptionInterface.php +12 -0
- package/src/api/core/vendor/psr/container/src/ContainerInterface.php +36 -0
- package/src/api/core/vendor/psr/container/src/NotFoundExceptionInterface.php +10 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/.gitattributes +1 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/.github/PULL_REQUEST_TEMPLATE.md +8 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/.github/workflows/close-pull-request.yml +20 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/CHANGELOG.md +5 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/LICENSE +19 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/README.md +26 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/composer.json +35 -0
- package/src/api/core/vendor/symfony/deprecation-contracts/function.php +27 -0
- package/src/api/database/Database.php +24 -0
- package/src/api/database/migrations/create_example_db.sql +1 -0
- package/src/api/database/migrations/create_users_table.sql +9 -0
- package/src/api/database/models/User.php +61 -0
- package/src/api/database/seeds/users.php +0 -0
- package/src/api/database/services/UserService.php +0 -0
- package/src/api/endpoints/protected/auth-system.php +63 -0
- package/src/api/endpoints/protected/example-protected.php +17 -0
- package/src/api/endpoints/public/auth/login.php +34 -0
- package/src/api/endpoints/public/auth/register.php +39 -0
- package/src/api/endpoints/public/example-public.php +17 -0
- package/src/api/web.config +6 -24
- package/src/components/exampleComponent.njk +5 -2
- package/src/components/layouts/base.njk +26 -1
- package/src/data/site.json +53 -53
- package/src/js/modules/langSwitcher.js +1 -1
- package/src/web.config +30 -33
- package/_tools/res/templates.json +0 -56
- package/src/api/endpoints/protected/example-protected-endpoint.php +0 -28
- package/src/api/endpoints/public/example-public-endpoint.php +0 -28
|
@@ -1,492 +1,679 @@
|
|
|
1
|
-
{
|
|
2
|
-
"_readme": [
|
|
3
|
-
"This file locks the dependencies of your project to a known state",
|
|
4
|
-
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
5
|
-
"This file is @generated automatically"
|
|
6
|
-
],
|
|
7
|
-
"content-hash": "
|
|
8
|
-
"packages": [
|
|
9
|
-
{
|
|
10
|
-
"name": "
|
|
11
|
-
"version": "v1.1
|
|
12
|
-
"source": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "https://github.com/
|
|
15
|
-
"reference": "
|
|
16
|
-
},
|
|
17
|
-
"dist": {
|
|
18
|
-
"type": "zip",
|
|
19
|
-
"url": "https://api.github.com/repos/
|
|
20
|
-
"reference": "
|
|
21
|
-
"shasum": ""
|
|
22
|
-
},
|
|
23
|
-
"require": {
|
|
24
|
-
"php": "^7.
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
],
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
"
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
"
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
"
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
"
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
"
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
},
|
|
237
|
-
"
|
|
238
|
-
|
|
239
|
-
"
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
"
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
"
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
},
|
|
260
|
-
"
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
"
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
},
|
|
294
|
-
"
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
{
|
|
300
|
-
"
|
|
301
|
-
"
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
"
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
"
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
"
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
"
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
"
|
|
351
|
-
"
|
|
352
|
-
|
|
353
|
-
"
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
{
|
|
359
|
-
"
|
|
360
|
-
"
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
"
|
|
374
|
-
],
|
|
375
|
-
"
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
"
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
"
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
"
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
"
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
"
|
|
431
|
-
"
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
"
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
"
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
"
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
1
|
+
{
|
|
2
|
+
"_readme": [
|
|
3
|
+
"This file locks the dependencies of your project to a known state",
|
|
4
|
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
5
|
+
"This file is @generated automatically"
|
|
6
|
+
],
|
|
7
|
+
"content-hash": "38e79b53f7937b69710e71ab237cc2a9",
|
|
8
|
+
"packages": [
|
|
9
|
+
{
|
|
10
|
+
"name": "fakerphp/faker",
|
|
11
|
+
"version": "v1.24.1",
|
|
12
|
+
"source": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/FakerPHP/Faker.git",
|
|
15
|
+
"reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
|
|
16
|
+
},
|
|
17
|
+
"dist": {
|
|
18
|
+
"type": "zip",
|
|
19
|
+
"url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
|
|
20
|
+
"reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
|
|
21
|
+
"shasum": ""
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"php": "^7.4 || ^8.0",
|
|
25
|
+
"psr/container": "^1.0 || ^2.0",
|
|
26
|
+
"symfony/deprecation-contracts": "^2.2 || ^3.0"
|
|
27
|
+
},
|
|
28
|
+
"conflict": {
|
|
29
|
+
"fzaninotto/faker": "*"
|
|
30
|
+
},
|
|
31
|
+
"require-dev": {
|
|
32
|
+
"bamarni/composer-bin-plugin": "^1.4.1",
|
|
33
|
+
"doctrine/persistence": "^1.3 || ^2.0",
|
|
34
|
+
"ext-intl": "*",
|
|
35
|
+
"phpunit/phpunit": "^9.5.26",
|
|
36
|
+
"symfony/phpunit-bridge": "^5.4.16"
|
|
37
|
+
},
|
|
38
|
+
"suggest": {
|
|
39
|
+
"doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
|
|
40
|
+
"ext-curl": "Required by Faker\\Provider\\Image to download images.",
|
|
41
|
+
"ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
|
|
42
|
+
"ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
|
|
43
|
+
"ext-mbstring": "Required for multibyte Unicode string functionality."
|
|
44
|
+
},
|
|
45
|
+
"type": "library",
|
|
46
|
+
"autoload": {
|
|
47
|
+
"psr-4": {
|
|
48
|
+
"Faker\\": "src/Faker/"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
52
|
+
"license": [
|
|
53
|
+
"MIT"
|
|
54
|
+
],
|
|
55
|
+
"authors": [
|
|
56
|
+
{
|
|
57
|
+
"name": "François Zaninotto"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"description": "Faker is a PHP library that generates fake data for you.",
|
|
61
|
+
"keywords": [
|
|
62
|
+
"data",
|
|
63
|
+
"faker",
|
|
64
|
+
"fixtures"
|
|
65
|
+
],
|
|
66
|
+
"support": {
|
|
67
|
+
"issues": "https://github.com/FakerPHP/Faker/issues",
|
|
68
|
+
"source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
|
|
69
|
+
},
|
|
70
|
+
"time": "2024-11-21T13:46:39+00:00"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "graham-campbell/result-type",
|
|
74
|
+
"version": "v1.1.4",
|
|
75
|
+
"source": {
|
|
76
|
+
"type": "git",
|
|
77
|
+
"url": "https://github.com/GrahamCampbell/Result-Type.git",
|
|
78
|
+
"reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
|
|
79
|
+
},
|
|
80
|
+
"dist": {
|
|
81
|
+
"type": "zip",
|
|
82
|
+
"url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
|
|
83
|
+
"reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
|
|
84
|
+
"shasum": ""
|
|
85
|
+
},
|
|
86
|
+
"require": {
|
|
87
|
+
"php": "^7.2.5 || ^8.0",
|
|
88
|
+
"phpoption/phpoption": "^1.9.5"
|
|
89
|
+
},
|
|
90
|
+
"require-dev": {
|
|
91
|
+
"phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
|
|
92
|
+
},
|
|
93
|
+
"type": "library",
|
|
94
|
+
"autoload": {
|
|
95
|
+
"psr-4": {
|
|
96
|
+
"GrahamCampbell\\ResultType\\": "src/"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
100
|
+
"license": [
|
|
101
|
+
"MIT"
|
|
102
|
+
],
|
|
103
|
+
"authors": [
|
|
104
|
+
{
|
|
105
|
+
"name": "Graham Campbell",
|
|
106
|
+
"email": "hello@gjcampbell.co.uk",
|
|
107
|
+
"homepage": "https://github.com/GrahamCampbell"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"description": "An Implementation Of The Result Type",
|
|
111
|
+
"keywords": [
|
|
112
|
+
"Graham Campbell",
|
|
113
|
+
"GrahamCampbell",
|
|
114
|
+
"Result Type",
|
|
115
|
+
"Result-Type",
|
|
116
|
+
"result"
|
|
117
|
+
],
|
|
118
|
+
"support": {
|
|
119
|
+
"issues": "https://github.com/GrahamCampbell/Result-Type/issues",
|
|
120
|
+
"source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
|
|
121
|
+
},
|
|
122
|
+
"funding": [
|
|
123
|
+
{
|
|
124
|
+
"url": "https://github.com/GrahamCampbell",
|
|
125
|
+
"type": "github"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
|
|
129
|
+
"type": "tidelift"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"time": "2025-12-27T19:43:20+00:00"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "phpoption/phpoption",
|
|
136
|
+
"version": "1.9.5",
|
|
137
|
+
"source": {
|
|
138
|
+
"type": "git",
|
|
139
|
+
"url": "https://github.com/schmittjoh/php-option.git",
|
|
140
|
+
"reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
|
|
141
|
+
},
|
|
142
|
+
"dist": {
|
|
143
|
+
"type": "zip",
|
|
144
|
+
"url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
|
|
145
|
+
"reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
|
|
146
|
+
"shasum": ""
|
|
147
|
+
},
|
|
148
|
+
"require": {
|
|
149
|
+
"php": "^7.2.5 || ^8.0"
|
|
150
|
+
},
|
|
151
|
+
"require-dev": {
|
|
152
|
+
"bamarni/composer-bin-plugin": "^1.8.2",
|
|
153
|
+
"phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
|
|
154
|
+
},
|
|
155
|
+
"type": "library",
|
|
156
|
+
"extra": {
|
|
157
|
+
"bamarni-bin": {
|
|
158
|
+
"bin-links": true,
|
|
159
|
+
"forward-command": false
|
|
160
|
+
},
|
|
161
|
+
"branch-alias": {
|
|
162
|
+
"dev-master": "1.9-dev"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"autoload": {
|
|
166
|
+
"psr-4": {
|
|
167
|
+
"PhpOption\\": "src/PhpOption/"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
171
|
+
"license": [
|
|
172
|
+
"Apache-2.0"
|
|
173
|
+
],
|
|
174
|
+
"authors": [
|
|
175
|
+
{
|
|
176
|
+
"name": "Johannes M. Schmitt",
|
|
177
|
+
"email": "schmittjoh@gmail.com",
|
|
178
|
+
"homepage": "https://github.com/schmittjoh"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "Graham Campbell",
|
|
182
|
+
"email": "hello@gjcampbell.co.uk",
|
|
183
|
+
"homepage": "https://github.com/GrahamCampbell"
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"description": "Option Type for PHP",
|
|
187
|
+
"keywords": [
|
|
188
|
+
"language",
|
|
189
|
+
"option",
|
|
190
|
+
"php",
|
|
191
|
+
"type"
|
|
192
|
+
],
|
|
193
|
+
"support": {
|
|
194
|
+
"issues": "https://github.com/schmittjoh/php-option/issues",
|
|
195
|
+
"source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
|
|
196
|
+
},
|
|
197
|
+
"funding": [
|
|
198
|
+
{
|
|
199
|
+
"url": "https://github.com/GrahamCampbell",
|
|
200
|
+
"type": "github"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
|
|
204
|
+
"type": "tidelift"
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
"time": "2025-12-27T19:41:33+00:00"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "psr/container",
|
|
211
|
+
"version": "2.0.2",
|
|
212
|
+
"source": {
|
|
213
|
+
"type": "git",
|
|
214
|
+
"url": "https://github.com/php-fig/container.git",
|
|
215
|
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
|
|
216
|
+
},
|
|
217
|
+
"dist": {
|
|
218
|
+
"type": "zip",
|
|
219
|
+
"url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
|
|
220
|
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
|
|
221
|
+
"shasum": ""
|
|
222
|
+
},
|
|
223
|
+
"require": {
|
|
224
|
+
"php": ">=7.4.0"
|
|
225
|
+
},
|
|
226
|
+
"type": "library",
|
|
227
|
+
"extra": {
|
|
228
|
+
"branch-alias": {
|
|
229
|
+
"dev-master": "2.0.x-dev"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"autoload": {
|
|
233
|
+
"psr-4": {
|
|
234
|
+
"Psr\\Container\\": "src/"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
238
|
+
"license": [
|
|
239
|
+
"MIT"
|
|
240
|
+
],
|
|
241
|
+
"authors": [
|
|
242
|
+
{
|
|
243
|
+
"name": "PHP-FIG",
|
|
244
|
+
"homepage": "https://www.php-fig.org/"
|
|
245
|
+
}
|
|
246
|
+
],
|
|
247
|
+
"description": "Common Container Interface (PHP FIG PSR-11)",
|
|
248
|
+
"homepage": "https://github.com/php-fig/container",
|
|
249
|
+
"keywords": [
|
|
250
|
+
"PSR-11",
|
|
251
|
+
"container",
|
|
252
|
+
"container-interface",
|
|
253
|
+
"container-interop",
|
|
254
|
+
"psr"
|
|
255
|
+
],
|
|
256
|
+
"support": {
|
|
257
|
+
"issues": "https://github.com/php-fig/container/issues",
|
|
258
|
+
"source": "https://github.com/php-fig/container/tree/2.0.2"
|
|
259
|
+
},
|
|
260
|
+
"time": "2021-11-05T16:47:00+00:00"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "symfony/deprecation-contracts",
|
|
264
|
+
"version": "v3.7.0",
|
|
265
|
+
"source": {
|
|
266
|
+
"type": "git",
|
|
267
|
+
"url": "https://github.com/symfony/deprecation-contracts.git",
|
|
268
|
+
"reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b"
|
|
269
|
+
},
|
|
270
|
+
"dist": {
|
|
271
|
+
"type": "zip",
|
|
272
|
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/50f59d1f3ca46d41ac911f97a78626b6756af35b",
|
|
273
|
+
"reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b",
|
|
274
|
+
"shasum": ""
|
|
275
|
+
},
|
|
276
|
+
"require": {
|
|
277
|
+
"php": ">=8.1"
|
|
278
|
+
},
|
|
279
|
+
"type": "library",
|
|
280
|
+
"extra": {
|
|
281
|
+
"thanks": {
|
|
282
|
+
"url": "https://github.com/symfony/contracts",
|
|
283
|
+
"name": "symfony/contracts"
|
|
284
|
+
},
|
|
285
|
+
"branch-alias": {
|
|
286
|
+
"dev-main": "3.7-dev"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
"autoload": {
|
|
290
|
+
"files": [
|
|
291
|
+
"function.php"
|
|
292
|
+
]
|
|
293
|
+
},
|
|
294
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
295
|
+
"license": [
|
|
296
|
+
"MIT"
|
|
297
|
+
],
|
|
298
|
+
"authors": [
|
|
299
|
+
{
|
|
300
|
+
"name": "Nicolas Grekas",
|
|
301
|
+
"email": "p@tchwork.com"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "Symfony Community",
|
|
305
|
+
"homepage": "https://symfony.com/contributors"
|
|
306
|
+
}
|
|
307
|
+
],
|
|
308
|
+
"description": "A generic function and convention to trigger deprecation notices",
|
|
309
|
+
"homepage": "https://symfony.com",
|
|
310
|
+
"support": {
|
|
311
|
+
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.0"
|
|
312
|
+
},
|
|
313
|
+
"funding": [
|
|
314
|
+
{
|
|
315
|
+
"url": "https://symfony.com/sponsor",
|
|
316
|
+
"type": "custom"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"url": "https://github.com/fabpot",
|
|
320
|
+
"type": "github"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"url": "https://github.com/nicolas-grekas",
|
|
324
|
+
"type": "github"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
328
|
+
"type": "tidelift"
|
|
329
|
+
}
|
|
330
|
+
],
|
|
331
|
+
"time": "2026-04-13T15:52:40+00:00"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "symfony/polyfill-ctype",
|
|
335
|
+
"version": "v1.37.0",
|
|
336
|
+
"source": {
|
|
337
|
+
"type": "git",
|
|
338
|
+
"url": "https://github.com/symfony/polyfill-ctype.git",
|
|
339
|
+
"reference": "141046a8f9477948ff284fa65be2095baafb94f2"
|
|
340
|
+
},
|
|
341
|
+
"dist": {
|
|
342
|
+
"type": "zip",
|
|
343
|
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
|
|
344
|
+
"reference": "141046a8f9477948ff284fa65be2095baafb94f2",
|
|
345
|
+
"shasum": ""
|
|
346
|
+
},
|
|
347
|
+
"require": {
|
|
348
|
+
"php": ">=7.2"
|
|
349
|
+
},
|
|
350
|
+
"provide": {
|
|
351
|
+
"ext-ctype": "*"
|
|
352
|
+
},
|
|
353
|
+
"suggest": {
|
|
354
|
+
"ext-ctype": "For best performance"
|
|
355
|
+
},
|
|
356
|
+
"type": "library",
|
|
357
|
+
"extra": {
|
|
358
|
+
"thanks": {
|
|
359
|
+
"url": "https://github.com/symfony/polyfill",
|
|
360
|
+
"name": "symfony/polyfill"
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"autoload": {
|
|
364
|
+
"files": [
|
|
365
|
+
"bootstrap.php"
|
|
366
|
+
],
|
|
367
|
+
"psr-4": {
|
|
368
|
+
"Symfony\\Polyfill\\Ctype\\": ""
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
372
|
+
"license": [
|
|
373
|
+
"MIT"
|
|
374
|
+
],
|
|
375
|
+
"authors": [
|
|
376
|
+
{
|
|
377
|
+
"name": "Gert de Pagter",
|
|
378
|
+
"email": "BackEndTea@gmail.com"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "Symfony Community",
|
|
382
|
+
"homepage": "https://symfony.com/contributors"
|
|
383
|
+
}
|
|
384
|
+
],
|
|
385
|
+
"description": "Symfony polyfill for ctype functions",
|
|
386
|
+
"homepage": "https://symfony.com",
|
|
387
|
+
"keywords": [
|
|
388
|
+
"compatibility",
|
|
389
|
+
"ctype",
|
|
390
|
+
"polyfill",
|
|
391
|
+
"portable"
|
|
392
|
+
],
|
|
393
|
+
"support": {
|
|
394
|
+
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
|
|
395
|
+
},
|
|
396
|
+
"funding": [
|
|
397
|
+
{
|
|
398
|
+
"url": "https://symfony.com/sponsor",
|
|
399
|
+
"type": "custom"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"url": "https://github.com/fabpot",
|
|
403
|
+
"type": "github"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"url": "https://github.com/nicolas-grekas",
|
|
407
|
+
"type": "github"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
411
|
+
"type": "tidelift"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"time": "2026-04-10T16:19:22+00:00"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "symfony/polyfill-mbstring",
|
|
418
|
+
"version": "v1.37.0",
|
|
419
|
+
"source": {
|
|
420
|
+
"type": "git",
|
|
421
|
+
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
|
422
|
+
"reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315"
|
|
423
|
+
},
|
|
424
|
+
"dist": {
|
|
425
|
+
"type": "zip",
|
|
426
|
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315",
|
|
427
|
+
"reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315",
|
|
428
|
+
"shasum": ""
|
|
429
|
+
},
|
|
430
|
+
"require": {
|
|
431
|
+
"ext-iconv": "*",
|
|
432
|
+
"php": ">=7.2"
|
|
433
|
+
},
|
|
434
|
+
"provide": {
|
|
435
|
+
"ext-mbstring": "*"
|
|
436
|
+
},
|
|
437
|
+
"suggest": {
|
|
438
|
+
"ext-mbstring": "For best performance"
|
|
439
|
+
},
|
|
440
|
+
"type": "library",
|
|
441
|
+
"extra": {
|
|
442
|
+
"thanks": {
|
|
443
|
+
"url": "https://github.com/symfony/polyfill",
|
|
444
|
+
"name": "symfony/polyfill"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"autoload": {
|
|
448
|
+
"files": [
|
|
449
|
+
"bootstrap.php"
|
|
450
|
+
],
|
|
451
|
+
"psr-4": {
|
|
452
|
+
"Symfony\\Polyfill\\Mbstring\\": ""
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
456
|
+
"license": [
|
|
457
|
+
"MIT"
|
|
458
|
+
],
|
|
459
|
+
"authors": [
|
|
460
|
+
{
|
|
461
|
+
"name": "Nicolas Grekas",
|
|
462
|
+
"email": "p@tchwork.com"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"name": "Symfony Community",
|
|
466
|
+
"homepage": "https://symfony.com/contributors"
|
|
467
|
+
}
|
|
468
|
+
],
|
|
469
|
+
"description": "Symfony polyfill for the Mbstring extension",
|
|
470
|
+
"homepage": "https://symfony.com",
|
|
471
|
+
"keywords": [
|
|
472
|
+
"compatibility",
|
|
473
|
+
"mbstring",
|
|
474
|
+
"polyfill",
|
|
475
|
+
"portable",
|
|
476
|
+
"shim"
|
|
477
|
+
],
|
|
478
|
+
"support": {
|
|
479
|
+
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.37.0"
|
|
480
|
+
},
|
|
481
|
+
"funding": [
|
|
482
|
+
{
|
|
483
|
+
"url": "https://symfony.com/sponsor",
|
|
484
|
+
"type": "custom"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"url": "https://github.com/fabpot",
|
|
488
|
+
"type": "github"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"url": "https://github.com/nicolas-grekas",
|
|
492
|
+
"type": "github"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
496
|
+
"type": "tidelift"
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
"time": "2026-04-10T17:25:58+00:00"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"name": "symfony/polyfill-php80",
|
|
503
|
+
"version": "v1.37.0",
|
|
504
|
+
"source": {
|
|
505
|
+
"type": "git",
|
|
506
|
+
"url": "https://github.com/symfony/polyfill-php80.git",
|
|
507
|
+
"reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
|
|
508
|
+
},
|
|
509
|
+
"dist": {
|
|
510
|
+
"type": "zip",
|
|
511
|
+
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
|
|
512
|
+
"reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
|
|
513
|
+
"shasum": ""
|
|
514
|
+
},
|
|
515
|
+
"require": {
|
|
516
|
+
"php": ">=7.2"
|
|
517
|
+
},
|
|
518
|
+
"type": "library",
|
|
519
|
+
"extra": {
|
|
520
|
+
"thanks": {
|
|
521
|
+
"url": "https://github.com/symfony/polyfill",
|
|
522
|
+
"name": "symfony/polyfill"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"autoload": {
|
|
526
|
+
"files": [
|
|
527
|
+
"bootstrap.php"
|
|
528
|
+
],
|
|
529
|
+
"psr-4": {
|
|
530
|
+
"Symfony\\Polyfill\\Php80\\": ""
|
|
531
|
+
},
|
|
532
|
+
"classmap": [
|
|
533
|
+
"Resources/stubs"
|
|
534
|
+
]
|
|
535
|
+
},
|
|
536
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
537
|
+
"license": [
|
|
538
|
+
"MIT"
|
|
539
|
+
],
|
|
540
|
+
"authors": [
|
|
541
|
+
{
|
|
542
|
+
"name": "Ion Bazan",
|
|
543
|
+
"email": "ion.bazan@gmail.com"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"name": "Nicolas Grekas",
|
|
547
|
+
"email": "p@tchwork.com"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"name": "Symfony Community",
|
|
551
|
+
"homepage": "https://symfony.com/contributors"
|
|
552
|
+
}
|
|
553
|
+
],
|
|
554
|
+
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
|
|
555
|
+
"homepage": "https://symfony.com",
|
|
556
|
+
"keywords": [
|
|
557
|
+
"compatibility",
|
|
558
|
+
"polyfill",
|
|
559
|
+
"portable",
|
|
560
|
+
"shim"
|
|
561
|
+
],
|
|
562
|
+
"support": {
|
|
563
|
+
"source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
|
|
564
|
+
},
|
|
565
|
+
"funding": [
|
|
566
|
+
{
|
|
567
|
+
"url": "https://symfony.com/sponsor",
|
|
568
|
+
"type": "custom"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"url": "https://github.com/fabpot",
|
|
572
|
+
"type": "github"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"url": "https://github.com/nicolas-grekas",
|
|
576
|
+
"type": "github"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
580
|
+
"type": "tidelift"
|
|
581
|
+
}
|
|
582
|
+
],
|
|
583
|
+
"time": "2026-04-10T16:19:22+00:00"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"name": "vlucas/phpdotenv",
|
|
587
|
+
"version": "v5.6.3",
|
|
588
|
+
"source": {
|
|
589
|
+
"type": "git",
|
|
590
|
+
"url": "https://github.com/vlucas/phpdotenv.git",
|
|
591
|
+
"reference": "955e7815d677a3eaa7075231212f2110983adecc"
|
|
592
|
+
},
|
|
593
|
+
"dist": {
|
|
594
|
+
"type": "zip",
|
|
595
|
+
"url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
|
|
596
|
+
"reference": "955e7815d677a3eaa7075231212f2110983adecc",
|
|
597
|
+
"shasum": ""
|
|
598
|
+
},
|
|
599
|
+
"require": {
|
|
600
|
+
"ext-pcre": "*",
|
|
601
|
+
"graham-campbell/result-type": "^1.1.4",
|
|
602
|
+
"php": "^7.2.5 || ^8.0",
|
|
603
|
+
"phpoption/phpoption": "^1.9.5",
|
|
604
|
+
"symfony/polyfill-ctype": "^1.26",
|
|
605
|
+
"symfony/polyfill-mbstring": "^1.26",
|
|
606
|
+
"symfony/polyfill-php80": "^1.26"
|
|
607
|
+
},
|
|
608
|
+
"require-dev": {
|
|
609
|
+
"bamarni/composer-bin-plugin": "^1.8.2",
|
|
610
|
+
"ext-filter": "*",
|
|
611
|
+
"phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
|
|
612
|
+
},
|
|
613
|
+
"suggest": {
|
|
614
|
+
"ext-filter": "Required to use the boolean validator."
|
|
615
|
+
},
|
|
616
|
+
"type": "library",
|
|
617
|
+
"extra": {
|
|
618
|
+
"bamarni-bin": {
|
|
619
|
+
"bin-links": true,
|
|
620
|
+
"forward-command": false
|
|
621
|
+
},
|
|
622
|
+
"branch-alias": {
|
|
623
|
+
"dev-master": "5.6-dev"
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"autoload": {
|
|
627
|
+
"psr-4": {
|
|
628
|
+
"Dotenv\\": "src/"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
632
|
+
"license": [
|
|
633
|
+
"BSD-3-Clause"
|
|
634
|
+
],
|
|
635
|
+
"authors": [
|
|
636
|
+
{
|
|
637
|
+
"name": "Graham Campbell",
|
|
638
|
+
"email": "hello@gjcampbell.co.uk",
|
|
639
|
+
"homepage": "https://github.com/GrahamCampbell"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"name": "Vance Lucas",
|
|
643
|
+
"email": "vance@vancelucas.com",
|
|
644
|
+
"homepage": "https://github.com/vlucas"
|
|
645
|
+
}
|
|
646
|
+
],
|
|
647
|
+
"description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
|
|
648
|
+
"keywords": [
|
|
649
|
+
"dotenv",
|
|
650
|
+
"env",
|
|
651
|
+
"environment"
|
|
652
|
+
],
|
|
653
|
+
"support": {
|
|
654
|
+
"issues": "https://github.com/vlucas/phpdotenv/issues",
|
|
655
|
+
"source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
|
|
656
|
+
},
|
|
657
|
+
"funding": [
|
|
658
|
+
{
|
|
659
|
+
"url": "https://github.com/GrahamCampbell",
|
|
660
|
+
"type": "github"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
|
|
664
|
+
"type": "tidelift"
|
|
665
|
+
}
|
|
666
|
+
],
|
|
667
|
+
"time": "2025-12-27T19:49:13+00:00"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"packages-dev": [],
|
|
671
|
+
"aliases": [],
|
|
672
|
+
"minimum-stability": "stable",
|
|
673
|
+
"stability-flags": {},
|
|
674
|
+
"prefer-stable": false,
|
|
675
|
+
"prefer-lowest": false,
|
|
676
|
+
"platform": {},
|
|
677
|
+
"platform-dev": {},
|
|
678
|
+
"plugin-api-version": "2.6.0"
|
|
679
|
+
}
|