create-berna-stencil 1.0.23 → 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 +2 -1
- 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 +5 -5
- 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 +24 -10
- package/src/api/core/vendor/composer/installed.json +202 -6
- 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/graham-campbell/result-type/.gitattributes +9 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/CONTRIBUTING.md +31 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/FUNDING.yml +2 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/SECURITY.md +14 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/workflows/stale.yml +11 -0
- package/src/api/core/vendor/graham-campbell/result-type/.github/workflows/tests.yml +40 -0
- package/src/api/core/vendor/graham-campbell/result-type/CHANGELOG.md +53 -0
- package/src/api/core/vendor/graham-campbell/result-type/LICENSE +21 -21
- package/src/api/core/vendor/graham-campbell/result-type/README.md +42 -0
- package/src/api/core/vendor/graham-campbell/result-type/composer.json +33 -33
- package/src/api/core/vendor/graham-campbell/result-type/phpunit.xml.dist +13 -0
- package/src/api/core/vendor/graham-campbell/result-type/src/Error.php +121 -121
- package/src/api/core/vendor/graham-campbell/result-type/src/Result.php +69 -69
- package/src/api/core/vendor/graham-campbell/result-type/src/Success.php +120 -120
- package/src/api/core/vendor/graham-campbell/result-type/tests/ResultTest.php +95 -0
- package/src/api/core/vendor/phpoption/phpoption/.gitattributes +13 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/CONTRIBUTING.md +30 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/FUNDING.yml +2 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/SECURITY.md +14 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/workflows/static.yml +40 -0
- package/src/api/core/vendor/phpoption/phpoption/.github/workflows/tests.yml +40 -0
- package/src/api/core/vendor/phpoption/phpoption/LICENSE +200 -200
- package/src/api/core/vendor/phpoption/phpoption/Makefile +17 -0
- package/src/api/core/vendor/phpoption/phpoption/README.md +201 -0
- package/src/api/core/vendor/phpoption/phpoption/composer.json +50 -50
- package/src/api/core/vendor/phpoption/phpoption/phpstan-baseline.neon +44 -0
- package/src/api/core/vendor/phpoption/phpoption/phpstan.neon.dist +7 -0
- package/src/api/core/vendor/phpoption/phpoption/phpunit.xml.dist +13 -0
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php +175 -175
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/None.php +136 -136
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/Option.php +434 -434
- package/src/api/core/vendor/phpoption/phpoption/src/PhpOption/Some.php +169 -169
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php +72 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php +357 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php +153 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php +166 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php +194 -0
- package/src/api/core/vendor/phpoption/phpoption/tests/bootstrap.php +8 -0
- package/src/api/core/vendor/phpoption/phpoption/vendor-bin/phpstan/composer.json +8 -0
- package/src/api/core/vendor/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/core/vendor/symfony/polyfill-ctype/Ctype.php +232 -232
- package/src/api/core/vendor/symfony/polyfill-ctype/LICENSE +19 -19
- package/src/api/core/vendor/symfony/polyfill-ctype/README.md +12 -12
- package/src/api/core/vendor/symfony/polyfill-ctype/bootstrap.php +50 -50
- package/src/api/core/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -46
- package/src/api/core/vendor/symfony/polyfill-ctype/composer.json +38 -38
- package/src/api/core/vendor/symfony/polyfill-mbstring/LICENSE +19 -19
- package/src/api/core/vendor/symfony/polyfill-mbstring/Mbstring.php +1077 -1077
- package/src/api/core/vendor/symfony/polyfill-mbstring/README.md +13 -13
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -119
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -1397
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -5
- package/src/api/core/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -1489
- package/src/api/core/vendor/symfony/polyfill-mbstring/bootstrap.php +171 -171
- package/src/api/core/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -167
- package/src/api/core/vendor/symfony/polyfill-mbstring/composer.json +39 -39
- package/src/api/core/vendor/symfony/polyfill-php80/LICENSE +19 -19
- package/src/api/core/vendor/symfony/polyfill-php80/Php80.php +115 -115
- package/src/api/core/vendor/symfony/polyfill-php80/PhpToken.php +106 -106
- package/src/api/core/vendor/symfony/polyfill-php80/README.md +25 -25
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -31
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -16
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -20
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -16
- package/src/api/core/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -16
- package/src/api/core/vendor/symfony/polyfill-php80/bootstrap.php +42 -42
- package/src/api/core/vendor/symfony/polyfill-php80/composer.json +37 -37
- package/src/api/core/vendor/vlucas/phpdotenv/.editorconfig +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.gitattributes +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/CONTRIBUTING.md +30 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/FUNDING.yml +2 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/SECURITY.md +14 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/workflows/static.yml +40 -0
- package/src/api/core/vendor/vlucas/phpdotenv/.github/workflows/tests.yml +70 -0
- package/src/api/core/vendor/vlucas/phpdotenv/LICENSE +30 -30
- package/src/api/core/vendor/vlucas/phpdotenv/Makefile +17 -0
- package/src/api/core/vendor/vlucas/phpdotenv/README.md +370 -0
- package/src/api/core/vendor/vlucas/phpdotenv/UPGRADING.md +196 -0
- package/src/api/core/vendor/vlucas/phpdotenv/composer.json +60 -60
- package/src/api/core/vendor/vlucas/phpdotenv/phpstan-baseline.neon +157 -0
- package/src/api/core/vendor/vlucas/phpdotenv/phpstan.neon.dist +7 -0
- package/src/api/core/vendor/vlucas/phpdotenv/phpunit.xml.dist +13 -0
- package/src/api/core/vendor/vlucas/phpdotenv/src/Dotenv.php +267 -267
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php +12 -12
- package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/Loader.php +48 -48
- package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php +20 -20
- package/src/api/core/vendor/vlucas/phpdotenv/src/Loader/Resolver.php +65 -65
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Entry.php +59 -59
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php +299 -299
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Lexer.php +58 -58
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Lines.php +127 -127
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Parser.php +53 -53
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php +19 -19
- package/src/api/core/vendor/vlucas/phpdotenv/src/Parser/Value.php +88 -88
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php +15 -15
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php +89 -89
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php +80 -80
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php +88 -88
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php +85 -85
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php +110 -110
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php +48 -48
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php +64 -64
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php +91 -91
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php +17 -17
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php +104 -104
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php +88 -88
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php +27 -27
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php +107 -107
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php +272 -272
- package/src/api/core/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php +51 -51
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/File/Paths.php +44 -44
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/File/Reader.php +81 -81
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/FileStore.php +72 -72
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php +141 -141
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php +17 -17
- package/src/api/core/vendor/vlucas/phpdotenv/src/Store/StringStore.php +37 -37
- package/src/api/core/vendor/vlucas/phpdotenv/src/Util/Regex.php +112 -112
- package/src/api/core/vendor/vlucas/phpdotenv/src/Util/Str.php +108 -108
- package/src/api/core/vendor/vlucas/phpdotenv/src/Validator.php +207 -207
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/DotenvTest.php +387 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Loader/LoaderTest.php +86 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/EntryParserTest.php +234 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LexerTest.php +40 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LinesTest.php +53 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/ParserTest.php +98 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ArrayAdapterTest.php +57 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/EnvConstAdapterTest.php +75 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/PutenvAdapterTest.php +52 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ServerConstAdapterTest.php +75 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/RepositoryTest.php +305 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/Store/StoreTest.php +141 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/Dotenv/ValidatorTest.php +479 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/.env +5 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/assertions.env +18 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/booleans.env +33 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/commented.env +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/empty.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/example.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/exported.env +7 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/immutable.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/integers.env +17 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/large.env +2 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multibyte.env +3 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiline.env +14 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiple.env +4 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/mutable.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/nested.env +15 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/quoted.env +11 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/specialchars.env +8 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/unicodevarnames.env +2 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/utf8-with-bom-encoding.env +3 -0
- package/src/api/core/vendor/vlucas/phpdotenv/tests/fixtures/env/windows.env +1 -0
- package/src/api/core/vendor/vlucas/phpdotenv/vendor-bin/phpstan/composer.json +15 -0
- package/src/api/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
|
@@ -0,0 +1,2262 @@
|
|
|
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": "c92d54202d70caf9276f2ad5d3097955",
|
|
8
|
+
"packages": [
|
|
9
|
+
{
|
|
10
|
+
"name": "amphp/amp",
|
|
11
|
+
"version": "v2.6.2",
|
|
12
|
+
"source": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/amphp/amp.git",
|
|
15
|
+
"reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
|
|
16
|
+
},
|
|
17
|
+
"dist": {
|
|
18
|
+
"type": "zip",
|
|
19
|
+
"url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
|
|
20
|
+
"reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
|
|
21
|
+
"shasum": ""
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"php": ">=7.1"
|
|
25
|
+
},
|
|
26
|
+
"require-dev": {
|
|
27
|
+
"amphp/php-cs-fixer-config": "dev-master",
|
|
28
|
+
"amphp/phpunit-util": "^1",
|
|
29
|
+
"ext-json": "*",
|
|
30
|
+
"jetbrains/phpstorm-stubs": "^2019.3",
|
|
31
|
+
"phpunit/phpunit": "^7 | ^8 | ^9",
|
|
32
|
+
"psalm/phar": "^3.11@dev",
|
|
33
|
+
"react/promise": "^2"
|
|
34
|
+
},
|
|
35
|
+
"type": "library",
|
|
36
|
+
"extra": {
|
|
37
|
+
"branch-alias": {
|
|
38
|
+
"dev-master": "2.x-dev"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"autoload": {
|
|
42
|
+
"files": [
|
|
43
|
+
"lib/functions.php",
|
|
44
|
+
"lib/Internal/functions.php"
|
|
45
|
+
],
|
|
46
|
+
"psr-4": {
|
|
47
|
+
"Amp\\": "lib"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
51
|
+
"license": [
|
|
52
|
+
"MIT"
|
|
53
|
+
],
|
|
54
|
+
"authors": [
|
|
55
|
+
{
|
|
56
|
+
"name": "Daniel Lowrey",
|
|
57
|
+
"email": "rdlowrey@php.net"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "Aaron Piotrowski",
|
|
61
|
+
"email": "aaron@trowski.com"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "Bob Weinand",
|
|
65
|
+
"email": "bobwei9@hotmail.com"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "Niklas Keller",
|
|
69
|
+
"email": "me@kelunik.com"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"description": "A non-blocking concurrency framework for PHP applications.",
|
|
73
|
+
"homepage": "https://amphp.org/amp",
|
|
74
|
+
"keywords": [
|
|
75
|
+
"async",
|
|
76
|
+
"asynchronous",
|
|
77
|
+
"awaitable",
|
|
78
|
+
"concurrency",
|
|
79
|
+
"event",
|
|
80
|
+
"event-loop",
|
|
81
|
+
"future",
|
|
82
|
+
"non-blocking",
|
|
83
|
+
"promise"
|
|
84
|
+
],
|
|
85
|
+
"support": {
|
|
86
|
+
"irc": "irc://irc.freenode.org/amphp",
|
|
87
|
+
"issues": "https://github.com/amphp/amp/issues",
|
|
88
|
+
"source": "https://github.com/amphp/amp/tree/v2.6.2"
|
|
89
|
+
},
|
|
90
|
+
"funding": [
|
|
91
|
+
{
|
|
92
|
+
"url": "https://github.com/amphp",
|
|
93
|
+
"type": "github"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"time": "2022-02-20T17:52:18+00:00"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "amphp/byte-stream",
|
|
100
|
+
"version": "v1.8.1",
|
|
101
|
+
"source": {
|
|
102
|
+
"type": "git",
|
|
103
|
+
"url": "https://github.com/amphp/byte-stream.git",
|
|
104
|
+
"reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
|
|
105
|
+
},
|
|
106
|
+
"dist": {
|
|
107
|
+
"type": "zip",
|
|
108
|
+
"url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
|
|
109
|
+
"reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
|
|
110
|
+
"shasum": ""
|
|
111
|
+
},
|
|
112
|
+
"require": {
|
|
113
|
+
"amphp/amp": "^2",
|
|
114
|
+
"php": ">=7.1"
|
|
115
|
+
},
|
|
116
|
+
"require-dev": {
|
|
117
|
+
"amphp/php-cs-fixer-config": "dev-master",
|
|
118
|
+
"amphp/phpunit-util": "^1.4",
|
|
119
|
+
"friendsofphp/php-cs-fixer": "^2.3",
|
|
120
|
+
"jetbrains/phpstorm-stubs": "^2019.3",
|
|
121
|
+
"phpunit/phpunit": "^6 || ^7 || ^8",
|
|
122
|
+
"psalm/phar": "^3.11.4"
|
|
123
|
+
},
|
|
124
|
+
"type": "library",
|
|
125
|
+
"extra": {
|
|
126
|
+
"branch-alias": {
|
|
127
|
+
"dev-master": "1.x-dev"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"autoload": {
|
|
131
|
+
"files": [
|
|
132
|
+
"lib/functions.php"
|
|
133
|
+
],
|
|
134
|
+
"psr-4": {
|
|
135
|
+
"Amp\\ByteStream\\": "lib"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
139
|
+
"license": [
|
|
140
|
+
"MIT"
|
|
141
|
+
],
|
|
142
|
+
"authors": [
|
|
143
|
+
{
|
|
144
|
+
"name": "Aaron Piotrowski",
|
|
145
|
+
"email": "aaron@trowski.com"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "Niklas Keller",
|
|
149
|
+
"email": "me@kelunik.com"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"description": "A stream abstraction to make working with non-blocking I/O simple.",
|
|
153
|
+
"homepage": "http://amphp.org/byte-stream",
|
|
154
|
+
"keywords": [
|
|
155
|
+
"amp",
|
|
156
|
+
"amphp",
|
|
157
|
+
"async",
|
|
158
|
+
"io",
|
|
159
|
+
"non-blocking",
|
|
160
|
+
"stream"
|
|
161
|
+
],
|
|
162
|
+
"support": {
|
|
163
|
+
"irc": "irc://irc.freenode.org/amphp",
|
|
164
|
+
"issues": "https://github.com/amphp/byte-stream/issues",
|
|
165
|
+
"source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
|
|
166
|
+
},
|
|
167
|
+
"funding": [
|
|
168
|
+
{
|
|
169
|
+
"url": "https://github.com/amphp",
|
|
170
|
+
"type": "github"
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"time": "2021-03-30T17:13:30+00:00"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "composer/pcre",
|
|
177
|
+
"version": "3.1.0",
|
|
178
|
+
"source": {
|
|
179
|
+
"type": "git",
|
|
180
|
+
"url": "https://github.com/composer/pcre.git",
|
|
181
|
+
"reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
|
|
182
|
+
},
|
|
183
|
+
"dist": {
|
|
184
|
+
"type": "zip",
|
|
185
|
+
"url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
|
|
186
|
+
"reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
|
|
187
|
+
"shasum": ""
|
|
188
|
+
},
|
|
189
|
+
"require": {
|
|
190
|
+
"php": "^7.4 || ^8.0"
|
|
191
|
+
},
|
|
192
|
+
"require-dev": {
|
|
193
|
+
"phpstan/phpstan": "^1.3",
|
|
194
|
+
"phpstan/phpstan-strict-rules": "^1.1",
|
|
195
|
+
"symfony/phpunit-bridge": "^5"
|
|
196
|
+
},
|
|
197
|
+
"type": "library",
|
|
198
|
+
"extra": {
|
|
199
|
+
"branch-alias": {
|
|
200
|
+
"dev-main": "3.x-dev"
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"autoload": {
|
|
204
|
+
"psr-4": {
|
|
205
|
+
"Composer\\Pcre\\": "src"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
209
|
+
"license": [
|
|
210
|
+
"MIT"
|
|
211
|
+
],
|
|
212
|
+
"authors": [
|
|
213
|
+
{
|
|
214
|
+
"name": "Jordi Boggiano",
|
|
215
|
+
"email": "j.boggiano@seld.be",
|
|
216
|
+
"homepage": "http://seld.be"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"description": "PCRE wrapping library that offers type-safe preg_* replacements.",
|
|
220
|
+
"keywords": [
|
|
221
|
+
"PCRE",
|
|
222
|
+
"preg",
|
|
223
|
+
"regex",
|
|
224
|
+
"regular expression"
|
|
225
|
+
],
|
|
226
|
+
"support": {
|
|
227
|
+
"issues": "https://github.com/composer/pcre/issues",
|
|
228
|
+
"source": "https://github.com/composer/pcre/tree/3.1.0"
|
|
229
|
+
},
|
|
230
|
+
"funding": [
|
|
231
|
+
{
|
|
232
|
+
"url": "https://packagist.com",
|
|
233
|
+
"type": "custom"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"url": "https://github.com/composer",
|
|
237
|
+
"type": "github"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
|
241
|
+
"type": "tidelift"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"time": "2022-11-17T09:50:14+00:00"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "composer/semver",
|
|
248
|
+
"version": "3.4.0",
|
|
249
|
+
"source": {
|
|
250
|
+
"type": "git",
|
|
251
|
+
"url": "https://github.com/composer/semver.git",
|
|
252
|
+
"reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
|
|
253
|
+
},
|
|
254
|
+
"dist": {
|
|
255
|
+
"type": "zip",
|
|
256
|
+
"url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
|
|
257
|
+
"reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
|
|
258
|
+
"shasum": ""
|
|
259
|
+
},
|
|
260
|
+
"require": {
|
|
261
|
+
"php": "^5.3.2 || ^7.0 || ^8.0"
|
|
262
|
+
},
|
|
263
|
+
"require-dev": {
|
|
264
|
+
"phpstan/phpstan": "^1.4",
|
|
265
|
+
"symfony/phpunit-bridge": "^4.2 || ^5"
|
|
266
|
+
},
|
|
267
|
+
"type": "library",
|
|
268
|
+
"extra": {
|
|
269
|
+
"branch-alias": {
|
|
270
|
+
"dev-main": "3.x-dev"
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
"autoload": {
|
|
274
|
+
"psr-4": {
|
|
275
|
+
"Composer\\Semver\\": "src"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
279
|
+
"license": [
|
|
280
|
+
"MIT"
|
|
281
|
+
],
|
|
282
|
+
"authors": [
|
|
283
|
+
{
|
|
284
|
+
"name": "Nils Adermann",
|
|
285
|
+
"email": "naderman@naderman.de",
|
|
286
|
+
"homepage": "http://www.naderman.de"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "Jordi Boggiano",
|
|
290
|
+
"email": "j.boggiano@seld.be",
|
|
291
|
+
"homepage": "http://seld.be"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "Rob Bast",
|
|
295
|
+
"email": "rob.bast@gmail.com",
|
|
296
|
+
"homepage": "http://robbast.nl"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"description": "Semver library that offers utilities, version constraint parsing and validation.",
|
|
300
|
+
"keywords": [
|
|
301
|
+
"semantic",
|
|
302
|
+
"semver",
|
|
303
|
+
"validation",
|
|
304
|
+
"versioning"
|
|
305
|
+
],
|
|
306
|
+
"support": {
|
|
307
|
+
"irc": "ircs://irc.libera.chat:6697/composer",
|
|
308
|
+
"issues": "https://github.com/composer/semver/issues",
|
|
309
|
+
"source": "https://github.com/composer/semver/tree/3.4.0"
|
|
310
|
+
},
|
|
311
|
+
"funding": [
|
|
312
|
+
{
|
|
313
|
+
"url": "https://packagist.com",
|
|
314
|
+
"type": "custom"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"url": "https://github.com/composer",
|
|
318
|
+
"type": "github"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
|
322
|
+
"type": "tidelift"
|
|
323
|
+
}
|
|
324
|
+
],
|
|
325
|
+
"time": "2023-08-31T09:50:34+00:00"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "composer/xdebug-handler",
|
|
329
|
+
"version": "3.0.3",
|
|
330
|
+
"source": {
|
|
331
|
+
"type": "git",
|
|
332
|
+
"url": "https://github.com/composer/xdebug-handler.git",
|
|
333
|
+
"reference": "ced299686f41dce890debac69273b47ffe98a40c"
|
|
334
|
+
},
|
|
335
|
+
"dist": {
|
|
336
|
+
"type": "zip",
|
|
337
|
+
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
|
|
338
|
+
"reference": "ced299686f41dce890debac69273b47ffe98a40c",
|
|
339
|
+
"shasum": ""
|
|
340
|
+
},
|
|
341
|
+
"require": {
|
|
342
|
+
"composer/pcre": "^1 || ^2 || ^3",
|
|
343
|
+
"php": "^7.2.5 || ^8.0",
|
|
344
|
+
"psr/log": "^1 || ^2 || ^3"
|
|
345
|
+
},
|
|
346
|
+
"require-dev": {
|
|
347
|
+
"phpstan/phpstan": "^1.0",
|
|
348
|
+
"phpstan/phpstan-strict-rules": "^1.1",
|
|
349
|
+
"symfony/phpunit-bridge": "^6.0"
|
|
350
|
+
},
|
|
351
|
+
"type": "library",
|
|
352
|
+
"autoload": {
|
|
353
|
+
"psr-4": {
|
|
354
|
+
"Composer\\XdebugHandler\\": "src"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
358
|
+
"license": [
|
|
359
|
+
"MIT"
|
|
360
|
+
],
|
|
361
|
+
"authors": [
|
|
362
|
+
{
|
|
363
|
+
"name": "John Stevenson",
|
|
364
|
+
"email": "john-stevenson@blueyonder.co.uk"
|
|
365
|
+
}
|
|
366
|
+
],
|
|
367
|
+
"description": "Restarts a process without Xdebug.",
|
|
368
|
+
"keywords": [
|
|
369
|
+
"Xdebug",
|
|
370
|
+
"performance"
|
|
371
|
+
],
|
|
372
|
+
"support": {
|
|
373
|
+
"irc": "irc://irc.freenode.org/composer",
|
|
374
|
+
"issues": "https://github.com/composer/xdebug-handler/issues",
|
|
375
|
+
"source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
|
|
376
|
+
},
|
|
377
|
+
"funding": [
|
|
378
|
+
{
|
|
379
|
+
"url": "https://packagist.com",
|
|
380
|
+
"type": "custom"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"url": "https://github.com/composer",
|
|
384
|
+
"type": "github"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
|
388
|
+
"type": "tidelift"
|
|
389
|
+
}
|
|
390
|
+
],
|
|
391
|
+
"time": "2022-02-25T21:32:43+00:00"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"name": "dnoegel/php-xdg-base-dir",
|
|
395
|
+
"version": "v0.1.1",
|
|
396
|
+
"source": {
|
|
397
|
+
"type": "git",
|
|
398
|
+
"url": "https://github.com/dnoegel/php-xdg-base-dir.git",
|
|
399
|
+
"reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
|
|
400
|
+
},
|
|
401
|
+
"dist": {
|
|
402
|
+
"type": "zip",
|
|
403
|
+
"url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
|
|
404
|
+
"reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
|
|
405
|
+
"shasum": ""
|
|
406
|
+
},
|
|
407
|
+
"require": {
|
|
408
|
+
"php": ">=5.3.2"
|
|
409
|
+
},
|
|
410
|
+
"require-dev": {
|
|
411
|
+
"phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
|
|
412
|
+
},
|
|
413
|
+
"type": "library",
|
|
414
|
+
"autoload": {
|
|
415
|
+
"psr-4": {
|
|
416
|
+
"XdgBaseDir\\": "src/"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
420
|
+
"license": [
|
|
421
|
+
"MIT"
|
|
422
|
+
],
|
|
423
|
+
"description": "implementation of xdg base directory specification for php",
|
|
424
|
+
"support": {
|
|
425
|
+
"issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
|
|
426
|
+
"source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
|
|
427
|
+
},
|
|
428
|
+
"time": "2019-12-04T15:06:13+00:00"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "doctrine/deprecations",
|
|
432
|
+
"version": "v1.1.1",
|
|
433
|
+
"source": {
|
|
434
|
+
"type": "git",
|
|
435
|
+
"url": "https://github.com/doctrine/deprecations.git",
|
|
436
|
+
"reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
|
|
437
|
+
},
|
|
438
|
+
"dist": {
|
|
439
|
+
"type": "zip",
|
|
440
|
+
"url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
|
|
441
|
+
"reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
|
|
442
|
+
"shasum": ""
|
|
443
|
+
},
|
|
444
|
+
"require": {
|
|
445
|
+
"php": "^7.1 || ^8.0"
|
|
446
|
+
},
|
|
447
|
+
"require-dev": {
|
|
448
|
+
"doctrine/coding-standard": "^9",
|
|
449
|
+
"phpstan/phpstan": "1.4.10 || 1.10.15",
|
|
450
|
+
"phpstan/phpstan-phpunit": "^1.0",
|
|
451
|
+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
|
|
452
|
+
"psalm/plugin-phpunit": "0.18.4",
|
|
453
|
+
"psr/log": "^1 || ^2 || ^3",
|
|
454
|
+
"vimeo/psalm": "4.30.0 || 5.12.0"
|
|
455
|
+
},
|
|
456
|
+
"suggest": {
|
|
457
|
+
"psr/log": "Allows logging deprecations via PSR-3 logger implementation"
|
|
458
|
+
},
|
|
459
|
+
"type": "library",
|
|
460
|
+
"autoload": {
|
|
461
|
+
"psr-4": {
|
|
462
|
+
"Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
466
|
+
"license": [
|
|
467
|
+
"MIT"
|
|
468
|
+
],
|
|
469
|
+
"description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
|
|
470
|
+
"homepage": "https://www.doctrine-project.org/",
|
|
471
|
+
"support": {
|
|
472
|
+
"issues": "https://github.com/doctrine/deprecations/issues",
|
|
473
|
+
"source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
|
|
474
|
+
},
|
|
475
|
+
"time": "2023-06-03T09:27:29+00:00"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"name": "felixfbecker/advanced-json-rpc",
|
|
479
|
+
"version": "v3.2.1",
|
|
480
|
+
"source": {
|
|
481
|
+
"type": "git",
|
|
482
|
+
"url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
|
|
483
|
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
|
|
484
|
+
},
|
|
485
|
+
"dist": {
|
|
486
|
+
"type": "zip",
|
|
487
|
+
"url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
|
|
488
|
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
|
|
489
|
+
"shasum": ""
|
|
490
|
+
},
|
|
491
|
+
"require": {
|
|
492
|
+
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
|
|
493
|
+
"php": "^7.1 || ^8.0",
|
|
494
|
+
"phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
|
|
495
|
+
},
|
|
496
|
+
"require-dev": {
|
|
497
|
+
"phpunit/phpunit": "^7.0 || ^8.0"
|
|
498
|
+
},
|
|
499
|
+
"type": "library",
|
|
500
|
+
"autoload": {
|
|
501
|
+
"psr-4": {
|
|
502
|
+
"AdvancedJsonRpc\\": "lib/"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
506
|
+
"license": [
|
|
507
|
+
"ISC"
|
|
508
|
+
],
|
|
509
|
+
"authors": [
|
|
510
|
+
{
|
|
511
|
+
"name": "Felix Becker",
|
|
512
|
+
"email": "felix.b@outlook.com"
|
|
513
|
+
}
|
|
514
|
+
],
|
|
515
|
+
"description": "A more advanced JSONRPC implementation",
|
|
516
|
+
"support": {
|
|
517
|
+
"issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
|
|
518
|
+
"source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
|
|
519
|
+
},
|
|
520
|
+
"time": "2021-06-11T22:34:44+00:00"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"name": "felixfbecker/language-server-protocol",
|
|
524
|
+
"version": "v1.5.2",
|
|
525
|
+
"source": {
|
|
526
|
+
"type": "git",
|
|
527
|
+
"url": "https://github.com/felixfbecker/php-language-server-protocol.git",
|
|
528
|
+
"reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
|
|
529
|
+
},
|
|
530
|
+
"dist": {
|
|
531
|
+
"type": "zip",
|
|
532
|
+
"url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
|
|
533
|
+
"reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
|
|
534
|
+
"shasum": ""
|
|
535
|
+
},
|
|
536
|
+
"require": {
|
|
537
|
+
"php": ">=7.1"
|
|
538
|
+
},
|
|
539
|
+
"require-dev": {
|
|
540
|
+
"phpstan/phpstan": "*",
|
|
541
|
+
"squizlabs/php_codesniffer": "^3.1",
|
|
542
|
+
"vimeo/psalm": "^4.0"
|
|
543
|
+
},
|
|
544
|
+
"type": "library",
|
|
545
|
+
"extra": {
|
|
546
|
+
"branch-alias": {
|
|
547
|
+
"dev-master": "1.x-dev"
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
"autoload": {
|
|
551
|
+
"psr-4": {
|
|
552
|
+
"LanguageServerProtocol\\": "src/"
|
|
553
|
+
}
|
|
554
|
+
},
|
|
555
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
556
|
+
"license": [
|
|
557
|
+
"ISC"
|
|
558
|
+
],
|
|
559
|
+
"authors": [
|
|
560
|
+
{
|
|
561
|
+
"name": "Felix Becker",
|
|
562
|
+
"email": "felix.b@outlook.com"
|
|
563
|
+
}
|
|
564
|
+
],
|
|
565
|
+
"description": "PHP classes for the Language Server Protocol",
|
|
566
|
+
"keywords": [
|
|
567
|
+
"language",
|
|
568
|
+
"microsoft",
|
|
569
|
+
"php",
|
|
570
|
+
"server"
|
|
571
|
+
],
|
|
572
|
+
"support": {
|
|
573
|
+
"issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
|
|
574
|
+
"source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
|
|
575
|
+
},
|
|
576
|
+
"time": "2022-03-02T22:36:06+00:00"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"name": "fidry/cpu-core-counter",
|
|
580
|
+
"version": "0.5.1",
|
|
581
|
+
"source": {
|
|
582
|
+
"type": "git",
|
|
583
|
+
"url": "https://github.com/theofidry/cpu-core-counter.git",
|
|
584
|
+
"reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623"
|
|
585
|
+
},
|
|
586
|
+
"dist": {
|
|
587
|
+
"type": "zip",
|
|
588
|
+
"url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
|
|
589
|
+
"reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
|
|
590
|
+
"shasum": ""
|
|
591
|
+
},
|
|
592
|
+
"require": {
|
|
593
|
+
"php": "^7.2 || ^8.0"
|
|
594
|
+
},
|
|
595
|
+
"require-dev": {
|
|
596
|
+
"fidry/makefile": "^0.2.0",
|
|
597
|
+
"phpstan/extension-installer": "^1.2.0",
|
|
598
|
+
"phpstan/phpstan": "^1.9.2",
|
|
599
|
+
"phpstan/phpstan-deprecation-rules": "^1.0.0",
|
|
600
|
+
"phpstan/phpstan-phpunit": "^1.2.2",
|
|
601
|
+
"phpstan/phpstan-strict-rules": "^1.4.4",
|
|
602
|
+
"phpunit/phpunit": "^9.5.26 || ^8.5.31",
|
|
603
|
+
"theofidry/php-cs-fixer-config": "^1.0",
|
|
604
|
+
"webmozarts/strict-phpunit": "^7.5"
|
|
605
|
+
},
|
|
606
|
+
"type": "library",
|
|
607
|
+
"autoload": {
|
|
608
|
+
"psr-4": {
|
|
609
|
+
"Fidry\\CpuCoreCounter\\": "src/"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
613
|
+
"license": [
|
|
614
|
+
"MIT"
|
|
615
|
+
],
|
|
616
|
+
"authors": [
|
|
617
|
+
{
|
|
618
|
+
"name": "Théo FIDRY",
|
|
619
|
+
"email": "theo.fidry@gmail.com"
|
|
620
|
+
}
|
|
621
|
+
],
|
|
622
|
+
"description": "Tiny utility to get the number of CPU cores.",
|
|
623
|
+
"keywords": [
|
|
624
|
+
"CPU",
|
|
625
|
+
"core"
|
|
626
|
+
],
|
|
627
|
+
"support": {
|
|
628
|
+
"issues": "https://github.com/theofidry/cpu-core-counter/issues",
|
|
629
|
+
"source": "https://github.com/theofidry/cpu-core-counter/tree/0.5.1"
|
|
630
|
+
},
|
|
631
|
+
"funding": [
|
|
632
|
+
{
|
|
633
|
+
"url": "https://github.com/theofidry",
|
|
634
|
+
"type": "github"
|
|
635
|
+
}
|
|
636
|
+
],
|
|
637
|
+
"time": "2022-12-24T12:35:10+00:00"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"name": "netresearch/jsonmapper",
|
|
641
|
+
"version": "v4.2.0",
|
|
642
|
+
"source": {
|
|
643
|
+
"type": "git",
|
|
644
|
+
"url": "https://github.com/cweiske/jsonmapper.git",
|
|
645
|
+
"reference": "f60565f8c0566a31acf06884cdaa591867ecc956"
|
|
646
|
+
},
|
|
647
|
+
"dist": {
|
|
648
|
+
"type": "zip",
|
|
649
|
+
"url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/f60565f8c0566a31acf06884cdaa591867ecc956",
|
|
650
|
+
"reference": "f60565f8c0566a31acf06884cdaa591867ecc956",
|
|
651
|
+
"shasum": ""
|
|
652
|
+
},
|
|
653
|
+
"require": {
|
|
654
|
+
"ext-json": "*",
|
|
655
|
+
"ext-pcre": "*",
|
|
656
|
+
"ext-reflection": "*",
|
|
657
|
+
"ext-spl": "*",
|
|
658
|
+
"php": ">=7.1"
|
|
659
|
+
},
|
|
660
|
+
"require-dev": {
|
|
661
|
+
"phpunit/phpunit": "~7.5 || ~8.0 || ~9.0",
|
|
662
|
+
"squizlabs/php_codesniffer": "~3.5"
|
|
663
|
+
},
|
|
664
|
+
"type": "library",
|
|
665
|
+
"autoload": {
|
|
666
|
+
"psr-0": {
|
|
667
|
+
"JsonMapper": "src/"
|
|
668
|
+
}
|
|
669
|
+
},
|
|
670
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
671
|
+
"license": [
|
|
672
|
+
"OSL-3.0"
|
|
673
|
+
],
|
|
674
|
+
"authors": [
|
|
675
|
+
{
|
|
676
|
+
"name": "Christian Weiske",
|
|
677
|
+
"email": "cweiske@cweiske.de",
|
|
678
|
+
"homepage": "http://github.com/cweiske/jsonmapper/",
|
|
679
|
+
"role": "Developer"
|
|
680
|
+
}
|
|
681
|
+
],
|
|
682
|
+
"description": "Map nested JSON structures onto PHP classes",
|
|
683
|
+
"support": {
|
|
684
|
+
"email": "cweiske@cweiske.de",
|
|
685
|
+
"issues": "https://github.com/cweiske/jsonmapper/issues",
|
|
686
|
+
"source": "https://github.com/cweiske/jsonmapper/tree/v4.2.0"
|
|
687
|
+
},
|
|
688
|
+
"time": "2023-04-09T17:37:40+00:00"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"name": "nikic/php-parser",
|
|
692
|
+
"version": "v4.17.1",
|
|
693
|
+
"source": {
|
|
694
|
+
"type": "git",
|
|
695
|
+
"url": "https://github.com/nikic/PHP-Parser.git",
|
|
696
|
+
"reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
|
|
697
|
+
},
|
|
698
|
+
"dist": {
|
|
699
|
+
"type": "zip",
|
|
700
|
+
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
|
|
701
|
+
"reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
|
|
702
|
+
"shasum": ""
|
|
703
|
+
},
|
|
704
|
+
"require": {
|
|
705
|
+
"ext-tokenizer": "*",
|
|
706
|
+
"php": ">=7.0"
|
|
707
|
+
},
|
|
708
|
+
"require-dev": {
|
|
709
|
+
"ircmaxell/php-yacc": "^0.0.7",
|
|
710
|
+
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
|
|
711
|
+
},
|
|
712
|
+
"bin": [
|
|
713
|
+
"bin/php-parse"
|
|
714
|
+
],
|
|
715
|
+
"type": "library",
|
|
716
|
+
"extra": {
|
|
717
|
+
"branch-alias": {
|
|
718
|
+
"dev-master": "4.9-dev"
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
"autoload": {
|
|
722
|
+
"psr-4": {
|
|
723
|
+
"PhpParser\\": "lib/PhpParser"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
727
|
+
"license": [
|
|
728
|
+
"BSD-3-Clause"
|
|
729
|
+
],
|
|
730
|
+
"authors": [
|
|
731
|
+
{
|
|
732
|
+
"name": "Nikita Popov"
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
"description": "A PHP parser written in PHP",
|
|
736
|
+
"keywords": [
|
|
737
|
+
"parser",
|
|
738
|
+
"php"
|
|
739
|
+
],
|
|
740
|
+
"support": {
|
|
741
|
+
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
|
742
|
+
"source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
|
|
743
|
+
},
|
|
744
|
+
"time": "2023-08-13T19:53:39+00:00"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "phpdocumentor/reflection-common",
|
|
748
|
+
"version": "2.2.0",
|
|
749
|
+
"source": {
|
|
750
|
+
"type": "git",
|
|
751
|
+
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
|
|
752
|
+
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
|
|
753
|
+
},
|
|
754
|
+
"dist": {
|
|
755
|
+
"type": "zip",
|
|
756
|
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
|
|
757
|
+
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
|
|
758
|
+
"shasum": ""
|
|
759
|
+
},
|
|
760
|
+
"require": {
|
|
761
|
+
"php": "^7.2 || ^8.0"
|
|
762
|
+
},
|
|
763
|
+
"type": "library",
|
|
764
|
+
"extra": {
|
|
765
|
+
"branch-alias": {
|
|
766
|
+
"dev-2.x": "2.x-dev"
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"autoload": {
|
|
770
|
+
"psr-4": {
|
|
771
|
+
"phpDocumentor\\Reflection\\": "src/"
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
775
|
+
"license": [
|
|
776
|
+
"MIT"
|
|
777
|
+
],
|
|
778
|
+
"authors": [
|
|
779
|
+
{
|
|
780
|
+
"name": "Jaap van Otterdijk",
|
|
781
|
+
"email": "opensource@ijaap.nl"
|
|
782
|
+
}
|
|
783
|
+
],
|
|
784
|
+
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
|
|
785
|
+
"homepage": "http://www.phpdoc.org",
|
|
786
|
+
"keywords": [
|
|
787
|
+
"FQSEN",
|
|
788
|
+
"phpDocumentor",
|
|
789
|
+
"phpdoc",
|
|
790
|
+
"reflection",
|
|
791
|
+
"static analysis"
|
|
792
|
+
],
|
|
793
|
+
"support": {
|
|
794
|
+
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
|
|
795
|
+
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
|
|
796
|
+
},
|
|
797
|
+
"time": "2020-06-27T09:03:43+00:00"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"name": "phpdocumentor/reflection-docblock",
|
|
801
|
+
"version": "5.3.0",
|
|
802
|
+
"source": {
|
|
803
|
+
"type": "git",
|
|
804
|
+
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
|
|
805
|
+
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
|
|
806
|
+
},
|
|
807
|
+
"dist": {
|
|
808
|
+
"type": "zip",
|
|
809
|
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
|
|
810
|
+
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
|
|
811
|
+
"shasum": ""
|
|
812
|
+
},
|
|
813
|
+
"require": {
|
|
814
|
+
"ext-filter": "*",
|
|
815
|
+
"php": "^7.2 || ^8.0",
|
|
816
|
+
"phpdocumentor/reflection-common": "^2.2",
|
|
817
|
+
"phpdocumentor/type-resolver": "^1.3",
|
|
818
|
+
"webmozart/assert": "^1.9.1"
|
|
819
|
+
},
|
|
820
|
+
"require-dev": {
|
|
821
|
+
"mockery/mockery": "~1.3.2",
|
|
822
|
+
"psalm/phar": "^4.8"
|
|
823
|
+
},
|
|
824
|
+
"type": "library",
|
|
825
|
+
"extra": {
|
|
826
|
+
"branch-alias": {
|
|
827
|
+
"dev-master": "5.x-dev"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"autoload": {
|
|
831
|
+
"psr-4": {
|
|
832
|
+
"phpDocumentor\\Reflection\\": "src"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
836
|
+
"license": [
|
|
837
|
+
"MIT"
|
|
838
|
+
],
|
|
839
|
+
"authors": [
|
|
840
|
+
{
|
|
841
|
+
"name": "Mike van Riel",
|
|
842
|
+
"email": "me@mikevanriel.com"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"name": "Jaap van Otterdijk",
|
|
846
|
+
"email": "account@ijaap.nl"
|
|
847
|
+
}
|
|
848
|
+
],
|
|
849
|
+
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
|
|
850
|
+
"support": {
|
|
851
|
+
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
|
|
852
|
+
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
|
|
853
|
+
},
|
|
854
|
+
"time": "2021-10-19T17:43:47+00:00"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"name": "phpdocumentor/type-resolver",
|
|
858
|
+
"version": "1.7.3",
|
|
859
|
+
"source": {
|
|
860
|
+
"type": "git",
|
|
861
|
+
"url": "https://github.com/phpDocumentor/TypeResolver.git",
|
|
862
|
+
"reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419"
|
|
863
|
+
},
|
|
864
|
+
"dist": {
|
|
865
|
+
"type": "zip",
|
|
866
|
+
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
|
|
867
|
+
"reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
|
|
868
|
+
"shasum": ""
|
|
869
|
+
},
|
|
870
|
+
"require": {
|
|
871
|
+
"doctrine/deprecations": "^1.0",
|
|
872
|
+
"php": "^7.4 || ^8.0",
|
|
873
|
+
"phpdocumentor/reflection-common": "^2.0",
|
|
874
|
+
"phpstan/phpdoc-parser": "^1.13"
|
|
875
|
+
},
|
|
876
|
+
"require-dev": {
|
|
877
|
+
"ext-tokenizer": "*",
|
|
878
|
+
"phpbench/phpbench": "^1.2",
|
|
879
|
+
"phpstan/extension-installer": "^1.1",
|
|
880
|
+
"phpstan/phpstan": "^1.8",
|
|
881
|
+
"phpstan/phpstan-phpunit": "^1.1",
|
|
882
|
+
"phpunit/phpunit": "^9.5",
|
|
883
|
+
"rector/rector": "^0.13.9",
|
|
884
|
+
"vimeo/psalm": "^4.25"
|
|
885
|
+
},
|
|
886
|
+
"type": "library",
|
|
887
|
+
"extra": {
|
|
888
|
+
"branch-alias": {
|
|
889
|
+
"dev-1.x": "1.x-dev"
|
|
890
|
+
}
|
|
891
|
+
},
|
|
892
|
+
"autoload": {
|
|
893
|
+
"psr-4": {
|
|
894
|
+
"phpDocumentor\\Reflection\\": "src"
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
898
|
+
"license": [
|
|
899
|
+
"MIT"
|
|
900
|
+
],
|
|
901
|
+
"authors": [
|
|
902
|
+
{
|
|
903
|
+
"name": "Mike van Riel",
|
|
904
|
+
"email": "me@mikevanriel.com"
|
|
905
|
+
}
|
|
906
|
+
],
|
|
907
|
+
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
|
|
908
|
+
"support": {
|
|
909
|
+
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
|
|
910
|
+
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3"
|
|
911
|
+
},
|
|
912
|
+
"time": "2023-08-12T11:01:26+00:00"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"name": "phpstan/phpdoc-parser",
|
|
916
|
+
"version": "1.23.1",
|
|
917
|
+
"source": {
|
|
918
|
+
"type": "git",
|
|
919
|
+
"url": "https://github.com/phpstan/phpdoc-parser.git",
|
|
920
|
+
"reference": "846ae76eef31c6d7790fac9bc399ecee45160b26"
|
|
921
|
+
},
|
|
922
|
+
"dist": {
|
|
923
|
+
"type": "zip",
|
|
924
|
+
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/846ae76eef31c6d7790fac9bc399ecee45160b26",
|
|
925
|
+
"reference": "846ae76eef31c6d7790fac9bc399ecee45160b26",
|
|
926
|
+
"shasum": ""
|
|
927
|
+
},
|
|
928
|
+
"require": {
|
|
929
|
+
"php": "^7.2 || ^8.0"
|
|
930
|
+
},
|
|
931
|
+
"require-dev": {
|
|
932
|
+
"doctrine/annotations": "^2.0",
|
|
933
|
+
"nikic/php-parser": "^4.15",
|
|
934
|
+
"php-parallel-lint/php-parallel-lint": "^1.2",
|
|
935
|
+
"phpstan/extension-installer": "^1.0",
|
|
936
|
+
"phpstan/phpstan": "^1.5",
|
|
937
|
+
"phpstan/phpstan-phpunit": "^1.1",
|
|
938
|
+
"phpstan/phpstan-strict-rules": "^1.0",
|
|
939
|
+
"phpunit/phpunit": "^9.5",
|
|
940
|
+
"symfony/process": "^5.2"
|
|
941
|
+
},
|
|
942
|
+
"type": "library",
|
|
943
|
+
"autoload": {
|
|
944
|
+
"psr-4": {
|
|
945
|
+
"PHPStan\\PhpDocParser\\": [
|
|
946
|
+
"src/"
|
|
947
|
+
]
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
951
|
+
"license": [
|
|
952
|
+
"MIT"
|
|
953
|
+
],
|
|
954
|
+
"description": "PHPDoc parser with support for nullable, intersection and generic types",
|
|
955
|
+
"support": {
|
|
956
|
+
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
|
|
957
|
+
"source": "https://github.com/phpstan/phpdoc-parser/tree/1.23.1"
|
|
958
|
+
},
|
|
959
|
+
"time": "2023-08-03T16:32:59+00:00"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"name": "psr/container",
|
|
963
|
+
"version": "1.1.2",
|
|
964
|
+
"source": {
|
|
965
|
+
"type": "git",
|
|
966
|
+
"url": "https://github.com/php-fig/container.git",
|
|
967
|
+
"reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
|
|
968
|
+
},
|
|
969
|
+
"dist": {
|
|
970
|
+
"type": "zip",
|
|
971
|
+
"url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
|
|
972
|
+
"reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
|
|
973
|
+
"shasum": ""
|
|
974
|
+
},
|
|
975
|
+
"require": {
|
|
976
|
+
"php": ">=7.4.0"
|
|
977
|
+
},
|
|
978
|
+
"type": "library",
|
|
979
|
+
"autoload": {
|
|
980
|
+
"psr-4": {
|
|
981
|
+
"Psr\\Container\\": "src/"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
985
|
+
"license": [
|
|
986
|
+
"MIT"
|
|
987
|
+
],
|
|
988
|
+
"authors": [
|
|
989
|
+
{
|
|
990
|
+
"name": "PHP-FIG",
|
|
991
|
+
"homepage": "https://www.php-fig.org/"
|
|
992
|
+
}
|
|
993
|
+
],
|
|
994
|
+
"description": "Common Container Interface (PHP FIG PSR-11)",
|
|
995
|
+
"homepage": "https://github.com/php-fig/container",
|
|
996
|
+
"keywords": [
|
|
997
|
+
"PSR-11",
|
|
998
|
+
"container",
|
|
999
|
+
"container-interface",
|
|
1000
|
+
"container-interop",
|
|
1001
|
+
"psr"
|
|
1002
|
+
],
|
|
1003
|
+
"support": {
|
|
1004
|
+
"issues": "https://github.com/php-fig/container/issues",
|
|
1005
|
+
"source": "https://github.com/php-fig/container/tree/1.1.2"
|
|
1006
|
+
},
|
|
1007
|
+
"time": "2021-11-05T16:50:12+00:00"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"name": "psr/log",
|
|
1011
|
+
"version": "1.1.4",
|
|
1012
|
+
"source": {
|
|
1013
|
+
"type": "git",
|
|
1014
|
+
"url": "https://github.com/php-fig/log.git",
|
|
1015
|
+
"reference": "d49695b909c3b7628b6289db5479a1c204601f11"
|
|
1016
|
+
},
|
|
1017
|
+
"dist": {
|
|
1018
|
+
"type": "zip",
|
|
1019
|
+
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
|
|
1020
|
+
"reference": "d49695b909c3b7628b6289db5479a1c204601f11",
|
|
1021
|
+
"shasum": ""
|
|
1022
|
+
},
|
|
1023
|
+
"require": {
|
|
1024
|
+
"php": ">=5.3.0"
|
|
1025
|
+
},
|
|
1026
|
+
"type": "library",
|
|
1027
|
+
"extra": {
|
|
1028
|
+
"branch-alias": {
|
|
1029
|
+
"dev-master": "1.1.x-dev"
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
"autoload": {
|
|
1033
|
+
"psr-4": {
|
|
1034
|
+
"Psr\\Log\\": "Psr/Log/"
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1038
|
+
"license": [
|
|
1039
|
+
"MIT"
|
|
1040
|
+
],
|
|
1041
|
+
"authors": [
|
|
1042
|
+
{
|
|
1043
|
+
"name": "PHP-FIG",
|
|
1044
|
+
"homepage": "https://www.php-fig.org/"
|
|
1045
|
+
}
|
|
1046
|
+
],
|
|
1047
|
+
"description": "Common interface for logging libraries",
|
|
1048
|
+
"homepage": "https://github.com/php-fig/log",
|
|
1049
|
+
"keywords": [
|
|
1050
|
+
"log",
|
|
1051
|
+
"psr",
|
|
1052
|
+
"psr-3"
|
|
1053
|
+
],
|
|
1054
|
+
"support": {
|
|
1055
|
+
"source": "https://github.com/php-fig/log/tree/1.1.4"
|
|
1056
|
+
},
|
|
1057
|
+
"time": "2021-05-03T11:20:27+00:00"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"name": "sebastian/diff",
|
|
1061
|
+
"version": "4.0.5",
|
|
1062
|
+
"source": {
|
|
1063
|
+
"type": "git",
|
|
1064
|
+
"url": "https://github.com/sebastianbergmann/diff.git",
|
|
1065
|
+
"reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
|
|
1066
|
+
},
|
|
1067
|
+
"dist": {
|
|
1068
|
+
"type": "zip",
|
|
1069
|
+
"url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
|
|
1070
|
+
"reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
|
|
1071
|
+
"shasum": ""
|
|
1072
|
+
},
|
|
1073
|
+
"require": {
|
|
1074
|
+
"php": ">=7.3"
|
|
1075
|
+
},
|
|
1076
|
+
"require-dev": {
|
|
1077
|
+
"phpunit/phpunit": "^9.3",
|
|
1078
|
+
"symfony/process": "^4.2 || ^5"
|
|
1079
|
+
},
|
|
1080
|
+
"type": "library",
|
|
1081
|
+
"extra": {
|
|
1082
|
+
"branch-alias": {
|
|
1083
|
+
"dev-master": "4.0-dev"
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"autoload": {
|
|
1087
|
+
"classmap": [
|
|
1088
|
+
"src/"
|
|
1089
|
+
]
|
|
1090
|
+
},
|
|
1091
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1092
|
+
"license": [
|
|
1093
|
+
"BSD-3-Clause"
|
|
1094
|
+
],
|
|
1095
|
+
"authors": [
|
|
1096
|
+
{
|
|
1097
|
+
"name": "Sebastian Bergmann",
|
|
1098
|
+
"email": "sebastian@phpunit.de"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "Kore Nordmann",
|
|
1102
|
+
"email": "mail@kore-nordmann.de"
|
|
1103
|
+
}
|
|
1104
|
+
],
|
|
1105
|
+
"description": "Diff implementation",
|
|
1106
|
+
"homepage": "https://github.com/sebastianbergmann/diff",
|
|
1107
|
+
"keywords": [
|
|
1108
|
+
"diff",
|
|
1109
|
+
"udiff",
|
|
1110
|
+
"unidiff",
|
|
1111
|
+
"unified diff"
|
|
1112
|
+
],
|
|
1113
|
+
"support": {
|
|
1114
|
+
"issues": "https://github.com/sebastianbergmann/diff/issues",
|
|
1115
|
+
"source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
|
|
1116
|
+
},
|
|
1117
|
+
"funding": [
|
|
1118
|
+
{
|
|
1119
|
+
"url": "https://github.com/sebastianbergmann",
|
|
1120
|
+
"type": "github"
|
|
1121
|
+
}
|
|
1122
|
+
],
|
|
1123
|
+
"time": "2023-05-07T05:35:17+00:00"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"name": "spatie/array-to-xml",
|
|
1127
|
+
"version": "2.17.1",
|
|
1128
|
+
"source": {
|
|
1129
|
+
"type": "git",
|
|
1130
|
+
"url": "https://github.com/spatie/array-to-xml.git",
|
|
1131
|
+
"reference": "5cbec9c6ab17e320c58a259f0cebe88bde4a7c46"
|
|
1132
|
+
},
|
|
1133
|
+
"dist": {
|
|
1134
|
+
"type": "zip",
|
|
1135
|
+
"url": "https://api.github.com/repos/spatie/array-to-xml/zipball/5cbec9c6ab17e320c58a259f0cebe88bde4a7c46",
|
|
1136
|
+
"reference": "5cbec9c6ab17e320c58a259f0cebe88bde4a7c46",
|
|
1137
|
+
"shasum": ""
|
|
1138
|
+
},
|
|
1139
|
+
"require": {
|
|
1140
|
+
"ext-dom": "*",
|
|
1141
|
+
"php": "^7.4|^8.0"
|
|
1142
|
+
},
|
|
1143
|
+
"require-dev": {
|
|
1144
|
+
"mockery/mockery": "^1.2",
|
|
1145
|
+
"pestphp/pest": "^1.21",
|
|
1146
|
+
"phpunit/phpunit": "^9.0",
|
|
1147
|
+
"spatie/pest-plugin-snapshots": "^1.1"
|
|
1148
|
+
},
|
|
1149
|
+
"type": "library",
|
|
1150
|
+
"autoload": {
|
|
1151
|
+
"psr-4": {
|
|
1152
|
+
"Spatie\\ArrayToXml\\": "src"
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1156
|
+
"license": [
|
|
1157
|
+
"MIT"
|
|
1158
|
+
],
|
|
1159
|
+
"authors": [
|
|
1160
|
+
{
|
|
1161
|
+
"name": "Freek Van der Herten",
|
|
1162
|
+
"email": "freek@spatie.be",
|
|
1163
|
+
"homepage": "https://freek.dev",
|
|
1164
|
+
"role": "Developer"
|
|
1165
|
+
}
|
|
1166
|
+
],
|
|
1167
|
+
"description": "Convert an array to xml",
|
|
1168
|
+
"homepage": "https://github.com/spatie/array-to-xml",
|
|
1169
|
+
"keywords": [
|
|
1170
|
+
"array",
|
|
1171
|
+
"convert",
|
|
1172
|
+
"xml"
|
|
1173
|
+
],
|
|
1174
|
+
"support": {
|
|
1175
|
+
"source": "https://github.com/spatie/array-to-xml/tree/2.17.1"
|
|
1176
|
+
},
|
|
1177
|
+
"funding": [
|
|
1178
|
+
{
|
|
1179
|
+
"url": "https://spatie.be/open-source/support-us",
|
|
1180
|
+
"type": "custom"
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"url": "https://github.com/spatie",
|
|
1184
|
+
"type": "github"
|
|
1185
|
+
}
|
|
1186
|
+
],
|
|
1187
|
+
"time": "2022-12-26T08:22:07+00:00"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"name": "symfony/console",
|
|
1191
|
+
"version": "v5.4.28",
|
|
1192
|
+
"source": {
|
|
1193
|
+
"type": "git",
|
|
1194
|
+
"url": "https://github.com/symfony/console.git",
|
|
1195
|
+
"reference": "f4f71842f24c2023b91237c72a365306f3c58827"
|
|
1196
|
+
},
|
|
1197
|
+
"dist": {
|
|
1198
|
+
"type": "zip",
|
|
1199
|
+
"url": "https://api.github.com/repos/symfony/console/zipball/f4f71842f24c2023b91237c72a365306f3c58827",
|
|
1200
|
+
"reference": "f4f71842f24c2023b91237c72a365306f3c58827",
|
|
1201
|
+
"shasum": ""
|
|
1202
|
+
},
|
|
1203
|
+
"require": {
|
|
1204
|
+
"php": ">=7.2.5",
|
|
1205
|
+
"symfony/deprecation-contracts": "^2.1|^3",
|
|
1206
|
+
"symfony/polyfill-mbstring": "~1.0",
|
|
1207
|
+
"symfony/polyfill-php73": "^1.9",
|
|
1208
|
+
"symfony/polyfill-php80": "^1.16",
|
|
1209
|
+
"symfony/service-contracts": "^1.1|^2|^3",
|
|
1210
|
+
"symfony/string": "^5.1|^6.0"
|
|
1211
|
+
},
|
|
1212
|
+
"conflict": {
|
|
1213
|
+
"psr/log": ">=3",
|
|
1214
|
+
"symfony/dependency-injection": "<4.4",
|
|
1215
|
+
"symfony/dotenv": "<5.1",
|
|
1216
|
+
"symfony/event-dispatcher": "<4.4",
|
|
1217
|
+
"symfony/lock": "<4.4",
|
|
1218
|
+
"symfony/process": "<4.4"
|
|
1219
|
+
},
|
|
1220
|
+
"provide": {
|
|
1221
|
+
"psr/log-implementation": "1.0|2.0"
|
|
1222
|
+
},
|
|
1223
|
+
"require-dev": {
|
|
1224
|
+
"psr/log": "^1|^2",
|
|
1225
|
+
"symfony/config": "^4.4|^5.0|^6.0",
|
|
1226
|
+
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
|
|
1227
|
+
"symfony/event-dispatcher": "^4.4|^5.0|^6.0",
|
|
1228
|
+
"symfony/lock": "^4.4|^5.0|^6.0",
|
|
1229
|
+
"symfony/process": "^4.4|^5.0|^6.0",
|
|
1230
|
+
"symfony/var-dumper": "^4.4|^5.0|^6.0"
|
|
1231
|
+
},
|
|
1232
|
+
"suggest": {
|
|
1233
|
+
"psr/log": "For using the console logger",
|
|
1234
|
+
"symfony/event-dispatcher": "",
|
|
1235
|
+
"symfony/lock": "",
|
|
1236
|
+
"symfony/process": ""
|
|
1237
|
+
},
|
|
1238
|
+
"type": "library",
|
|
1239
|
+
"autoload": {
|
|
1240
|
+
"psr-4": {
|
|
1241
|
+
"Symfony\\Component\\Console\\": ""
|
|
1242
|
+
},
|
|
1243
|
+
"exclude-from-classmap": [
|
|
1244
|
+
"/Tests/"
|
|
1245
|
+
]
|
|
1246
|
+
},
|
|
1247
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1248
|
+
"license": [
|
|
1249
|
+
"MIT"
|
|
1250
|
+
],
|
|
1251
|
+
"authors": [
|
|
1252
|
+
{
|
|
1253
|
+
"name": "Fabien Potencier",
|
|
1254
|
+
"email": "fabien@symfony.com"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"name": "Symfony Community",
|
|
1258
|
+
"homepage": "https://symfony.com/contributors"
|
|
1259
|
+
}
|
|
1260
|
+
],
|
|
1261
|
+
"description": "Eases the creation of beautiful and testable command line interfaces",
|
|
1262
|
+
"homepage": "https://symfony.com",
|
|
1263
|
+
"keywords": [
|
|
1264
|
+
"cli",
|
|
1265
|
+
"command-line",
|
|
1266
|
+
"console",
|
|
1267
|
+
"terminal"
|
|
1268
|
+
],
|
|
1269
|
+
"support": {
|
|
1270
|
+
"source": "https://github.com/symfony/console/tree/v5.4.28"
|
|
1271
|
+
},
|
|
1272
|
+
"funding": [
|
|
1273
|
+
{
|
|
1274
|
+
"url": "https://symfony.com/sponsor",
|
|
1275
|
+
"type": "custom"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"url": "https://github.com/fabpot",
|
|
1279
|
+
"type": "github"
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1283
|
+
"type": "tidelift"
|
|
1284
|
+
}
|
|
1285
|
+
],
|
|
1286
|
+
"time": "2023-08-07T06:12:30+00:00"
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"name": "symfony/deprecation-contracts",
|
|
1290
|
+
"version": "v2.5.2",
|
|
1291
|
+
"source": {
|
|
1292
|
+
"type": "git",
|
|
1293
|
+
"url": "https://github.com/symfony/deprecation-contracts.git",
|
|
1294
|
+
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
|
|
1295
|
+
},
|
|
1296
|
+
"dist": {
|
|
1297
|
+
"type": "zip",
|
|
1298
|
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
|
|
1299
|
+
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
|
|
1300
|
+
"shasum": ""
|
|
1301
|
+
},
|
|
1302
|
+
"require": {
|
|
1303
|
+
"php": ">=7.1"
|
|
1304
|
+
},
|
|
1305
|
+
"type": "library",
|
|
1306
|
+
"extra": {
|
|
1307
|
+
"branch-alias": {
|
|
1308
|
+
"dev-main": "2.5-dev"
|
|
1309
|
+
},
|
|
1310
|
+
"thanks": {
|
|
1311
|
+
"name": "symfony/contracts",
|
|
1312
|
+
"url": "https://github.com/symfony/contracts"
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
"autoload": {
|
|
1316
|
+
"files": [
|
|
1317
|
+
"function.php"
|
|
1318
|
+
]
|
|
1319
|
+
},
|
|
1320
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1321
|
+
"license": [
|
|
1322
|
+
"MIT"
|
|
1323
|
+
],
|
|
1324
|
+
"authors": [
|
|
1325
|
+
{
|
|
1326
|
+
"name": "Nicolas Grekas",
|
|
1327
|
+
"email": "p@tchwork.com"
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"name": "Symfony Community",
|
|
1331
|
+
"homepage": "https://symfony.com/contributors"
|
|
1332
|
+
}
|
|
1333
|
+
],
|
|
1334
|
+
"description": "A generic function and convention to trigger deprecation notices",
|
|
1335
|
+
"homepage": "https://symfony.com",
|
|
1336
|
+
"support": {
|
|
1337
|
+
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
|
|
1338
|
+
},
|
|
1339
|
+
"funding": [
|
|
1340
|
+
{
|
|
1341
|
+
"url": "https://symfony.com/sponsor",
|
|
1342
|
+
"type": "custom"
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"url": "https://github.com/fabpot",
|
|
1346
|
+
"type": "github"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1350
|
+
"type": "tidelift"
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1353
|
+
"time": "2022-01-02T09:53:40+00:00"
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"name": "symfony/filesystem",
|
|
1357
|
+
"version": "v5.4.25",
|
|
1358
|
+
"source": {
|
|
1359
|
+
"type": "git",
|
|
1360
|
+
"url": "https://github.com/symfony/filesystem.git",
|
|
1361
|
+
"reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364"
|
|
1362
|
+
},
|
|
1363
|
+
"dist": {
|
|
1364
|
+
"type": "zip",
|
|
1365
|
+
"url": "https://api.github.com/repos/symfony/filesystem/zipball/0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
|
|
1366
|
+
"reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
|
|
1367
|
+
"shasum": ""
|
|
1368
|
+
},
|
|
1369
|
+
"require": {
|
|
1370
|
+
"php": ">=7.2.5",
|
|
1371
|
+
"symfony/polyfill-ctype": "~1.8",
|
|
1372
|
+
"symfony/polyfill-mbstring": "~1.8",
|
|
1373
|
+
"symfony/polyfill-php80": "^1.16"
|
|
1374
|
+
},
|
|
1375
|
+
"type": "library",
|
|
1376
|
+
"autoload": {
|
|
1377
|
+
"psr-4": {
|
|
1378
|
+
"Symfony\\Component\\Filesystem\\": ""
|
|
1379
|
+
},
|
|
1380
|
+
"exclude-from-classmap": [
|
|
1381
|
+
"/Tests/"
|
|
1382
|
+
]
|
|
1383
|
+
},
|
|
1384
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1385
|
+
"license": [
|
|
1386
|
+
"MIT"
|
|
1387
|
+
],
|
|
1388
|
+
"authors": [
|
|
1389
|
+
{
|
|
1390
|
+
"name": "Fabien Potencier",
|
|
1391
|
+
"email": "fabien@symfony.com"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"name": "Symfony Community",
|
|
1395
|
+
"homepage": "https://symfony.com/contributors"
|
|
1396
|
+
}
|
|
1397
|
+
],
|
|
1398
|
+
"description": "Provides basic utilities for the filesystem",
|
|
1399
|
+
"homepage": "https://symfony.com",
|
|
1400
|
+
"support": {
|
|
1401
|
+
"source": "https://github.com/symfony/filesystem/tree/v5.4.25"
|
|
1402
|
+
},
|
|
1403
|
+
"funding": [
|
|
1404
|
+
{
|
|
1405
|
+
"url": "https://symfony.com/sponsor",
|
|
1406
|
+
"type": "custom"
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"url": "https://github.com/fabpot",
|
|
1410
|
+
"type": "github"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1414
|
+
"type": "tidelift"
|
|
1415
|
+
}
|
|
1416
|
+
],
|
|
1417
|
+
"time": "2023-05-31T13:04:02+00:00"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"name": "symfony/polyfill-ctype",
|
|
1421
|
+
"version": "v1.28.0",
|
|
1422
|
+
"source": {
|
|
1423
|
+
"type": "git",
|
|
1424
|
+
"url": "https://github.com/symfony/polyfill-ctype.git",
|
|
1425
|
+
"reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
|
|
1426
|
+
},
|
|
1427
|
+
"dist": {
|
|
1428
|
+
"type": "zip",
|
|
1429
|
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
|
|
1430
|
+
"reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
|
|
1431
|
+
"shasum": ""
|
|
1432
|
+
},
|
|
1433
|
+
"require": {
|
|
1434
|
+
"php": ">=7.1"
|
|
1435
|
+
},
|
|
1436
|
+
"provide": {
|
|
1437
|
+
"ext-ctype": "*"
|
|
1438
|
+
},
|
|
1439
|
+
"suggest": {
|
|
1440
|
+
"ext-ctype": "For best performance"
|
|
1441
|
+
},
|
|
1442
|
+
"type": "library",
|
|
1443
|
+
"extra": {
|
|
1444
|
+
"branch-alias": {
|
|
1445
|
+
"dev-main": "1.28-dev"
|
|
1446
|
+
},
|
|
1447
|
+
"thanks": {
|
|
1448
|
+
"name": "symfony/polyfill",
|
|
1449
|
+
"url": "https://github.com/symfony/polyfill"
|
|
1450
|
+
}
|
|
1451
|
+
},
|
|
1452
|
+
"autoload": {
|
|
1453
|
+
"files": [
|
|
1454
|
+
"bootstrap.php"
|
|
1455
|
+
],
|
|
1456
|
+
"psr-4": {
|
|
1457
|
+
"Symfony\\Polyfill\\Ctype\\": ""
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1460
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1461
|
+
"license": [
|
|
1462
|
+
"MIT"
|
|
1463
|
+
],
|
|
1464
|
+
"authors": [
|
|
1465
|
+
{
|
|
1466
|
+
"name": "Gert de Pagter",
|
|
1467
|
+
"email": "BackEndTea@gmail.com"
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"name": "Symfony Community",
|
|
1471
|
+
"homepage": "https://symfony.com/contributors"
|
|
1472
|
+
}
|
|
1473
|
+
],
|
|
1474
|
+
"description": "Symfony polyfill for ctype functions",
|
|
1475
|
+
"homepage": "https://symfony.com",
|
|
1476
|
+
"keywords": [
|
|
1477
|
+
"compatibility",
|
|
1478
|
+
"ctype",
|
|
1479
|
+
"polyfill",
|
|
1480
|
+
"portable"
|
|
1481
|
+
],
|
|
1482
|
+
"support": {
|
|
1483
|
+
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
|
|
1484
|
+
},
|
|
1485
|
+
"funding": [
|
|
1486
|
+
{
|
|
1487
|
+
"url": "https://symfony.com/sponsor",
|
|
1488
|
+
"type": "custom"
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"url": "https://github.com/fabpot",
|
|
1492
|
+
"type": "github"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1496
|
+
"type": "tidelift"
|
|
1497
|
+
}
|
|
1498
|
+
],
|
|
1499
|
+
"time": "2023-01-26T09:26:14+00:00"
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"name": "symfony/polyfill-intl-grapheme",
|
|
1503
|
+
"version": "v1.28.0",
|
|
1504
|
+
"source": {
|
|
1505
|
+
"type": "git",
|
|
1506
|
+
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
|
|
1507
|
+
"reference": "875e90aeea2777b6f135677f618529449334a612"
|
|
1508
|
+
},
|
|
1509
|
+
"dist": {
|
|
1510
|
+
"type": "zip",
|
|
1511
|
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
|
|
1512
|
+
"reference": "875e90aeea2777b6f135677f618529449334a612",
|
|
1513
|
+
"shasum": ""
|
|
1514
|
+
},
|
|
1515
|
+
"require": {
|
|
1516
|
+
"php": ">=7.1"
|
|
1517
|
+
},
|
|
1518
|
+
"suggest": {
|
|
1519
|
+
"ext-intl": "For best performance"
|
|
1520
|
+
},
|
|
1521
|
+
"type": "library",
|
|
1522
|
+
"extra": {
|
|
1523
|
+
"branch-alias": {
|
|
1524
|
+
"dev-main": "1.28-dev"
|
|
1525
|
+
},
|
|
1526
|
+
"thanks": {
|
|
1527
|
+
"name": "symfony/polyfill",
|
|
1528
|
+
"url": "https://github.com/symfony/polyfill"
|
|
1529
|
+
}
|
|
1530
|
+
},
|
|
1531
|
+
"autoload": {
|
|
1532
|
+
"files": [
|
|
1533
|
+
"bootstrap.php"
|
|
1534
|
+
],
|
|
1535
|
+
"psr-4": {
|
|
1536
|
+
"Symfony\\Polyfill\\Intl\\Grapheme\\": ""
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1539
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1540
|
+
"license": [
|
|
1541
|
+
"MIT"
|
|
1542
|
+
],
|
|
1543
|
+
"authors": [
|
|
1544
|
+
{
|
|
1545
|
+
"name": "Nicolas Grekas",
|
|
1546
|
+
"email": "p@tchwork.com"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"name": "Symfony Community",
|
|
1550
|
+
"homepage": "https://symfony.com/contributors"
|
|
1551
|
+
}
|
|
1552
|
+
],
|
|
1553
|
+
"description": "Symfony polyfill for intl's grapheme_* functions",
|
|
1554
|
+
"homepage": "https://symfony.com",
|
|
1555
|
+
"keywords": [
|
|
1556
|
+
"compatibility",
|
|
1557
|
+
"grapheme",
|
|
1558
|
+
"intl",
|
|
1559
|
+
"polyfill",
|
|
1560
|
+
"portable",
|
|
1561
|
+
"shim"
|
|
1562
|
+
],
|
|
1563
|
+
"support": {
|
|
1564
|
+
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
|
|
1565
|
+
},
|
|
1566
|
+
"funding": [
|
|
1567
|
+
{
|
|
1568
|
+
"url": "https://symfony.com/sponsor",
|
|
1569
|
+
"type": "custom"
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"url": "https://github.com/fabpot",
|
|
1573
|
+
"type": "github"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1577
|
+
"type": "tidelift"
|
|
1578
|
+
}
|
|
1579
|
+
],
|
|
1580
|
+
"time": "2023-01-26T09:26:14+00:00"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"name": "symfony/polyfill-intl-normalizer",
|
|
1584
|
+
"version": "v1.28.0",
|
|
1585
|
+
"source": {
|
|
1586
|
+
"type": "git",
|
|
1587
|
+
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
|
|
1588
|
+
"reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
|
|
1589
|
+
},
|
|
1590
|
+
"dist": {
|
|
1591
|
+
"type": "zip",
|
|
1592
|
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
|
|
1593
|
+
"reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
|
|
1594
|
+
"shasum": ""
|
|
1595
|
+
},
|
|
1596
|
+
"require": {
|
|
1597
|
+
"php": ">=7.1"
|
|
1598
|
+
},
|
|
1599
|
+
"suggest": {
|
|
1600
|
+
"ext-intl": "For best performance"
|
|
1601
|
+
},
|
|
1602
|
+
"type": "library",
|
|
1603
|
+
"extra": {
|
|
1604
|
+
"branch-alias": {
|
|
1605
|
+
"dev-main": "1.28-dev"
|
|
1606
|
+
},
|
|
1607
|
+
"thanks": {
|
|
1608
|
+
"name": "symfony/polyfill",
|
|
1609
|
+
"url": "https://github.com/symfony/polyfill"
|
|
1610
|
+
}
|
|
1611
|
+
},
|
|
1612
|
+
"autoload": {
|
|
1613
|
+
"files": [
|
|
1614
|
+
"bootstrap.php"
|
|
1615
|
+
],
|
|
1616
|
+
"psr-4": {
|
|
1617
|
+
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
|
|
1618
|
+
},
|
|
1619
|
+
"classmap": [
|
|
1620
|
+
"Resources/stubs"
|
|
1621
|
+
]
|
|
1622
|
+
},
|
|
1623
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1624
|
+
"license": [
|
|
1625
|
+
"MIT"
|
|
1626
|
+
],
|
|
1627
|
+
"authors": [
|
|
1628
|
+
{
|
|
1629
|
+
"name": "Nicolas Grekas",
|
|
1630
|
+
"email": "p@tchwork.com"
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
"name": "Symfony Community",
|
|
1634
|
+
"homepage": "https://symfony.com/contributors"
|
|
1635
|
+
}
|
|
1636
|
+
],
|
|
1637
|
+
"description": "Symfony polyfill for intl's Normalizer class and related functions",
|
|
1638
|
+
"homepage": "https://symfony.com",
|
|
1639
|
+
"keywords": [
|
|
1640
|
+
"compatibility",
|
|
1641
|
+
"intl",
|
|
1642
|
+
"normalizer",
|
|
1643
|
+
"polyfill",
|
|
1644
|
+
"portable",
|
|
1645
|
+
"shim"
|
|
1646
|
+
],
|
|
1647
|
+
"support": {
|
|
1648
|
+
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
|
|
1649
|
+
},
|
|
1650
|
+
"funding": [
|
|
1651
|
+
{
|
|
1652
|
+
"url": "https://symfony.com/sponsor",
|
|
1653
|
+
"type": "custom"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"url": "https://github.com/fabpot",
|
|
1657
|
+
"type": "github"
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1661
|
+
"type": "tidelift"
|
|
1662
|
+
}
|
|
1663
|
+
],
|
|
1664
|
+
"time": "2023-01-26T09:26:14+00:00"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"name": "symfony/polyfill-mbstring",
|
|
1668
|
+
"version": "v1.28.0",
|
|
1669
|
+
"source": {
|
|
1670
|
+
"type": "git",
|
|
1671
|
+
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
|
1672
|
+
"reference": "42292d99c55abe617799667f454222c54c60e229"
|
|
1673
|
+
},
|
|
1674
|
+
"dist": {
|
|
1675
|
+
"type": "zip",
|
|
1676
|
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
|
|
1677
|
+
"reference": "42292d99c55abe617799667f454222c54c60e229",
|
|
1678
|
+
"shasum": ""
|
|
1679
|
+
},
|
|
1680
|
+
"require": {
|
|
1681
|
+
"php": ">=7.1"
|
|
1682
|
+
},
|
|
1683
|
+
"provide": {
|
|
1684
|
+
"ext-mbstring": "*"
|
|
1685
|
+
},
|
|
1686
|
+
"suggest": {
|
|
1687
|
+
"ext-mbstring": "For best performance"
|
|
1688
|
+
},
|
|
1689
|
+
"type": "library",
|
|
1690
|
+
"extra": {
|
|
1691
|
+
"branch-alias": {
|
|
1692
|
+
"dev-main": "1.28-dev"
|
|
1693
|
+
},
|
|
1694
|
+
"thanks": {
|
|
1695
|
+
"name": "symfony/polyfill",
|
|
1696
|
+
"url": "https://github.com/symfony/polyfill"
|
|
1697
|
+
}
|
|
1698
|
+
},
|
|
1699
|
+
"autoload": {
|
|
1700
|
+
"files": [
|
|
1701
|
+
"bootstrap.php"
|
|
1702
|
+
],
|
|
1703
|
+
"psr-4": {
|
|
1704
|
+
"Symfony\\Polyfill\\Mbstring\\": ""
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1708
|
+
"license": [
|
|
1709
|
+
"MIT"
|
|
1710
|
+
],
|
|
1711
|
+
"authors": [
|
|
1712
|
+
{
|
|
1713
|
+
"name": "Nicolas Grekas",
|
|
1714
|
+
"email": "p@tchwork.com"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"name": "Symfony Community",
|
|
1718
|
+
"homepage": "https://symfony.com/contributors"
|
|
1719
|
+
}
|
|
1720
|
+
],
|
|
1721
|
+
"description": "Symfony polyfill for the Mbstring extension",
|
|
1722
|
+
"homepage": "https://symfony.com",
|
|
1723
|
+
"keywords": [
|
|
1724
|
+
"compatibility",
|
|
1725
|
+
"mbstring",
|
|
1726
|
+
"polyfill",
|
|
1727
|
+
"portable",
|
|
1728
|
+
"shim"
|
|
1729
|
+
],
|
|
1730
|
+
"support": {
|
|
1731
|
+
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
|
|
1732
|
+
},
|
|
1733
|
+
"funding": [
|
|
1734
|
+
{
|
|
1735
|
+
"url": "https://symfony.com/sponsor",
|
|
1736
|
+
"type": "custom"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"url": "https://github.com/fabpot",
|
|
1740
|
+
"type": "github"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1744
|
+
"type": "tidelift"
|
|
1745
|
+
}
|
|
1746
|
+
],
|
|
1747
|
+
"time": "2023-07-28T09:04:16+00:00"
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
"name": "symfony/polyfill-php73",
|
|
1751
|
+
"version": "v1.28.0",
|
|
1752
|
+
"source": {
|
|
1753
|
+
"type": "git",
|
|
1754
|
+
"url": "https://github.com/symfony/polyfill-php73.git",
|
|
1755
|
+
"reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
|
|
1756
|
+
},
|
|
1757
|
+
"dist": {
|
|
1758
|
+
"type": "zip",
|
|
1759
|
+
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
|
|
1760
|
+
"reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
|
|
1761
|
+
"shasum": ""
|
|
1762
|
+
},
|
|
1763
|
+
"require": {
|
|
1764
|
+
"php": ">=7.1"
|
|
1765
|
+
},
|
|
1766
|
+
"type": "library",
|
|
1767
|
+
"extra": {
|
|
1768
|
+
"branch-alias": {
|
|
1769
|
+
"dev-main": "1.28-dev"
|
|
1770
|
+
},
|
|
1771
|
+
"thanks": {
|
|
1772
|
+
"name": "symfony/polyfill",
|
|
1773
|
+
"url": "https://github.com/symfony/polyfill"
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"autoload": {
|
|
1777
|
+
"files": [
|
|
1778
|
+
"bootstrap.php"
|
|
1779
|
+
],
|
|
1780
|
+
"psr-4": {
|
|
1781
|
+
"Symfony\\Polyfill\\Php73\\": ""
|
|
1782
|
+
},
|
|
1783
|
+
"classmap": [
|
|
1784
|
+
"Resources/stubs"
|
|
1785
|
+
]
|
|
1786
|
+
},
|
|
1787
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1788
|
+
"license": [
|
|
1789
|
+
"MIT"
|
|
1790
|
+
],
|
|
1791
|
+
"authors": [
|
|
1792
|
+
{
|
|
1793
|
+
"name": "Nicolas Grekas",
|
|
1794
|
+
"email": "p@tchwork.com"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"name": "Symfony Community",
|
|
1798
|
+
"homepage": "https://symfony.com/contributors"
|
|
1799
|
+
}
|
|
1800
|
+
],
|
|
1801
|
+
"description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
|
|
1802
|
+
"homepage": "https://symfony.com",
|
|
1803
|
+
"keywords": [
|
|
1804
|
+
"compatibility",
|
|
1805
|
+
"polyfill",
|
|
1806
|
+
"portable",
|
|
1807
|
+
"shim"
|
|
1808
|
+
],
|
|
1809
|
+
"support": {
|
|
1810
|
+
"source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
|
|
1811
|
+
},
|
|
1812
|
+
"funding": [
|
|
1813
|
+
{
|
|
1814
|
+
"url": "https://symfony.com/sponsor",
|
|
1815
|
+
"type": "custom"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"url": "https://github.com/fabpot",
|
|
1819
|
+
"type": "github"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1823
|
+
"type": "tidelift"
|
|
1824
|
+
}
|
|
1825
|
+
],
|
|
1826
|
+
"time": "2023-01-26T09:26:14+00:00"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"name": "symfony/polyfill-php80",
|
|
1830
|
+
"version": "v1.28.0",
|
|
1831
|
+
"source": {
|
|
1832
|
+
"type": "git",
|
|
1833
|
+
"url": "https://github.com/symfony/polyfill-php80.git",
|
|
1834
|
+
"reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
|
|
1835
|
+
},
|
|
1836
|
+
"dist": {
|
|
1837
|
+
"type": "zip",
|
|
1838
|
+
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
|
|
1839
|
+
"reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
|
|
1840
|
+
"shasum": ""
|
|
1841
|
+
},
|
|
1842
|
+
"require": {
|
|
1843
|
+
"php": ">=7.1"
|
|
1844
|
+
},
|
|
1845
|
+
"type": "library",
|
|
1846
|
+
"extra": {
|
|
1847
|
+
"branch-alias": {
|
|
1848
|
+
"dev-main": "1.28-dev"
|
|
1849
|
+
},
|
|
1850
|
+
"thanks": {
|
|
1851
|
+
"name": "symfony/polyfill",
|
|
1852
|
+
"url": "https://github.com/symfony/polyfill"
|
|
1853
|
+
}
|
|
1854
|
+
},
|
|
1855
|
+
"autoload": {
|
|
1856
|
+
"files": [
|
|
1857
|
+
"bootstrap.php"
|
|
1858
|
+
],
|
|
1859
|
+
"psr-4": {
|
|
1860
|
+
"Symfony\\Polyfill\\Php80\\": ""
|
|
1861
|
+
},
|
|
1862
|
+
"classmap": [
|
|
1863
|
+
"Resources/stubs"
|
|
1864
|
+
]
|
|
1865
|
+
},
|
|
1866
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1867
|
+
"license": [
|
|
1868
|
+
"MIT"
|
|
1869
|
+
],
|
|
1870
|
+
"authors": [
|
|
1871
|
+
{
|
|
1872
|
+
"name": "Ion Bazan",
|
|
1873
|
+
"email": "ion.bazan@gmail.com"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"name": "Nicolas Grekas",
|
|
1877
|
+
"email": "p@tchwork.com"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"name": "Symfony Community",
|
|
1881
|
+
"homepage": "https://symfony.com/contributors"
|
|
1882
|
+
}
|
|
1883
|
+
],
|
|
1884
|
+
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
|
|
1885
|
+
"homepage": "https://symfony.com",
|
|
1886
|
+
"keywords": [
|
|
1887
|
+
"compatibility",
|
|
1888
|
+
"polyfill",
|
|
1889
|
+
"portable",
|
|
1890
|
+
"shim"
|
|
1891
|
+
],
|
|
1892
|
+
"support": {
|
|
1893
|
+
"source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
|
|
1894
|
+
},
|
|
1895
|
+
"funding": [
|
|
1896
|
+
{
|
|
1897
|
+
"url": "https://symfony.com/sponsor",
|
|
1898
|
+
"type": "custom"
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"url": "https://github.com/fabpot",
|
|
1902
|
+
"type": "github"
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1906
|
+
"type": "tidelift"
|
|
1907
|
+
}
|
|
1908
|
+
],
|
|
1909
|
+
"time": "2023-01-26T09:26:14+00:00"
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"name": "symfony/service-contracts",
|
|
1913
|
+
"version": "v2.5.2",
|
|
1914
|
+
"source": {
|
|
1915
|
+
"type": "git",
|
|
1916
|
+
"url": "https://github.com/symfony/service-contracts.git",
|
|
1917
|
+
"reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
|
|
1918
|
+
},
|
|
1919
|
+
"dist": {
|
|
1920
|
+
"type": "zip",
|
|
1921
|
+
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
|
|
1922
|
+
"reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
|
|
1923
|
+
"shasum": ""
|
|
1924
|
+
},
|
|
1925
|
+
"require": {
|
|
1926
|
+
"php": ">=7.2.5",
|
|
1927
|
+
"psr/container": "^1.1",
|
|
1928
|
+
"symfony/deprecation-contracts": "^2.1|^3"
|
|
1929
|
+
},
|
|
1930
|
+
"conflict": {
|
|
1931
|
+
"ext-psr": "<1.1|>=2"
|
|
1932
|
+
},
|
|
1933
|
+
"suggest": {
|
|
1934
|
+
"symfony/service-implementation": ""
|
|
1935
|
+
},
|
|
1936
|
+
"type": "library",
|
|
1937
|
+
"extra": {
|
|
1938
|
+
"branch-alias": {
|
|
1939
|
+
"dev-main": "2.5-dev"
|
|
1940
|
+
},
|
|
1941
|
+
"thanks": {
|
|
1942
|
+
"name": "symfony/contracts",
|
|
1943
|
+
"url": "https://github.com/symfony/contracts"
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
"autoload": {
|
|
1947
|
+
"psr-4": {
|
|
1948
|
+
"Symfony\\Contracts\\Service\\": ""
|
|
1949
|
+
}
|
|
1950
|
+
},
|
|
1951
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
1952
|
+
"license": [
|
|
1953
|
+
"MIT"
|
|
1954
|
+
],
|
|
1955
|
+
"authors": [
|
|
1956
|
+
{
|
|
1957
|
+
"name": "Nicolas Grekas",
|
|
1958
|
+
"email": "p@tchwork.com"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"name": "Symfony Community",
|
|
1962
|
+
"homepage": "https://symfony.com/contributors"
|
|
1963
|
+
}
|
|
1964
|
+
],
|
|
1965
|
+
"description": "Generic abstractions related to writing services",
|
|
1966
|
+
"homepage": "https://symfony.com",
|
|
1967
|
+
"keywords": [
|
|
1968
|
+
"abstractions",
|
|
1969
|
+
"contracts",
|
|
1970
|
+
"decoupling",
|
|
1971
|
+
"interfaces",
|
|
1972
|
+
"interoperability",
|
|
1973
|
+
"standards"
|
|
1974
|
+
],
|
|
1975
|
+
"support": {
|
|
1976
|
+
"source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
|
|
1977
|
+
},
|
|
1978
|
+
"funding": [
|
|
1979
|
+
{
|
|
1980
|
+
"url": "https://symfony.com/sponsor",
|
|
1981
|
+
"type": "custom"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"url": "https://github.com/fabpot",
|
|
1985
|
+
"type": "github"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
1989
|
+
"type": "tidelift"
|
|
1990
|
+
}
|
|
1991
|
+
],
|
|
1992
|
+
"time": "2022-05-30T19:17:29+00:00"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"name": "symfony/string",
|
|
1996
|
+
"version": "v5.4.26",
|
|
1997
|
+
"source": {
|
|
1998
|
+
"type": "git",
|
|
1999
|
+
"url": "https://github.com/symfony/string.git",
|
|
2000
|
+
"reference": "1181fe9270e373537475e826873b5867b863883c"
|
|
2001
|
+
},
|
|
2002
|
+
"dist": {
|
|
2003
|
+
"type": "zip",
|
|
2004
|
+
"url": "https://api.github.com/repos/symfony/string/zipball/1181fe9270e373537475e826873b5867b863883c",
|
|
2005
|
+
"reference": "1181fe9270e373537475e826873b5867b863883c",
|
|
2006
|
+
"shasum": ""
|
|
2007
|
+
},
|
|
2008
|
+
"require": {
|
|
2009
|
+
"php": ">=7.2.5",
|
|
2010
|
+
"symfony/polyfill-ctype": "~1.8",
|
|
2011
|
+
"symfony/polyfill-intl-grapheme": "~1.0",
|
|
2012
|
+
"symfony/polyfill-intl-normalizer": "~1.0",
|
|
2013
|
+
"symfony/polyfill-mbstring": "~1.0",
|
|
2014
|
+
"symfony/polyfill-php80": "~1.15"
|
|
2015
|
+
},
|
|
2016
|
+
"conflict": {
|
|
2017
|
+
"symfony/translation-contracts": ">=3.0"
|
|
2018
|
+
},
|
|
2019
|
+
"require-dev": {
|
|
2020
|
+
"symfony/error-handler": "^4.4|^5.0|^6.0",
|
|
2021
|
+
"symfony/http-client": "^4.4|^5.0|^6.0",
|
|
2022
|
+
"symfony/translation-contracts": "^1.1|^2",
|
|
2023
|
+
"symfony/var-exporter": "^4.4|^5.0|^6.0"
|
|
2024
|
+
},
|
|
2025
|
+
"type": "library",
|
|
2026
|
+
"autoload": {
|
|
2027
|
+
"files": [
|
|
2028
|
+
"Resources/functions.php"
|
|
2029
|
+
],
|
|
2030
|
+
"psr-4": {
|
|
2031
|
+
"Symfony\\Component\\String\\": ""
|
|
2032
|
+
},
|
|
2033
|
+
"exclude-from-classmap": [
|
|
2034
|
+
"/Tests/"
|
|
2035
|
+
]
|
|
2036
|
+
},
|
|
2037
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
2038
|
+
"license": [
|
|
2039
|
+
"MIT"
|
|
2040
|
+
],
|
|
2041
|
+
"authors": [
|
|
2042
|
+
{
|
|
2043
|
+
"name": "Nicolas Grekas",
|
|
2044
|
+
"email": "p@tchwork.com"
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
"name": "Symfony Community",
|
|
2048
|
+
"homepage": "https://symfony.com/contributors"
|
|
2049
|
+
}
|
|
2050
|
+
],
|
|
2051
|
+
"description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
|
|
2052
|
+
"homepage": "https://symfony.com",
|
|
2053
|
+
"keywords": [
|
|
2054
|
+
"grapheme",
|
|
2055
|
+
"i18n",
|
|
2056
|
+
"string",
|
|
2057
|
+
"unicode",
|
|
2058
|
+
"utf-8",
|
|
2059
|
+
"utf8"
|
|
2060
|
+
],
|
|
2061
|
+
"support": {
|
|
2062
|
+
"source": "https://github.com/symfony/string/tree/v5.4.26"
|
|
2063
|
+
},
|
|
2064
|
+
"funding": [
|
|
2065
|
+
{
|
|
2066
|
+
"url": "https://symfony.com/sponsor",
|
|
2067
|
+
"type": "custom"
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"url": "https://github.com/fabpot",
|
|
2071
|
+
"type": "github"
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
2075
|
+
"type": "tidelift"
|
|
2076
|
+
}
|
|
2077
|
+
],
|
|
2078
|
+
"time": "2023-06-28T12:46:07+00:00"
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"name": "vimeo/psalm",
|
|
2082
|
+
"version": "5.15.0",
|
|
2083
|
+
"source": {
|
|
2084
|
+
"type": "git",
|
|
2085
|
+
"url": "https://github.com/vimeo/psalm.git",
|
|
2086
|
+
"reference": "5c774aca4746caf3d239d9c8cadb9f882ca29352"
|
|
2087
|
+
},
|
|
2088
|
+
"dist": {
|
|
2089
|
+
"type": "zip",
|
|
2090
|
+
"url": "https://api.github.com/repos/vimeo/psalm/zipball/5c774aca4746caf3d239d9c8cadb9f882ca29352",
|
|
2091
|
+
"reference": "5c774aca4746caf3d239d9c8cadb9f882ca29352",
|
|
2092
|
+
"shasum": ""
|
|
2093
|
+
},
|
|
2094
|
+
"require": {
|
|
2095
|
+
"amphp/amp": "^2.4.2",
|
|
2096
|
+
"amphp/byte-stream": "^1.5",
|
|
2097
|
+
"composer-runtime-api": "^2",
|
|
2098
|
+
"composer/semver": "^1.4 || ^2.0 || ^3.0",
|
|
2099
|
+
"composer/xdebug-handler": "^2.0 || ^3.0",
|
|
2100
|
+
"dnoegel/php-xdg-base-dir": "^0.1.1",
|
|
2101
|
+
"ext-ctype": "*",
|
|
2102
|
+
"ext-dom": "*",
|
|
2103
|
+
"ext-json": "*",
|
|
2104
|
+
"ext-libxml": "*",
|
|
2105
|
+
"ext-mbstring": "*",
|
|
2106
|
+
"ext-simplexml": "*",
|
|
2107
|
+
"ext-tokenizer": "*",
|
|
2108
|
+
"felixfbecker/advanced-json-rpc": "^3.1",
|
|
2109
|
+
"felixfbecker/language-server-protocol": "^1.5.2",
|
|
2110
|
+
"fidry/cpu-core-counter": "^0.4.1 || ^0.5.1",
|
|
2111
|
+
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
|
|
2112
|
+
"nikic/php-parser": "^4.16",
|
|
2113
|
+
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
|
|
2114
|
+
"sebastian/diff": "^4.0 || ^5.0",
|
|
2115
|
+
"spatie/array-to-xml": "^2.17.0 || ^3.0",
|
|
2116
|
+
"symfony/console": "^4.1.6 || ^5.0 || ^6.0",
|
|
2117
|
+
"symfony/filesystem": "^5.4 || ^6.0"
|
|
2118
|
+
},
|
|
2119
|
+
"conflict": {
|
|
2120
|
+
"nikic/php-parser": "4.17.0"
|
|
2121
|
+
},
|
|
2122
|
+
"provide": {
|
|
2123
|
+
"psalm/psalm": "self.version"
|
|
2124
|
+
},
|
|
2125
|
+
"require-dev": {
|
|
2126
|
+
"amphp/phpunit-util": "^2.0",
|
|
2127
|
+
"bamarni/composer-bin-plugin": "^1.4",
|
|
2128
|
+
"brianium/paratest": "^6.9",
|
|
2129
|
+
"ext-curl": "*",
|
|
2130
|
+
"mockery/mockery": "^1.5",
|
|
2131
|
+
"nunomaduro/mock-final-classes": "^1.1",
|
|
2132
|
+
"php-parallel-lint/php-parallel-lint": "^1.2",
|
|
2133
|
+
"phpstan/phpdoc-parser": "^1.6",
|
|
2134
|
+
"phpunit/phpunit": "^9.6",
|
|
2135
|
+
"psalm/plugin-mockery": "^1.1",
|
|
2136
|
+
"psalm/plugin-phpunit": "^0.18",
|
|
2137
|
+
"slevomat/coding-standard": "^8.4",
|
|
2138
|
+
"squizlabs/php_codesniffer": "^3.6",
|
|
2139
|
+
"symfony/process": "^4.4 || ^5.0 || ^6.0"
|
|
2140
|
+
},
|
|
2141
|
+
"suggest": {
|
|
2142
|
+
"ext-curl": "In order to send data to shepherd",
|
|
2143
|
+
"ext-igbinary": "^2.0.5 is required, used to serialize caching data"
|
|
2144
|
+
},
|
|
2145
|
+
"bin": [
|
|
2146
|
+
"psalm",
|
|
2147
|
+
"psalm-language-server",
|
|
2148
|
+
"psalm-plugin",
|
|
2149
|
+
"psalm-refactor",
|
|
2150
|
+
"psalter"
|
|
2151
|
+
],
|
|
2152
|
+
"type": "library",
|
|
2153
|
+
"extra": {
|
|
2154
|
+
"branch-alias": {
|
|
2155
|
+
"dev-master": "5.x-dev",
|
|
2156
|
+
"dev-4.x": "4.x-dev",
|
|
2157
|
+
"dev-3.x": "3.x-dev",
|
|
2158
|
+
"dev-2.x": "2.x-dev",
|
|
2159
|
+
"dev-1.x": "1.x-dev"
|
|
2160
|
+
}
|
|
2161
|
+
},
|
|
2162
|
+
"autoload": {
|
|
2163
|
+
"psr-4": {
|
|
2164
|
+
"Psalm\\": "src/Psalm/"
|
|
2165
|
+
}
|
|
2166
|
+
},
|
|
2167
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
2168
|
+
"license": [
|
|
2169
|
+
"MIT"
|
|
2170
|
+
],
|
|
2171
|
+
"authors": [
|
|
2172
|
+
{
|
|
2173
|
+
"name": "Matthew Brown"
|
|
2174
|
+
}
|
|
2175
|
+
],
|
|
2176
|
+
"description": "A static analysis tool for finding errors in PHP applications",
|
|
2177
|
+
"keywords": [
|
|
2178
|
+
"code",
|
|
2179
|
+
"inspection",
|
|
2180
|
+
"php",
|
|
2181
|
+
"static analysis"
|
|
2182
|
+
],
|
|
2183
|
+
"support": {
|
|
2184
|
+
"issues": "https://github.com/vimeo/psalm/issues",
|
|
2185
|
+
"source": "https://github.com/vimeo/psalm/tree/5.15.0"
|
|
2186
|
+
},
|
|
2187
|
+
"time": "2023-08-20T23:07:30+00:00"
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"name": "webmozart/assert",
|
|
2191
|
+
"version": "1.11.0",
|
|
2192
|
+
"source": {
|
|
2193
|
+
"type": "git",
|
|
2194
|
+
"url": "https://github.com/webmozarts/assert.git",
|
|
2195
|
+
"reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
|
|
2196
|
+
},
|
|
2197
|
+
"dist": {
|
|
2198
|
+
"type": "zip",
|
|
2199
|
+
"url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
|
|
2200
|
+
"reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
|
|
2201
|
+
"shasum": ""
|
|
2202
|
+
},
|
|
2203
|
+
"require": {
|
|
2204
|
+
"ext-ctype": "*",
|
|
2205
|
+
"php": "^7.2 || ^8.0"
|
|
2206
|
+
},
|
|
2207
|
+
"conflict": {
|
|
2208
|
+
"phpstan/phpstan": "<0.12.20",
|
|
2209
|
+
"vimeo/psalm": "<4.6.1 || 4.6.2"
|
|
2210
|
+
},
|
|
2211
|
+
"require-dev": {
|
|
2212
|
+
"phpunit/phpunit": "^8.5.13"
|
|
2213
|
+
},
|
|
2214
|
+
"type": "library",
|
|
2215
|
+
"extra": {
|
|
2216
|
+
"branch-alias": {
|
|
2217
|
+
"dev-master": "1.10-dev"
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2220
|
+
"autoload": {
|
|
2221
|
+
"psr-4": {
|
|
2222
|
+
"Webmozart\\Assert\\": "src/"
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
2225
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
2226
|
+
"license": [
|
|
2227
|
+
"MIT"
|
|
2228
|
+
],
|
|
2229
|
+
"authors": [
|
|
2230
|
+
{
|
|
2231
|
+
"name": "Bernhard Schussek",
|
|
2232
|
+
"email": "bschussek@gmail.com"
|
|
2233
|
+
}
|
|
2234
|
+
],
|
|
2235
|
+
"description": "Assertions to validate method input/output with nice error messages.",
|
|
2236
|
+
"keywords": [
|
|
2237
|
+
"assert",
|
|
2238
|
+
"check",
|
|
2239
|
+
"validate"
|
|
2240
|
+
],
|
|
2241
|
+
"support": {
|
|
2242
|
+
"issues": "https://github.com/webmozarts/assert/issues",
|
|
2243
|
+
"source": "https://github.com/webmozarts/assert/tree/1.11.0"
|
|
2244
|
+
},
|
|
2245
|
+
"time": "2022-06-03T18:03:27+00:00"
|
|
2246
|
+
}
|
|
2247
|
+
],
|
|
2248
|
+
"packages-dev": [],
|
|
2249
|
+
"aliases": [],
|
|
2250
|
+
"minimum-stability": "stable",
|
|
2251
|
+
"stability-flags": [],
|
|
2252
|
+
"prefer-stable": false,
|
|
2253
|
+
"prefer-lowest": false,
|
|
2254
|
+
"platform": {
|
|
2255
|
+
"php": "^7.4 || ^8.0"
|
|
2256
|
+
},
|
|
2257
|
+
"platform-dev": [],
|
|
2258
|
+
"platform-overrides": {
|
|
2259
|
+
"php": "7.4.32"
|
|
2260
|
+
},
|
|
2261
|
+
"plugin-api-version": "2.3.0"
|
|
2262
|
+
}
|