@averay/codeformat 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1207) hide show
  1. package/.php-cs-fixer.cache +1 -0
  2. package/.php-cs-fixer.php +9 -0
  3. package/.prettierrc.json +3 -1
  4. package/.stylelintignore +2 -0
  5. package/README.md +16 -0
  6. package/bin/codeformat.ts +26 -0
  7. package/bin/tools/eslint.ts +16 -0
  8. package/bin/tools/index.ts +5 -0
  9. package/bin/tools/phpCsFixer.ts +17 -0
  10. package/bin/tools/prettier.ts +20 -0
  11. package/bin/tools/stylelint.ts +16 -0
  12. package/bin/tools/tsc.ts +12 -0
  13. package/bin/utils/Cli.ts +77 -0
  14. package/bin/utils/Output.ts +30 -0
  15. package/bin/utils/ToolRunner.ts +60 -0
  16. package/bin/utils/filesystem.ts +16 -0
  17. package/bin/utils/runners.ts +10 -0
  18. package/bin/utils/types.ts +22 -0
  19. package/composer.json +6 -0
  20. package/composer.lock +3231 -0
  21. package/eslint.config.js +3 -1
  22. package/package.json +6 -4
  23. package/rulesets/eslint/ruleset-typescript.ts +1 -1
  24. package/rulesets/php/ruleset-php-cs-fixer.php +93 -0
  25. package/src/php/PhpCsFixerConfig.php +27 -0
  26. package/vendor/autoload.php +22 -0
  27. package/vendor/bin/php-cs-fixer +119 -0
  28. package/vendor/clue/ndjson-react/.github/FUNDING.yml +2 -0
  29. package/vendor/clue/ndjson-react/CHANGELOG.md +75 -0
  30. package/vendor/clue/ndjson-react/LICENSE +21 -0
  31. package/vendor/clue/ndjson-react/README.md +365 -0
  32. package/vendor/clue/ndjson-react/composer.json +31 -0
  33. package/vendor/clue/ndjson-react/src/Decoder.php +166 -0
  34. package/vendor/clue/ndjson-react/src/Encoder.php +144 -0
  35. package/vendor/composer/ClassLoader.php +579 -0
  36. package/vendor/composer/InstalledVersions.php +396 -0
  37. package/vendor/composer/LICENSE +21 -0
  38. package/vendor/composer/autoload_classmap.php +34 -0
  39. package/vendor/composer/autoload_files.php +18 -0
  40. package/vendor/composer/autoload_namespaces.php +9 -0
  41. package/vendor/composer/autoload_psr4.php +42 -0
  42. package/vendor/composer/autoload_real.php +48 -0
  43. package/vendor/composer/autoload_static.php +247 -0
  44. package/vendor/composer/installed.json +3634 -0
  45. package/vendor/composer/installed.php +367 -0
  46. package/vendor/composer/pcre/LICENSE +19 -0
  47. package/vendor/composer/pcre/README.md +189 -0
  48. package/vendor/composer/pcre/composer.json +54 -0
  49. package/vendor/composer/pcre/extension.neon +22 -0
  50. package/vendor/composer/pcre/src/MatchAllResult.php +46 -0
  51. package/vendor/composer/pcre/src/MatchAllStrictGroupsResult.php +46 -0
  52. package/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php +48 -0
  53. package/vendor/composer/pcre/src/MatchResult.php +39 -0
  54. package/vendor/composer/pcre/src/MatchStrictGroupsResult.php +39 -0
  55. package/vendor/composer/pcre/src/MatchWithOffsetsResult.php +41 -0
  56. package/vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php +142 -0
  57. package/vendor/composer/pcre/src/PHPStan/PregMatchFlags.php +70 -0
  58. package/vendor/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php +65 -0
  59. package/vendor/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php +119 -0
  60. package/vendor/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php +91 -0
  61. package/vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php +112 -0
  62. package/vendor/composer/pcre/src/PcreException.php +55 -0
  63. package/vendor/composer/pcre/src/Preg.php +430 -0
  64. package/vendor/composer/pcre/src/Regex.php +176 -0
  65. package/vendor/composer/pcre/src/ReplaceResult.php +43 -0
  66. package/vendor/composer/pcre/src/UnexpectedNullMatchException.php +20 -0
  67. package/vendor/composer/semver/CHANGELOG.md +229 -0
  68. package/vendor/composer/semver/LICENSE +19 -0
  69. package/vendor/composer/semver/README.md +99 -0
  70. package/vendor/composer/semver/composer.json +59 -0
  71. package/vendor/composer/semver/src/Comparator.php +113 -0
  72. package/vendor/composer/semver/src/CompilingMatcher.php +94 -0
  73. package/vendor/composer/semver/src/Constraint/Bound.php +122 -0
  74. package/vendor/composer/semver/src/Constraint/Constraint.php +435 -0
  75. package/vendor/composer/semver/src/Constraint/ConstraintInterface.php +75 -0
  76. package/vendor/composer/semver/src/Constraint/MatchAllConstraint.php +85 -0
  77. package/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php +83 -0
  78. package/vendor/composer/semver/src/Constraint/MultiConstraint.php +325 -0
  79. package/vendor/composer/semver/src/Interval.php +98 -0
  80. package/vendor/composer/semver/src/Intervals.php +478 -0
  81. package/vendor/composer/semver/src/Semver.php +129 -0
  82. package/vendor/composer/semver/src/VersionParser.php +591 -0
  83. package/vendor/composer/xdebug-handler/CHANGELOG.md +143 -0
  84. package/vendor/composer/xdebug-handler/LICENSE +21 -0
  85. package/vendor/composer/xdebug-handler/README.md +305 -0
  86. package/vendor/composer/xdebug-handler/composer.json +44 -0
  87. package/vendor/composer/xdebug-handler/src/PhpConfig.php +91 -0
  88. package/vendor/composer/xdebug-handler/src/Process.php +119 -0
  89. package/vendor/composer/xdebug-handler/src/Status.php +222 -0
  90. package/vendor/composer/xdebug-handler/src/XdebugHandler.php +722 -0
  91. package/vendor/evenement/evenement/.gitattributes +7 -0
  92. package/vendor/evenement/evenement/LICENSE +19 -0
  93. package/vendor/evenement/evenement/README.md +64 -0
  94. package/vendor/evenement/evenement/composer.json +29 -0
  95. package/vendor/evenement/evenement/src/EventEmitter.php +17 -0
  96. package/vendor/evenement/evenement/src/EventEmitterInterface.php +22 -0
  97. package/vendor/evenement/evenement/src/EventEmitterTrait.php +154 -0
  98. package/vendor/fidry/cpu-core-counter/.envrc +5 -0
  99. package/vendor/fidry/cpu-core-counter/LICENSE.md +16 -0
  100. package/vendor/fidry/cpu-core-counter/README.md +138 -0
  101. package/vendor/fidry/cpu-core-counter/bin/diagnose.php +27 -0
  102. package/vendor/fidry/cpu-core-counter/bin/execute.php +21 -0
  103. package/vendor/fidry/cpu-core-counter/bin/trace.php +32 -0
  104. package/vendor/fidry/cpu-core-counter/composer.json +48 -0
  105. package/vendor/fidry/cpu-core-counter/src/CpuCoreCounter.php +268 -0
  106. package/vendor/fidry/cpu-core-counter/src/Diagnoser.php +101 -0
  107. package/vendor/fidry/cpu-core-counter/src/Executor/ProcOpenExecutor.php +56 -0
  108. package/vendor/fidry/cpu-core-counter/src/Executor/ProcessExecutor.php +22 -0
  109. package/vendor/fidry/cpu-core-counter/src/Finder/CmiCmdletLogicalFinder.php +46 -0
  110. package/vendor/fidry/cpu-core-counter/src/Finder/CmiCmdletPhysicalFinder.php +47 -0
  111. package/vendor/fidry/cpu-core-counter/src/Finder/CpuCoreFinder.php +37 -0
  112. package/vendor/fidry/cpu-core-counter/src/Finder/CpuInfoFinder.php +100 -0
  113. package/vendor/fidry/cpu-core-counter/src/Finder/DummyCpuCoreFinder.php +57 -0
  114. package/vendor/fidry/cpu-core-counter/src/Finder/EnvVariableFinder.php +69 -0
  115. package/vendor/fidry/cpu-core-counter/src/Finder/FinderRegistry.php +91 -0
  116. package/vendor/fidry/cpu-core-counter/src/Finder/HwLogicalFinder.php +33 -0
  117. package/vendor/fidry/cpu-core-counter/src/Finder/HwPhysicalFinder.php +33 -0
  118. package/vendor/fidry/cpu-core-counter/src/Finder/LscpuLogicalFinder.php +52 -0
  119. package/vendor/fidry/cpu-core-counter/src/Finder/LscpuPhysicalFinder.php +66 -0
  120. package/vendor/fidry/cpu-core-counter/src/Finder/NProcFinder.php +59 -0
  121. package/vendor/fidry/cpu-core-counter/src/Finder/NProcessorFinder.php +32 -0
  122. package/vendor/fidry/cpu-core-counter/src/Finder/NullCpuCoreFinder.php +35 -0
  123. package/vendor/fidry/cpu-core-counter/src/Finder/OnlyInPowerShellFinder.php +62 -0
  124. package/vendor/fidry/cpu-core-counter/src/Finder/OnlyOnOSFamilyFinder.php +113 -0
  125. package/vendor/fidry/cpu-core-counter/src/Finder/ProcOpenBasedFinder.php +107 -0
  126. package/vendor/fidry/cpu-core-counter/src/Finder/SkipOnOSFamilyFinder.php +113 -0
  127. package/vendor/fidry/cpu-core-counter/src/Finder/WindowsRegistryLogicalFinder.php +51 -0
  128. package/vendor/fidry/cpu-core-counter/src/Finder/WmicLogicalFinder.php +47 -0
  129. package/vendor/fidry/cpu-core-counter/src/Finder/WmicPhysicalFinder.php +47 -0
  130. package/vendor/fidry/cpu-core-counter/src/Finder/_NProcessorFinder.php +32 -0
  131. package/vendor/fidry/cpu-core-counter/src/NumberOfCpuCoreNotFound.php +26 -0
  132. package/vendor/fidry/cpu-core-counter/src/ParallelisationResult.php +87 -0
  133. package/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +5983 -0
  134. package/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +103 -0
  135. package/vendor/friendsofphp/php-cs-fixer/LICENSE +19 -0
  136. package/vendor/friendsofphp/php-cs-fixer/README.md +88 -0
  137. package/vendor/friendsofphp/php-cs-fixer/UPGRADE-v3.md +162 -0
  138. package/vendor/friendsofphp/php-cs-fixer/ci-integration.sh +8 -0
  139. package/vendor/friendsofphp/php-cs-fixer/composer.json +210 -0
  140. package/vendor/friendsofphp/php-cs-fixer/feature-or-bug.rst +24 -0
  141. package/vendor/friendsofphp/php-cs-fixer/logo.md +3 -0
  142. package/vendor/friendsofphp/php-cs-fixer/logo.png +0 -0
  143. package/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +110 -0
  144. package/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +241 -0
  145. package/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +102 -0
  146. package/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +116 -0
  147. package/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +71 -0
  148. package/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +204 -0
  149. package/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocToTypeDeclarationFixer.php +314 -0
  150. package/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +105 -0
  151. package/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +106 -0
  152. package/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +151 -0
  153. package/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +35 -0
  154. package/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +29 -0
  155. package/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +51 -0
  156. package/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +23 -0
  157. package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +143 -0
  158. package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +184 -0
  159. package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +29 -0
  160. package/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +33 -0
  161. package/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +100 -0
  162. package/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +38 -0
  163. package/vendor/friendsofphp/php-cs-fixer/src/Config.php +267 -0
  164. package/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +162 -0
  165. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +36 -0
  166. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +45 -0
  167. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
  168. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
  169. package/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +212 -0
  170. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/CheckCommand.php +64 -0
  171. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +476 -0
  172. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +46 -0
  173. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DocumentationCommand.php +123 -0
  174. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +397 -0
  175. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +56 -0
  176. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +76 -0
  177. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListFilesCommand.php +91 -0
  178. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListSetsCommand.php +87 -0
  179. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +176 -0
  180. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/WorkerCommand.php +243 -0
  181. package/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +961 -0
  182. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +155 -0
  183. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/OutputContext.php +54 -0
  184. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/DotsOutput.php +124 -0
  185. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/NullOutput.php +29 -0
  186. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/PercentageBarOutput.php +78 -0
  187. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputFactory.php +63 -0
  188. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputInterface.php +27 -0
  189. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputType.php +37 -0
  190. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/CheckstyleReporter.php +71 -0
  191. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/GitlabReporter.php +96 -0
  192. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/JsonReporter.php +65 -0
  193. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/JunitReporter.php +145 -0
  194. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReportSummary.php +103 -0
  195. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReporterFactory.php +90 -0
  196. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReporterInterface.php +30 -0
  197. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/TextReporter.php +104 -0
  198. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/XmlReporter.php +136 -0
  199. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/JsonReporter.php +52 -0
  200. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReportSummary.php +48 -0
  201. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReporterFactory.php +89 -0
  202. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReporterInterface.php +30 -0
  203. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/TextReporter.php +51 -0
  204. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +69 -0
  205. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +26 -0
  206. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +102 -0
  207. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +37 -0
  208. package/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +76 -0
  209. package/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +85 -0
  210. package/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +26 -0
  211. package/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +46 -0
  212. package/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +26 -0
  213. package/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +47 -0
  214. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +319 -0
  215. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +250 -0
  216. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +128 -0
  217. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +65 -0
  218. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +102 -0
  219. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +66 -0
  220. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TypeExpression.php +857 -0
  221. package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/DocLexer.php +171 -0
  222. package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +87 -0
  223. package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +303 -0
  224. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/DocumentationLocator.php +82 -0
  225. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/FixerDocumentGenerator.php +415 -0
  226. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/RstUtils.php +45 -0
  227. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/RuleSetDocumentationGenerator.php +174 -0
  228. package/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +125 -0
  229. package/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +83 -0
  230. package/vendor/friendsofphp/php-cs-fixer/src/Error/SourceExceptionFactory.php +62 -0
  231. package/vendor/friendsofphp/php-cs-fixer/src/ExecutorWithoutErrorHandler.php +58 -0
  232. package/vendor/friendsofphp/php-cs-fixer/src/ExecutorWithoutErrorHandlerException.php +22 -0
  233. package/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +70 -0
  234. package/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +100 -0
  235. package/vendor/friendsofphp/php-cs-fixer/src/Finder.php +35 -0
  236. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractIncrementOperatorFixer.php +58 -0
  237. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractPhpUnitFixer.php +278 -0
  238. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractShortOperatorFixer.php +264 -0
  239. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/ArrayPushFixer.php +207 -0
  240. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +149 -0
  241. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +193 -0
  242. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +180 -0
  243. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/ModernizeStrposFixer.php +338 -0
  244. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +337 -0
  245. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasLanguageConstructCallFixer.php +59 -0
  246. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +142 -0
  247. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +219 -0
  248. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +153 -0
  249. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +240 -0
  250. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +138 -0
  251. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +80 -0
  252. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +52 -0
  253. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +153 -0
  254. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +57 -0
  255. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ReturnToYieldFromFixer.php +105 -0
  256. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +97 -0
  257. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +150 -0
  258. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/YieldFromArrayToYieldsFixer.php +189 -0
  259. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/AttributeEmptyParenthesesFixer.php +136 -0
  260. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/GeneralAttributeRemoveFixer.php +142 -0
  261. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/OrderedAttributesFixer.php +274 -0
  262. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +268 -0
  263. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesPositionFixer.php +449 -0
  264. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/CurlyBracesPositionFixer.php +126 -0
  265. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +80 -0
  266. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NoMultipleStatementsPerLineFixer.php +111 -0
  267. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NoTrailingCommaInSinglelineFixer.php +162 -0
  268. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +191 -0
  269. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NumericLiteralSeparatorFixer.php +232 -0
  270. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/OctalNotationFixer.php +64 -0
  271. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/PsrAutoloadingFixer.php +291 -0
  272. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/SingleLineEmptyBodyFixer.php +83 -0
  273. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ClassReferenceNameCasingFixer.php +168 -0
  274. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ConstantCaseFixer.php +130 -0
  275. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/IntegerLiteralCaseFixer.php +62 -0
  276. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +67 -0
  277. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +107 -0
  278. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +92 -0
  279. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +202 -0
  280. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +89 -0
  281. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +58 -0
  282. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeTypeDeclarationCasingFixer.php +151 -0
  283. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +131 -0
  284. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +66 -0
  285. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +164 -0
  286. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +88 -0
  287. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +88 -0
  288. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +71 -0
  289. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +605 -0
  290. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +572 -0
  291. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +67 -0
  292. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +374 -0
  293. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalPublicMethodForAbstractClassFixer.php +160 -0
  294. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +93 -0
  295. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +141 -0
  296. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +408 -0
  297. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +215 -0
  298. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +610 -0
  299. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +272 -0
  300. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedTraitsFixer.php +226 -0
  301. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedTypesFixer.php +453 -0
  302. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/PhpdocReadonlyClassCommentToKeywordFixer.php +129 -0
  303. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +168 -0
  304. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +200 -0
  305. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfStaticAccessorFixer.php +224 -0
  306. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +241 -0
  307. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +116 -0
  308. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +214 -0
  309. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +146 -0
  310. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +230 -0
  311. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +543 -0
  312. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +89 -0
  313. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +162 -0
  314. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +75 -0
  315. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentSpacingFixer.php +110 -0
  316. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +178 -0
  317. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +50 -0
  318. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerTrait.php +124 -0
  319. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +307 -0
  320. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureBracesFixer.php +256 -0
  321. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureContinuationPositionFixer.php +157 -0
  322. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +98 -0
  323. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/EmptyLoopBodyFixer.php +139 -0
  324. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/EmptyLoopConditionFixer.php +202 -0
  325. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +153 -0
  326. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +244 -0
  327. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +366 -0
  328. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +100 -0
  329. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +51 -0
  330. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededBracesFixer.php +182 -0
  331. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +758 -0
  332. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +106 -0
  333. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +120 -0
  334. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SimplifiedIfReturnFixer.php +138 -0
  335. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +87 -0
  336. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +85 -0
  337. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchContinueToBreakFixer.php +240 -0
  338. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/TrailingCommaInMultilineFixer.php +237 -0
  339. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +758 -0
  340. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +28 -0
  341. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +114 -0
  342. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +132 -0
  343. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +199 -0
  344. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +320 -0
  345. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ExperimentalFixerInterface.php +20 -0
  346. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +79 -0
  347. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +224 -0
  348. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/DateTimeCreateFromFormatCallFixer.php +164 -0
  349. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +123 -0
  350. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +120 -0
  351. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +263 -0
  352. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +60 -0
  353. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +139 -0
  354. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/LambdaNotUsedImportFixer.php +350 -0
  355. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +510 -0
  356. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +420 -0
  357. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +176 -0
  358. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoTrailingCommaInSinglelineFunctionCallFixer.php +59 -0
  359. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +197 -0
  360. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUselessSprintfFixer.php +109 -0
  361. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NullableTypeDeclarationForDefaultNullValueFixer.php +247 -0
  362. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToParamTypeFixer.php +244 -0
  363. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToPropertyTypeFixer.php +296 -0
  364. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +249 -0
  365. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/RegularCallableCallFixer.php +256 -0
  366. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +132 -0
  367. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/SingleLineThrowFixer.php +159 -0
  368. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +130 -0
  369. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/UseArrowFunctionsFixer.php +181 -0
  370. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +256 -0
  371. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +987 -0
  372. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GlobalNamespaceImportFixer.php +726 -0
  373. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GroupImportFixer.php +369 -0
  374. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +90 -0
  375. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnneededImportAliasFixer.php +88 -0
  376. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +455 -0
  377. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +626 -0
  378. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +274 -0
  379. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +152 -0
  380. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Indentation.php +92 -0
  381. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/InternalFixerInterface.php +20 -0
  382. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordFixer.php +100 -0
  383. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +234 -0
  384. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +163 -0
  385. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +179 -0
  386. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +137 -0
  387. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareParenthesesFixer.php +56 -0
  388. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +129 -0
  389. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +186 -0
  390. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +82 -0
  391. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +311 -0
  392. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/GetClassToClassKeywordFixer.php +158 -0
  393. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +169 -0
  394. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +220 -0
  395. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NullableTypeDeclarationFixer.php +348 -0
  396. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SingleSpaceAfterConstructFixer.php +209 -0
  397. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SingleSpaceAroundConstructFixer.php +516 -0
  398. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +133 -0
  399. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +127 -0
  400. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLinesBeforeNamespaceFixer.php +242 -0
  401. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/CleanNamespaceFixer.php +108 -0
  402. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +76 -0
  403. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +95 -0
  404. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +75 -0
  405. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +230 -0
  406. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AssignNullCoalescingToCoalesceEqualFixer.php +71 -0
  407. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +961 -0
  408. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +160 -0
  409. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +179 -0
  410. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +67 -0
  411. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LongToShorthandOperatorFixer.php +140 -0
  412. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +103 -0
  413. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithParenthesesFixer.php +216 -0
  414. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoSpaceAroundDoubleColonFixer.php +73 -0
  415. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoUselessConcatOperatorFixer.php +375 -0
  416. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoUselessNullsafeOperatorFixer.php +73 -0
  417. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +75 -0
  418. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +68 -0
  419. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +62 -0
  420. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/OperatorLinebreakFixer.php +292 -0
  421. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +122 -0
  422. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +60 -0
  423. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +131 -0
  424. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToElvisOperatorFixer.php +217 -0
  425. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +224 -0
  426. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +118 -0
  427. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +92 -0
  428. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/EchoTagSyntaxFixer.php +273 -0
  429. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +123 -0
  430. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +68 -0
  431. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +59 -0
  432. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAssertNewNamesFixer.php +107 -0
  433. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAttributesFixer.php +620 -0
  434. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +210 -0
  435. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderMethodOrderFixer.php +288 -0
  436. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderNameFixer.php +199 -0
  437. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderReturnTypeFixer.php +120 -0
  438. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderStaticFixer.php +156 -0
  439. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +590 -0
  440. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +204 -0
  441. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +289 -0
  442. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +86 -0
  443. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +117 -0
  444. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +238 -0
  445. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +135 -0
  446. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +123 -0
  447. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +235 -0
  448. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +278 -0
  449. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +111 -0
  450. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +107 -0
  451. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +154 -0
  452. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +57 -0
  453. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +416 -0
  454. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +564 -0
  455. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +88 -0
  456. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +178 -0
  457. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +177 -0
  458. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocTagRenameFixer.php +213 -0
  459. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +110 -0
  460. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +84 -0
  461. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +756 -0
  462. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +289 -0
  463. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +506 -0
  464. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +123 -0
  465. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocArrayTypeFixer.php +92 -0
  466. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +141 -0
  467. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagNormalizerFixer.php +121 -0
  468. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocLineSpanFixer.php +173 -0
  469. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocListTypeFixer.php +70 -0
  470. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +71 -0
  471. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +137 -0
  472. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +117 -0
  473. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +70 -0
  474. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +151 -0
  475. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderByValueFixer.php +225 -0
  476. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +223 -0
  477. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocParamOrderFixer.php +273 -0
  478. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +234 -0
  479. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +139 -0
  480. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +333 -0
  481. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +89 -0
  482. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +99 -0
  483. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTagCasingFixer.php +109 -0
  484. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTagTypeFixer.php +214 -0
  485. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +185 -0
  486. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +191 -0
  487. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +115 -0
  488. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +173 -0
  489. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +218 -0
  490. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +81 -0
  491. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +150 -0
  492. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +103 -0
  493. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +527 -0
  494. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +171 -0
  495. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +244 -0
  496. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +186 -0
  497. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +66 -0
  498. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +64 -0
  499. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +148 -0
  500. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +132 -0
  501. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +80 -0
  502. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +168 -0
  503. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +153 -0
  504. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +166 -0
  505. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocClosingMarkerFixer.php +205 -0
  506. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +107 -0
  507. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/MultilineStringToHeredocFixer.php +166 -0
  508. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +75 -0
  509. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoTrailingWhitespaceInStringFixer.php +100 -0
  510. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +96 -0
  511. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +122 -0
  512. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringImplicitBackslashesFixer.php +193 -0
  513. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLengthToEmptyFixer.php +322 -0
  514. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +76 -0
  515. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +197 -0
  516. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +379 -0
  517. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBetweenImportGroupsFixer.php +180 -0
  518. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypeDeclarationFixer.php +72 -0
  519. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +63 -0
  520. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +180 -0
  521. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +139 -0
  522. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +85 -0
  523. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +229 -0
  524. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +496 -0
  525. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +112 -0
  526. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +75 -0
  527. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +104 -0
  528. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +89 -0
  529. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +64 -0
  530. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SpacesInsideParenthesesFixer.php +223 -0
  531. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/StatementIndentationFixer.php +836 -0
  532. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/TypeDeclarationSpacesFixer.php +254 -0
  533. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/TypesSpacesFixer.php +173 -0
  534. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +25 -0
  535. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +75 -0
  536. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +78 -0
  537. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +65 -0
  538. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +74 -0
  539. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +20 -0
  540. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +152 -0
  541. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +30 -0
  542. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +146 -0
  543. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +126 -0
  544. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +43 -0
  545. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionSorter.php +37 -0
  546. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
  547. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +49 -0
  548. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +28 -0
  549. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +56 -0
  550. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +25 -0
  551. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +76 -0
  552. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +37 -0
  553. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +54 -0
  554. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +23 -0
  555. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +76 -0
  556. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +23 -0
  557. package/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +248 -0
  558. package/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +32 -0
  559. package/vendor/friendsofphp/php-cs-fixer/src/Hasher.php +38 -0
  560. package/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +90 -0
  561. package/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +56 -0
  562. package/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +49 -0
  563. package/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +35 -0
  564. package/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +24 -0
  565. package/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +26 -0
  566. package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
  567. package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +46 -0
  568. package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +86 -0
  569. package/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +58 -0
  570. package/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +48 -0
  571. package/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +26 -0
  572. package/vendor/friendsofphp/php-cs-fixer/src/ParallelAwareConfigInterface.php +29 -0
  573. package/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +38 -0
  574. package/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
  575. package/vendor/friendsofphp/php-cs-fixer/src/Preg.php +215 -0
  576. package/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
  577. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/AbstractMigrationSetDescription.php +38 -0
  578. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/AbstractRuleSetDescription.php +35 -0
  579. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/DeprecatedRuleSetDescriptionInterface.php +28 -0
  580. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSet.php +159 -0
  581. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSetDescriptionInterface.php +34 -0
  582. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSetInterface.php +49 -0
  583. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSets.php +72 -0
  584. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/DoctrineAnnotationSet.php +42 -0
  585. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS1x0RiskySet.php +44 -0
  586. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS1x0Set.php +44 -0
  587. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS2x0RiskySet.php +44 -0
  588. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS2x0Set.php +112 -0
  589. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCSRiskySet.php +40 -0
  590. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCSSet.php +40 -0
  591. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERRiskySet.php +52 -0
  592. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERSet.php +47 -0
  593. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP54MigrationSet.php +30 -0
  594. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP56MigrationRiskySet.php +30 -0
  595. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationRiskySet.php +39 -0
  596. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationSet.php +31 -0
  597. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationRiskySet.php +31 -0
  598. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationSet.php +32 -0
  599. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP73MigrationSet.php +34 -0
  600. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationRiskySet.php +33 -0
  601. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationSet.php +33 -0
  602. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationRiskySet.php +40 -0
  603. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationSet.php +32 -0
  604. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP81MigrationSet.php +31 -0
  605. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationRiskySet.php +31 -0
  606. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationSet.php +31 -0
  607. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP83MigrationSet.php +30 -0
  608. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP84MigrationSet.php +31 -0
  609. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit100MigrationRiskySet.php +31 -0
  610. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit30MigrationRiskySet.php +33 -0
  611. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit32MigrationRiskySet.php +34 -0
  612. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit35MigrationRiskySet.php +34 -0
  613. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit43MigrationRiskySet.php +34 -0
  614. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit48MigrationRiskySet.php +34 -0
  615. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit50MigrationRiskySet.php +34 -0
  616. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit52MigrationRiskySet.php +34 -0
  617. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit54MigrationRiskySet.php +34 -0
  618. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit55MigrationRiskySet.php +34 -0
  619. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit56MigrationRiskySet.php +37 -0
  620. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit57MigrationRiskySet.php +34 -0
  621. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit60MigrationRiskySet.php +34 -0
  622. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit75MigrationRiskySet.php +34 -0
  623. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit84MigrationRiskySet.php +35 -0
  624. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit91MigrationRiskySet.php +31 -0
  625. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12RiskySet.php +36 -0
  626. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12Set.php +123 -0
  627. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR1Set.php +36 -0
  628. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR2Set.php +104 -0
  629. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PhpCsFixerRiskySet.php +67 -0
  630. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PhpCsFixerSet.php +134 -0
  631. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/SymfonyRiskySet.php +78 -0
  632. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/SymfonySet.php +241 -0
  633. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Event/AnalysisStarted.php +54 -0
  634. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Event/FileProcessed.php +75 -0
  635. package/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingFileIterator.php +76 -0
  636. package/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +108 -0
  637. package/vendor/friendsofphp/php-cs-fixer/src/Runner/LintingFileIterator.php +66 -0
  638. package/vendor/friendsofphp/php-cs-fixer/src/Runner/LintingResultAwareFileIteratorInterface.php +29 -0
  639. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelAction.php +35 -0
  640. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelConfig.php +67 -0
  641. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelConfigFactory.php +61 -0
  642. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelisationException.php +30 -0
  643. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/Process.php +189 -0
  644. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessFactory.php +111 -0
  645. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessIdentifier.php +55 -0
  646. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessPool.php +99 -0
  647. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/WorkerException.php +66 -0
  648. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +587 -0
  649. package/vendor/friendsofphp/php-cs-fixer/src/Runner/RunnerConfig.php +64 -0
  650. package/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +173 -0
  651. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +40 -0
  652. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTypeTransformer.php +89 -0
  653. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/AlternativeSyntaxAnalyzer.php +121 -0
  654. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/AbstractControlCaseStructuresAnalysis.php +51 -0
  655. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +81 -0
  656. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/AttributeAnalysis.php +76 -0
  657. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/CaseAnalysis.php +45 -0
  658. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/DataProviderAnalysis.php +68 -0
  659. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/DefaultAnalysis.php +43 -0
  660. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/EnumAnalysis.php +46 -0
  661. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/MatchAnalysis.php +37 -0
  662. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +98 -0
  663. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +189 -0
  664. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +33 -0
  665. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/SwitchAnalysis.php +54 -0
  666. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +116 -0
  667. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +161 -0
  668. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/AttributeAnalyzer.php +211 -0
  669. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/BlocksAnalyzer.php +59 -0
  670. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ClassyAnalyzer.php +87 -0
  671. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +370 -0
  672. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ControlCaseStructuresAnalyzer.php +312 -0
  673. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/DataProviderAnalyzer.php +115 -0
  674. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FullyQualifiedNameAnalyzer.php +103 -0
  675. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +281 -0
  676. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/GotoLabelAnalyzer.php +40 -0
  677. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +216 -0
  678. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +116 -0
  679. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/RangeAnalyzer.php +90 -0
  680. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ReferenceAnalyzer.php +49 -0
  681. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/SwitchAnalyzer.php +71 -0
  682. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/WhitespacesAnalyzer.php +52 -0
  683. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +112 -0
  684. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Processor/ImportProcessor.php +103 -0
  685. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +541 -0
  686. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1584 -0
  687. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +894 -0
  688. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +54 -0
  689. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/AttributeTransformer.php +67 -0
  690. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +80 -0
  691. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceTransformer.php +349 -0
  692. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +57 -0
  693. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ConstructorPromotionTransformer.php +71 -0
  694. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/DisjunctiveNormalFormTypeParenthesisTransformer.php +65 -0
  695. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/FirstClassCallableTransformer.php +49 -0
  696. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +72 -0
  697. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NameQualifiedTransformer.php +67 -0
  698. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamedArgumentTransformer.php +73 -0
  699. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +53 -0
  700. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +83 -0
  701. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +47 -0
  702. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +187 -0
  703. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +57 -0
  704. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +83 -0
  705. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeIntersectionTransformer.php +55 -0
  706. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +102 -0
  707. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +64 -0
  708. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +68 -0
  709. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +109 -0
  710. package/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +120 -0
  711. package/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +38 -0
  712. package/vendor/friendsofphp/php-cs-fixer/src/Utils.php +250 -0
  713. package/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +63 -0
  714. package/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +55 -0
  715. package/vendor/psr/container/LICENSE +21 -0
  716. package/vendor/psr/container/README.md +13 -0
  717. package/vendor/psr/container/composer.json +27 -0
  718. package/vendor/psr/container/src/ContainerExceptionInterface.php +12 -0
  719. package/vendor/psr/container/src/ContainerInterface.php +36 -0
  720. package/vendor/psr/container/src/NotFoundExceptionInterface.php +10 -0
  721. package/vendor/psr/event-dispatcher/.editorconfig +15 -0
  722. package/vendor/psr/event-dispatcher/LICENSE +21 -0
  723. package/vendor/psr/event-dispatcher/README.md +6 -0
  724. package/vendor/psr/event-dispatcher/composer.json +26 -0
  725. package/vendor/psr/event-dispatcher/src/EventDispatcherInterface.php +21 -0
  726. package/vendor/psr/event-dispatcher/src/ListenerProviderInterface.php +19 -0
  727. package/vendor/psr/event-dispatcher/src/StoppableEventInterface.php +26 -0
  728. package/vendor/psr/log/LICENSE +19 -0
  729. package/vendor/psr/log/README.md +58 -0
  730. package/vendor/psr/log/composer.json +26 -0
  731. package/vendor/psr/log/src/AbstractLogger.php +15 -0
  732. package/vendor/psr/log/src/InvalidArgumentException.php +7 -0
  733. package/vendor/psr/log/src/LogLevel.php +18 -0
  734. package/vendor/psr/log/src/LoggerAwareInterface.php +14 -0
  735. package/vendor/psr/log/src/LoggerAwareTrait.php +22 -0
  736. package/vendor/psr/log/src/LoggerInterface.php +98 -0
  737. package/vendor/psr/log/src/LoggerTrait.php +98 -0
  738. package/vendor/psr/log/src/NullLogger.php +26 -0
  739. package/vendor/react/cache/CHANGELOG.md +96 -0
  740. package/vendor/react/cache/LICENSE +21 -0
  741. package/vendor/react/cache/README.md +367 -0
  742. package/vendor/react/cache/composer.json +45 -0
  743. package/vendor/react/cache/src/ArrayCache.php +181 -0
  744. package/vendor/react/cache/src/CacheInterface.php +194 -0
  745. package/vendor/react/child-process/CHANGELOG.md +176 -0
  746. package/vendor/react/child-process/LICENSE +21 -0
  747. package/vendor/react/child-process/README.md +619 -0
  748. package/vendor/react/child-process/composer.json +49 -0
  749. package/vendor/react/child-process/src/Process.php +585 -0
  750. package/vendor/react/dns/CHANGELOG.md +452 -0
  751. package/vendor/react/dns/LICENSE +21 -0
  752. package/vendor/react/dns/README.md +453 -0
  753. package/vendor/react/dns/composer.json +49 -0
  754. package/vendor/react/dns/src/BadServerException.php +7 -0
  755. package/vendor/react/dns/src/Config/Config.php +137 -0
  756. package/vendor/react/dns/src/Config/HostsFile.php +153 -0
  757. package/vendor/react/dns/src/Model/Message.php +230 -0
  758. package/vendor/react/dns/src/Model/Record.php +153 -0
  759. package/vendor/react/dns/src/Protocol/BinaryDumper.php +199 -0
  760. package/vendor/react/dns/src/Protocol/Parser.php +356 -0
  761. package/vendor/react/dns/src/Query/CachingExecutor.php +88 -0
  762. package/vendor/react/dns/src/Query/CancellationException.php +7 -0
  763. package/vendor/react/dns/src/Query/CoopExecutor.php +91 -0
  764. package/vendor/react/dns/src/Query/ExecutorInterface.php +43 -0
  765. package/vendor/react/dns/src/Query/FallbackExecutor.php +49 -0
  766. package/vendor/react/dns/src/Query/HostsFileExecutor.php +89 -0
  767. package/vendor/react/dns/src/Query/Query.php +69 -0
  768. package/vendor/react/dns/src/Query/RetryExecutor.php +85 -0
  769. package/vendor/react/dns/src/Query/SelectiveTransportExecutor.php +85 -0
  770. package/vendor/react/dns/src/Query/TcpTransportExecutor.php +382 -0
  771. package/vendor/react/dns/src/Query/TimeoutException.php +7 -0
  772. package/vendor/react/dns/src/Query/TimeoutExecutor.php +78 -0
  773. package/vendor/react/dns/src/Query/UdpTransportExecutor.php +221 -0
  774. package/vendor/react/dns/src/RecordNotFoundException.php +7 -0
  775. package/vendor/react/dns/src/Resolver/Factory.php +226 -0
  776. package/vendor/react/dns/src/Resolver/Resolver.php +147 -0
  777. package/vendor/react/dns/src/Resolver/ResolverInterface.php +94 -0
  778. package/vendor/react/event-loop/CHANGELOG.md +468 -0
  779. package/vendor/react/event-loop/LICENSE +21 -0
  780. package/vendor/react/event-loop/README.md +930 -0
  781. package/vendor/react/event-loop/composer.json +47 -0
  782. package/vendor/react/event-loop/src/ExtEvLoop.php +253 -0
  783. package/vendor/react/event-loop/src/ExtEventLoop.php +275 -0
  784. package/vendor/react/event-loop/src/ExtLibevLoop.php +201 -0
  785. package/vendor/react/event-loop/src/ExtLibeventLoop.php +285 -0
  786. package/vendor/react/event-loop/src/ExtUvLoop.php +342 -0
  787. package/vendor/react/event-loop/src/Factory.php +75 -0
  788. package/vendor/react/event-loop/src/Loop.php +266 -0
  789. package/vendor/react/event-loop/src/LoopInterface.php +472 -0
  790. package/vendor/react/event-loop/src/SignalsHandler.php +63 -0
  791. package/vendor/react/event-loop/src/StreamSelectLoop.php +330 -0
  792. package/vendor/react/event-loop/src/Tick/FutureTickQueue.php +60 -0
  793. package/vendor/react/event-loop/src/Timer/Timer.php +55 -0
  794. package/vendor/react/event-loop/src/Timer/Timers.php +113 -0
  795. package/vendor/react/event-loop/src/TimerInterface.php +27 -0
  796. package/vendor/react/promise/CHANGELOG.md +156 -0
  797. package/vendor/react/promise/LICENSE +24 -0
  798. package/vendor/react/promise/README.md +722 -0
  799. package/vendor/react/promise/composer.json +57 -0
  800. package/vendor/react/promise/src/Deferred.php +52 -0
  801. package/vendor/react/promise/src/Exception/CompositeException.php +32 -0
  802. package/vendor/react/promise/src/Exception/LengthException.php +7 -0
  803. package/vendor/react/promise/src/Internal/CancellationQueue.php +64 -0
  804. package/vendor/react/promise/src/Internal/FulfilledPromise.php +89 -0
  805. package/vendor/react/promise/src/Internal/RejectedPromise.php +128 -0
  806. package/vendor/react/promise/src/Promise.php +303 -0
  807. package/vendor/react/promise/src/PromiseInterface.php +152 -0
  808. package/vendor/react/promise/src/functions.php +345 -0
  809. package/vendor/react/promise/src/functions_include.php +5 -0
  810. package/vendor/react/socket/CHANGELOG.md +785 -0
  811. package/vendor/react/socket/LICENSE +21 -0
  812. package/vendor/react/socket/README.md +1564 -0
  813. package/vendor/react/socket/composer.json +52 -0
  814. package/vendor/react/socket/src/Connection.php +183 -0
  815. package/vendor/react/socket/src/ConnectionInterface.php +119 -0
  816. package/vendor/react/socket/src/Connector.php +236 -0
  817. package/vendor/react/socket/src/ConnectorInterface.php +59 -0
  818. package/vendor/react/socket/src/DnsConnector.php +117 -0
  819. package/vendor/react/socket/src/FdServer.php +222 -0
  820. package/vendor/react/socket/src/FixedUriConnector.php +41 -0
  821. package/vendor/react/socket/src/HappyEyeBallsConnectionBuilder.php +334 -0
  822. package/vendor/react/socket/src/HappyEyeBallsConnector.php +80 -0
  823. package/vendor/react/socket/src/LimitingServer.php +203 -0
  824. package/vendor/react/socket/src/SecureConnector.php +132 -0
  825. package/vendor/react/socket/src/SecureServer.php +210 -0
  826. package/vendor/react/socket/src/Server.php +118 -0
  827. package/vendor/react/socket/src/ServerInterface.php +151 -0
  828. package/vendor/react/socket/src/SocketServer.php +215 -0
  829. package/vendor/react/socket/src/StreamEncryption.php +158 -0
  830. package/vendor/react/socket/src/TcpConnector.php +173 -0
  831. package/vendor/react/socket/src/TcpServer.php +262 -0
  832. package/vendor/react/socket/src/TimeoutConnector.php +79 -0
  833. package/vendor/react/socket/src/UnixConnector.php +58 -0
  834. package/vendor/react/socket/src/UnixServer.php +162 -0
  835. package/vendor/react/stream/CHANGELOG.md +460 -0
  836. package/vendor/react/stream/LICENSE +21 -0
  837. package/vendor/react/stream/README.md +1249 -0
  838. package/vendor/react/stream/composer.json +47 -0
  839. package/vendor/react/stream/src/CompositeStream.php +83 -0
  840. package/vendor/react/stream/src/DuplexResourceStream.php +240 -0
  841. package/vendor/react/stream/src/DuplexStreamInterface.php +39 -0
  842. package/vendor/react/stream/src/ReadableResourceStream.php +188 -0
  843. package/vendor/react/stream/src/ReadableStreamInterface.php +362 -0
  844. package/vendor/react/stream/src/ThroughStream.php +195 -0
  845. package/vendor/react/stream/src/Util.php +75 -0
  846. package/vendor/react/stream/src/WritableResourceStream.php +178 -0
  847. package/vendor/react/stream/src/WritableStreamInterface.php +347 -0
  848. package/vendor/sebastian/diff/ChangeLog.md +179 -0
  849. package/vendor/sebastian/diff/LICENSE +29 -0
  850. package/vendor/sebastian/diff/README.md +151 -0
  851. package/vendor/sebastian/diff/SECURITY.md +30 -0
  852. package/vendor/sebastian/diff/composer.json +51 -0
  853. package/vendor/sebastian/diff/src/Chunk.php +83 -0
  854. package/vendor/sebastian/diff/src/Diff.php +84 -0
  855. package/vendor/sebastian/diff/src/Differ.php +247 -0
  856. package/vendor/sebastian/diff/src/Exception/ConfigurationException.php +32 -0
  857. package/vendor/sebastian/diff/src/Exception/Exception.php +16 -0
  858. package/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php +14 -0
  859. package/vendor/sebastian/diff/src/Line.php +50 -0
  860. package/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php +18 -0
  861. package/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php +96 -0
  862. package/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php +54 -0
  863. package/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php +74 -0
  864. package/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php +19 -0
  865. package/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php +331 -0
  866. package/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php +261 -0
  867. package/vendor/sebastian/diff/src/Parser.php +116 -0
  868. package/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php +81 -0
  869. package/vendor/symfony/console/Application.php +1328 -0
  870. package/vendor/symfony/console/Attribute/Argument.php +110 -0
  871. package/vendor/symfony/console/Attribute/AsCommand.php +49 -0
  872. package/vendor/symfony/console/Attribute/Option.php +181 -0
  873. package/vendor/symfony/console/CHANGELOG.md +299 -0
  874. package/vendor/symfony/console/CI/GithubActionReporter.php +97 -0
  875. package/vendor/symfony/console/Color.php +133 -0
  876. package/vendor/symfony/console/Command/Command.php +700 -0
  877. package/vendor/symfony/console/Command/CompleteCommand.php +212 -0
  878. package/vendor/symfony/console/Command/DumpCompletionCommand.php +151 -0
  879. package/vendor/symfony/console/Command/HelpCommand.php +76 -0
  880. package/vendor/symfony/console/Command/InvokableCommand.php +157 -0
  881. package/vendor/symfony/console/Command/LazyCommand.php +206 -0
  882. package/vendor/symfony/console/Command/ListCommand.php +72 -0
  883. package/vendor/symfony/console/Command/LockableTrait.php +85 -0
  884. package/vendor/symfony/console/Command/SignalableCommandInterface.php +32 -0
  885. package/vendor/symfony/console/Command/TraceableCommand.php +365 -0
  886. package/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +38 -0
  887. package/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +52 -0
  888. package/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +52 -0
  889. package/vendor/symfony/console/Completion/CompletionInput.php +248 -0
  890. package/vendor/symfony/console/Completion/CompletionSuggestions.php +97 -0
  891. package/vendor/symfony/console/Completion/Output/BashCompletionOutput.php +33 -0
  892. package/vendor/symfony/console/Completion/Output/CompletionOutputInterface.php +25 -0
  893. package/vendor/symfony/console/Completion/Output/FishCompletionOutput.php +36 -0
  894. package/vendor/symfony/console/Completion/Output/ZshCompletionOutput.php +36 -0
  895. package/vendor/symfony/console/Completion/Suggestion.php +41 -0
  896. package/vendor/symfony/console/ConsoleEvents.php +72 -0
  897. package/vendor/symfony/console/Cursor.php +204 -0
  898. package/vendor/symfony/console/DataCollector/CommandDataCollector.php +238 -0
  899. package/vendor/symfony/console/Debug/CliRequest.php +70 -0
  900. package/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +155 -0
  901. package/vendor/symfony/console/Descriptor/ApplicationDescription.php +136 -0
  902. package/vendor/symfony/console/Descriptor/Descriptor.php +74 -0
  903. package/vendor/symfony/console/Descriptor/DescriptorInterface.php +24 -0
  904. package/vendor/symfony/console/Descriptor/JsonDescriptor.php +166 -0
  905. package/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +173 -0
  906. package/vendor/symfony/console/Descriptor/ReStructuredTextDescriptor.php +273 -0
  907. package/vendor/symfony/console/Descriptor/TextDescriptor.php +317 -0
  908. package/vendor/symfony/console/Descriptor/XmlDescriptor.php +230 -0
  909. package/vendor/symfony/console/Event/ConsoleAlarmEvent.php +47 -0
  910. package/vendor/symfony/console/Event/ConsoleCommandEvent.php +54 -0
  911. package/vendor/symfony/console/Event/ConsoleErrorEvent.php +58 -0
  912. package/vendor/symfony/console/Event/ConsoleEvent.php +56 -0
  913. package/vendor/symfony/console/Event/ConsoleSignalEvent.php +56 -0
  914. package/vendor/symfony/console/Event/ConsoleTerminateEvent.php +50 -0
  915. package/vendor/symfony/console/EventListener/ErrorListener.php +89 -0
  916. package/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
  917. package/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
  918. package/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
  919. package/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
  920. package/vendor/symfony/console/Exception/LogicException.php +19 -0
  921. package/vendor/symfony/console/Exception/MissingInputException.php +21 -0
  922. package/vendor/symfony/console/Exception/NamespaceNotFoundException.php +21 -0
  923. package/vendor/symfony/console/Exception/RunCommandFailedException.php +29 -0
  924. package/vendor/symfony/console/Exception/RuntimeException.php +19 -0
  925. package/vendor/symfony/console/Formatter/NullOutputFormatter.php +51 -0
  926. package/vendor/symfony/console/Formatter/NullOutputFormatterStyle.php +48 -0
  927. package/vendor/symfony/console/Formatter/OutputFormatter.php +267 -0
  928. package/vendor/symfony/console/Formatter/OutputFormatterInterface.php +52 -0
  929. package/vendor/symfony/console/Formatter/OutputFormatterStyle.php +89 -0
  930. package/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +50 -0
  931. package/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +103 -0
  932. package/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php +25 -0
  933. package/vendor/symfony/console/Helper/DebugFormatterHelper.php +98 -0
  934. package/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
  935. package/vendor/symfony/console/Helper/Dumper.php +53 -0
  936. package/vendor/symfony/console/Helper/FormatterHelper.php +81 -0
  937. package/vendor/symfony/console/Helper/Helper.php +161 -0
  938. package/vendor/symfony/console/Helper/HelperInterface.php +35 -0
  939. package/vendor/symfony/console/Helper/HelperSet.php +74 -0
  940. package/vendor/symfony/console/Helper/InputAwareHelper.php +30 -0
  941. package/vendor/symfony/console/Helper/OutputWrapper.php +76 -0
  942. package/vendor/symfony/console/Helper/ProcessHelper.php +137 -0
  943. package/vendor/symfony/console/Helper/ProgressBar.php +654 -0
  944. package/vendor/symfony/console/Helper/ProgressIndicator.php +242 -0
  945. package/vendor/symfony/console/Helper/QuestionHelper.php +589 -0
  946. package/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +103 -0
  947. package/vendor/symfony/console/Helper/Table.php +934 -0
  948. package/vendor/symfony/console/Helper/TableCell.php +71 -0
  949. package/vendor/symfony/console/Helper/TableCellStyle.php +84 -0
  950. package/vendor/symfony/console/Helper/TableRows.php +28 -0
  951. package/vendor/symfony/console/Helper/TableSeparator.php +25 -0
  952. package/vendor/symfony/console/Helper/TableStyle.php +375 -0
  953. package/vendor/symfony/console/Helper/TreeHelper.php +111 -0
  954. package/vendor/symfony/console/Helper/TreeNode.php +105 -0
  955. package/vendor/symfony/console/Helper/TreeStyle.php +78 -0
  956. package/vendor/symfony/console/Input/ArgvInput.php +402 -0
  957. package/vendor/symfony/console/Input/ArrayInput.php +191 -0
  958. package/vendor/symfony/console/Input/Input.php +174 -0
  959. package/vendor/symfony/console/Input/InputArgument.php +160 -0
  960. package/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
  961. package/vendor/symfony/console/Input/InputDefinition.php +402 -0
  962. package/vendor/symfony/console/Input/InputInterface.php +138 -0
  963. package/vendor/symfony/console/Input/InputOption.php +262 -0
  964. package/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
  965. package/vendor/symfony/console/Input/StringInput.php +85 -0
  966. package/vendor/symfony/console/LICENSE +19 -0
  967. package/vendor/symfony/console/Logger/ConsoleLogger.php +120 -0
  968. package/vendor/symfony/console/Messenger/RunCommandContext.php +25 -0
  969. package/vendor/symfony/console/Messenger/RunCommandMessage.php +36 -0
  970. package/vendor/symfony/console/Messenger/RunCommandMessageHandler.php +49 -0
  971. package/vendor/symfony/console/Output/AnsiColorMode.php +106 -0
  972. package/vendor/symfony/console/Output/BufferedOutput.php +40 -0
  973. package/vendor/symfony/console/Output/ConsoleOutput.php +153 -0
  974. package/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
  975. package/vendor/symfony/console/Output/ConsoleSectionOutput.php +237 -0
  976. package/vendor/symfony/console/Output/NullOutput.php +94 -0
  977. package/vendor/symfony/console/Output/Output.php +144 -0
  978. package/vendor/symfony/console/Output/OutputInterface.php +103 -0
  979. package/vendor/symfony/console/Output/StreamOutput.php +127 -0
  980. package/vendor/symfony/console/Output/TrimmedBufferOutput.php +58 -0
  981. package/vendor/symfony/console/Question/ChoiceQuestion.php +178 -0
  982. package/vendor/symfony/console/Question/ConfirmationQuestion.php +57 -0
  983. package/vendor/symfony/console/Question/Question.php +280 -0
  984. package/vendor/symfony/console/README.md +27 -0
  985. package/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
  986. package/vendor/symfony/console/Resources/completion.bash +94 -0
  987. package/vendor/symfony/console/Resources/completion.fish +25 -0
  988. package/vendor/symfony/console/Resources/completion.zsh +82 -0
  989. package/vendor/symfony/console/SignalRegistry/SignalMap.php +36 -0
  990. package/vendor/symfony/console/SignalRegistry/SignalRegistry.php +65 -0
  991. package/vendor/symfony/console/SingleCommandApplication.php +72 -0
  992. package/vendor/symfony/console/Style/OutputStyle.php +115 -0
  993. package/vendor/symfony/console/Style/StyleInterface.php +110 -0
  994. package/vendor/symfony/console/Style/SymfonyStyle.php +476 -0
  995. package/vendor/symfony/console/Terminal.php +227 -0
  996. package/vendor/symfony/console/Tester/ApplicationTester.php +83 -0
  997. package/vendor/symfony/console/Tester/CommandCompletionTester.php +54 -0
  998. package/vendor/symfony/console/Tester/CommandTester.php +74 -0
  999. package/vendor/symfony/console/Tester/Constraint/CommandIsSuccessful.php +43 -0
  1000. package/vendor/symfony/console/Tester/TesterTrait.php +178 -0
  1001. package/vendor/symfony/console/composer.json +55 -0
  1002. package/vendor/symfony/deprecation-contracts/CHANGELOG.md +5 -0
  1003. package/vendor/symfony/deprecation-contracts/LICENSE +19 -0
  1004. package/vendor/symfony/deprecation-contracts/README.md +26 -0
  1005. package/vendor/symfony/deprecation-contracts/composer.json +35 -0
  1006. package/vendor/symfony/deprecation-contracts/function.php +27 -0
  1007. package/vendor/symfony/event-dispatcher/Attribute/AsEventListener.php +35 -0
  1008. package/vendor/symfony/event-dispatcher/CHANGELOG.md +96 -0
  1009. package/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +355 -0
  1010. package/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +143 -0
  1011. package/vendor/symfony/event-dispatcher/DependencyInjection/AddEventAliasesPass.php +38 -0
  1012. package/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +213 -0
  1013. package/vendor/symfony/event-dispatcher/EventDispatcher.php +256 -0
  1014. package/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +66 -0
  1015. package/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +49 -0
  1016. package/vendor/symfony/event-dispatcher/GenericEvent.php +155 -0
  1017. package/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +65 -0
  1018. package/vendor/symfony/event-dispatcher/LICENSE +19 -0
  1019. package/vendor/symfony/event-dispatcher/README.md +15 -0
  1020. package/vendor/symfony/event-dispatcher/composer.json +47 -0
  1021. package/vendor/symfony/event-dispatcher-contracts/CHANGELOG.md +5 -0
  1022. package/vendor/symfony/event-dispatcher-contracts/Event.php +51 -0
  1023. package/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php +33 -0
  1024. package/vendor/symfony/event-dispatcher-contracts/LICENSE +19 -0
  1025. package/vendor/symfony/event-dispatcher-contracts/README.md +9 -0
  1026. package/vendor/symfony/event-dispatcher-contracts/composer.json +35 -0
  1027. package/vendor/symfony/filesystem/CHANGELOG.md +92 -0
  1028. package/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
  1029. package/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
  1030. package/vendor/symfony/filesystem/Exception/IOException.php +36 -0
  1031. package/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +25 -0
  1032. package/vendor/symfony/filesystem/Exception/InvalidArgumentException.php +19 -0
  1033. package/vendor/symfony/filesystem/Exception/RuntimeException.php +19 -0
  1034. package/vendor/symfony/filesystem/Filesystem.php +773 -0
  1035. package/vendor/symfony/filesystem/LICENSE +19 -0
  1036. package/vendor/symfony/filesystem/Path.php +816 -0
  1037. package/vendor/symfony/filesystem/README.md +13 -0
  1038. package/vendor/symfony/filesystem/composer.json +33 -0
  1039. package/vendor/symfony/finder/CHANGELOG.md +103 -0
  1040. package/vendor/symfony/finder/Comparator/Comparator.php +62 -0
  1041. package/vendor/symfony/finder/Comparator/DateComparator.php +50 -0
  1042. package/vendor/symfony/finder/Comparator/NumberComparator.php +78 -0
  1043. package/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
  1044. package/vendor/symfony/finder/Exception/DirectoryNotFoundException.php +19 -0
  1045. package/vendor/symfony/finder/Finder.php +852 -0
  1046. package/vendor/symfony/finder/Gitignore.php +91 -0
  1047. package/vendor/symfony/finder/Glob.php +109 -0
  1048. package/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
  1049. package/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
  1050. package/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +48 -0
  1051. package/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +110 -0
  1052. package/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +51 -0
  1053. package/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
  1054. package/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +45 -0
  1055. package/vendor/symfony/finder/Iterator/LazyIterator.php +32 -0
  1056. package/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +107 -0
  1057. package/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
  1058. package/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +134 -0
  1059. package/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
  1060. package/vendor/symfony/finder/Iterator/SortableIterator.php +103 -0
  1061. package/vendor/symfony/finder/Iterator/VcsIgnoredFilterIterator.php +173 -0
  1062. package/vendor/symfony/finder/LICENSE +19 -0
  1063. package/vendor/symfony/finder/README.md +14 -0
  1064. package/vendor/symfony/finder/SplFileInfo.php +80 -0
  1065. package/vendor/symfony/finder/composer.json +31 -0
  1066. package/vendor/symfony/options-resolver/CHANGELOG.md +103 -0
  1067. package/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +114 -0
  1068. package/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
  1069. package/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
  1070. package/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
  1071. package/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
  1072. package/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
  1073. package/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
  1074. package/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
  1075. package/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
  1076. package/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
  1077. package/vendor/symfony/options-resolver/LICENSE +19 -0
  1078. package/vendor/symfony/options-resolver/OptionConfigurator.php +160 -0
  1079. package/vendor/symfony/options-resolver/Options.php +22 -0
  1080. package/vendor/symfony/options-resolver/OptionsResolver.php +1396 -0
  1081. package/vendor/symfony/options-resolver/README.md +15 -0
  1082. package/vendor/symfony/options-resolver/composer.json +29 -0
  1083. package/vendor/symfony/polyfill-ctype/Ctype.php +232 -0
  1084. package/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  1085. package/vendor/symfony/polyfill-ctype/README.md +12 -0
  1086. package/vendor/symfony/polyfill-ctype/bootstrap.php +50 -0
  1087. package/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -0
  1088. package/vendor/symfony/polyfill-ctype/composer.json +38 -0
  1089. package/vendor/symfony/polyfill-intl-grapheme/Grapheme.php +247 -0
  1090. package/vendor/symfony/polyfill-intl-grapheme/LICENSE +19 -0
  1091. package/vendor/symfony/polyfill-intl-grapheme/README.md +31 -0
  1092. package/vendor/symfony/polyfill-intl-grapheme/bootstrap.php +58 -0
  1093. package/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php +50 -0
  1094. package/vendor/symfony/polyfill-intl-grapheme/composer.json +35 -0
  1095. package/vendor/symfony/polyfill-intl-normalizer/LICENSE +19 -0
  1096. package/vendor/symfony/polyfill-intl-normalizer/Normalizer.php +310 -0
  1097. package/vendor/symfony/polyfill-intl-normalizer/README.md +14 -0
  1098. package/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php +17 -0
  1099. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php +945 -0
  1100. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php +2065 -0
  1101. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php +876 -0
  1102. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php +3695 -0
  1103. package/vendor/symfony/polyfill-intl-normalizer/bootstrap.php +23 -0
  1104. package/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php +19 -0
  1105. package/vendor/symfony/polyfill-intl-normalizer/composer.json +36 -0
  1106. package/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  1107. package/vendor/symfony/polyfill-mbstring/Mbstring.php +1045 -0
  1108. package/vendor/symfony/polyfill-mbstring/README.md +13 -0
  1109. package/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -0
  1110. package/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
  1111. package/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  1112. package/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -0
  1113. package/vendor/symfony/polyfill-mbstring/bootstrap.php +172 -0
  1114. package/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -0
  1115. package/vendor/symfony/polyfill-mbstring/composer.json +39 -0
  1116. package/vendor/symfony/polyfill-php80/LICENSE +19 -0
  1117. package/vendor/symfony/polyfill-php80/Php80.php +115 -0
  1118. package/vendor/symfony/polyfill-php80/PhpToken.php +106 -0
  1119. package/vendor/symfony/polyfill-php80/README.md +25 -0
  1120. package/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -0
  1121. package/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -0
  1122. package/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -0
  1123. package/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -0
  1124. package/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -0
  1125. package/vendor/symfony/polyfill-php80/bootstrap.php +42 -0
  1126. package/vendor/symfony/polyfill-php80/composer.json +37 -0
  1127. package/vendor/symfony/polyfill-php81/LICENSE +19 -0
  1128. package/vendor/symfony/polyfill-php81/Php81.php +37 -0
  1129. package/vendor/symfony/polyfill-php81/README.md +18 -0
  1130. package/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php +51 -0
  1131. package/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php +20 -0
  1132. package/vendor/symfony/polyfill-php81/bootstrap.php +28 -0
  1133. package/vendor/symfony/polyfill-php81/composer.json +33 -0
  1134. package/vendor/symfony/process/CHANGELOG.md +134 -0
  1135. package/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
  1136. package/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
  1137. package/vendor/symfony/process/Exception/LogicException.php +21 -0
  1138. package/vendor/symfony/process/Exception/ProcessFailedException.php +53 -0
  1139. package/vendor/symfony/process/Exception/ProcessSignaledException.php +38 -0
  1140. package/vendor/symfony/process/Exception/ProcessStartFailedException.php +43 -0
  1141. package/vendor/symfony/process/Exception/ProcessTimedOutException.php +60 -0
  1142. package/vendor/symfony/process/Exception/RunProcessFailedException.php +25 -0
  1143. package/vendor/symfony/process/Exception/RuntimeException.php +21 -0
  1144. package/vendor/symfony/process/ExecutableFinder.php +103 -0
  1145. package/vendor/symfony/process/InputStream.php +91 -0
  1146. package/vendor/symfony/process/LICENSE +19 -0
  1147. package/vendor/symfony/process/Messenger/RunProcessContext.php +33 -0
  1148. package/vendor/symfony/process/Messenger/RunProcessMessage.php +47 -0
  1149. package/vendor/symfony/process/Messenger/RunProcessMessageHandler.php +36 -0
  1150. package/vendor/symfony/process/PhpExecutableFinder.php +98 -0
  1151. package/vendor/symfony/process/PhpProcess.php +66 -0
  1152. package/vendor/symfony/process/PhpSubprocess.php +164 -0
  1153. package/vendor/symfony/process/Pipes/AbstractPipes.php +176 -0
  1154. package/vendor/symfony/process/Pipes/PipesInterface.php +61 -0
  1155. package/vendor/symfony/process/Pipes/UnixPipes.php +144 -0
  1156. package/vendor/symfony/process/Pipes/WindowsPipes.php +185 -0
  1157. package/vendor/symfony/process/Process.php +1662 -0
  1158. package/vendor/symfony/process/ProcessUtils.php +64 -0
  1159. package/vendor/symfony/process/README.md +13 -0
  1160. package/vendor/symfony/process/composer.json +28 -0
  1161. package/vendor/symfony/service-contracts/Attribute/Required.php +25 -0
  1162. package/vendor/symfony/service-contracts/Attribute/SubscribedService.php +47 -0
  1163. package/vendor/symfony/service-contracts/CHANGELOG.md +5 -0
  1164. package/vendor/symfony/service-contracts/LICENSE +19 -0
  1165. package/vendor/symfony/service-contracts/README.md +9 -0
  1166. package/vendor/symfony/service-contracts/ResetInterface.php +33 -0
  1167. package/vendor/symfony/service-contracts/ServiceCollectionInterface.php +26 -0
  1168. package/vendor/symfony/service-contracts/ServiceLocatorTrait.php +114 -0
  1169. package/vendor/symfony/service-contracts/ServiceMethodsSubscriberTrait.php +80 -0
  1170. package/vendor/symfony/service-contracts/ServiceProviderInterface.php +45 -0
  1171. package/vendor/symfony/service-contracts/ServiceSubscriberInterface.php +62 -0
  1172. package/vendor/symfony/service-contracts/ServiceSubscriberTrait.php +84 -0
  1173. package/vendor/symfony/service-contracts/Test/ServiceLocatorTest.php +23 -0
  1174. package/vendor/symfony/service-contracts/Test/ServiceLocatorTestCase.php +97 -0
  1175. package/vendor/symfony/service-contracts/composer.json +42 -0
  1176. package/vendor/symfony/stopwatch/CHANGELOG.md +30 -0
  1177. package/vendor/symfony/stopwatch/LICENSE +19 -0
  1178. package/vendor/symfony/stopwatch/README.md +42 -0
  1179. package/vendor/symfony/stopwatch/Section.php +155 -0
  1180. package/vendor/symfony/stopwatch/Stopwatch.php +163 -0
  1181. package/vendor/symfony/stopwatch/StopwatchEvent.php +238 -0
  1182. package/vendor/symfony/stopwatch/StopwatchPeriod.php +73 -0
  1183. package/vendor/symfony/stopwatch/composer.json +29 -0
  1184. package/vendor/symfony/string/AbstractString.php +723 -0
  1185. package/vendor/symfony/string/AbstractUnicodeString.php +670 -0
  1186. package/vendor/symfony/string/ByteString.php +490 -0
  1187. package/vendor/symfony/string/CHANGELOG.md +56 -0
  1188. package/vendor/symfony/string/CodePointString.php +260 -0
  1189. package/vendor/symfony/string/Exception/ExceptionInterface.php +16 -0
  1190. package/vendor/symfony/string/Exception/InvalidArgumentException.php +16 -0
  1191. package/vendor/symfony/string/Exception/RuntimeException.php +16 -0
  1192. package/vendor/symfony/string/Inflector/EnglishInflector.php +589 -0
  1193. package/vendor/symfony/string/Inflector/FrenchInflector.php +151 -0
  1194. package/vendor/symfony/string/Inflector/InflectorInterface.php +33 -0
  1195. package/vendor/symfony/string/Inflector/SpanishInflector.php +126 -0
  1196. package/vendor/symfony/string/LICENSE +19 -0
  1197. package/vendor/symfony/string/LazyString.php +145 -0
  1198. package/vendor/symfony/string/README.md +14 -0
  1199. package/vendor/symfony/string/Resources/data/wcswidth_table_wide.php +1182 -0
  1200. package/vendor/symfony/string/Resources/data/wcswidth_table_zero.php +1466 -0
  1201. package/vendor/symfony/string/Resources/functions.php +38 -0
  1202. package/vendor/symfony/string/Slugger/AsciiSlugger.php +207 -0
  1203. package/vendor/symfony/string/Slugger/SluggerInterface.php +27 -0
  1204. package/vendor/symfony/string/TruncateMode.php +42 -0
  1205. package/vendor/symfony/string/UnicodeString.php +382 -0
  1206. package/vendor/symfony/string/composer.json +44 -0
  1207. package/bin-codeformat.ts +0 -179
@@ -0,0 +1,1045 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Polyfill\Mbstring;
13
+
14
+ /**
15
+ * Partial mbstring implementation in PHP, iconv based, UTF-8 centric.
16
+ *
17
+ * Implemented:
18
+ * - mb_chr - Returns a specific character from its Unicode code point
19
+ * - mb_convert_encoding - Convert character encoding
20
+ * - mb_convert_variables - Convert character code in variable(s)
21
+ * - mb_decode_mimeheader - Decode string in MIME header field
22
+ * - mb_encode_mimeheader - Encode string for MIME header XXX NATIVE IMPLEMENTATION IS REALLY BUGGED
23
+ * - mb_decode_numericentity - Decode HTML numeric string reference to character
24
+ * - mb_encode_numericentity - Encode character to HTML numeric string reference
25
+ * - mb_convert_case - Perform case folding on a string
26
+ * - mb_detect_encoding - Detect character encoding
27
+ * - mb_get_info - Get internal settings of mbstring
28
+ * - mb_http_input - Detect HTTP input character encoding
29
+ * - mb_http_output - Set/Get HTTP output character encoding
30
+ * - mb_internal_encoding - Set/Get internal character encoding
31
+ * - mb_list_encodings - Returns an array of all supported encodings
32
+ * - mb_ord - Returns the Unicode code point of a character
33
+ * - mb_output_handler - Callback function converts character encoding in output buffer
34
+ * - mb_scrub - Replaces ill-formed byte sequences with substitute characters
35
+ * - mb_strlen - Get string length
36
+ * - mb_strpos - Find position of first occurrence of string in a string
37
+ * - mb_strrpos - Find position of last occurrence of a string in a string
38
+ * - mb_str_split - Convert a string to an array
39
+ * - mb_strtolower - Make a string lowercase
40
+ * - mb_strtoupper - Make a string uppercase
41
+ * - mb_substitute_character - Set/Get substitution character
42
+ * - mb_substr - Get part of string
43
+ * - mb_stripos - Finds position of first occurrence of a string within another, case insensitive
44
+ * - mb_stristr - Finds first occurrence of a string within another, case insensitive
45
+ * - mb_strrchr - Finds the last occurrence of a character in a string within another
46
+ * - mb_strrichr - Finds the last occurrence of a character in a string within another, case insensitive
47
+ * - mb_strripos - Finds position of last occurrence of a string within another, case insensitive
48
+ * - mb_strstr - Finds first occurrence of a string within another
49
+ * - mb_strwidth - Return width of string
50
+ * - mb_substr_count - Count the number of substring occurrences
51
+ * - mb_ucfirst - Make a string's first character uppercase
52
+ * - mb_lcfirst - Make a string's first character lowercase
53
+ * - mb_trim - Strip whitespace (or other characters) from the beginning and end of a string
54
+ * - mb_ltrim - Strip whitespace (or other characters) from the beginning of a string
55
+ * - mb_rtrim - Strip whitespace (or other characters) from the end of a string
56
+ *
57
+ * Not implemented:
58
+ * - mb_convert_kana - Convert "kana" one from another ("zen-kaku", "han-kaku" and more)
59
+ * - mb_ereg_* - Regular expression with multibyte support
60
+ * - mb_parse_str - Parse GET/POST/COOKIE data and set global variable
61
+ * - mb_preferred_mime_name - Get MIME charset string
62
+ * - mb_regex_encoding - Returns current encoding for multibyte regex as string
63
+ * - mb_regex_set_options - Set/Get the default options for mbregex functions
64
+ * - mb_send_mail - Send encoded mail
65
+ * - mb_split - Split multibyte string using regular expression
66
+ * - mb_strcut - Get part of string
67
+ * - mb_strimwidth - Get truncated string with specified width
68
+ *
69
+ * @author Nicolas Grekas <p@tchwork.com>
70
+ *
71
+ * @internal
72
+ */
73
+ final class Mbstring
74
+ {
75
+ public const MB_CASE_FOLD = \PHP_INT_MAX;
76
+
77
+ private const SIMPLE_CASE_FOLD = [
78
+ ['µ', 'ſ', "\xCD\x85", 'ς', "\xCF\x90", "\xCF\x91", "\xCF\x95", "\xCF\x96", "\xCF\xB0", "\xCF\xB1", "\xCF\xB5", "\xE1\xBA\x9B", "\xE1\xBE\xBE"],
79
+ ['μ', 's', 'ι', 'σ', 'β', 'θ', 'φ', 'π', 'κ', 'ρ', 'ε', "\xE1\xB9\xA1", 'ι'],
80
+ ];
81
+
82
+ private static $encodingList = ['ASCII', 'UTF-8'];
83
+ private static $language = 'neutral';
84
+ private static $internalEncoding = 'UTF-8';
85
+
86
+ public static function mb_convert_encoding($s, $toEncoding, $fromEncoding = null)
87
+ {
88
+ if (\is_array($s)) {
89
+ $r = [];
90
+ foreach ($s as $str) {
91
+ $r[] = self::mb_convert_encoding($str, $toEncoding, $fromEncoding);
92
+ }
93
+
94
+ return $r;
95
+ }
96
+
97
+ if (\is_array($fromEncoding) || (null !== $fromEncoding && false !== strpos($fromEncoding, ','))) {
98
+ $fromEncoding = self::mb_detect_encoding($s, $fromEncoding);
99
+ } else {
100
+ $fromEncoding = self::getEncoding($fromEncoding);
101
+ }
102
+
103
+ $toEncoding = self::getEncoding($toEncoding);
104
+
105
+ if ('BASE64' === $fromEncoding) {
106
+ $s = base64_decode($s);
107
+ $fromEncoding = $toEncoding;
108
+ }
109
+
110
+ if ('BASE64' === $toEncoding) {
111
+ return base64_encode($s);
112
+ }
113
+
114
+ if ('HTML-ENTITIES' === $toEncoding || 'HTML' === $toEncoding) {
115
+ if ('HTML-ENTITIES' === $fromEncoding || 'HTML' === $fromEncoding) {
116
+ $fromEncoding = 'Windows-1252';
117
+ }
118
+ if ('UTF-8' !== $fromEncoding) {
119
+ $s = iconv($fromEncoding, 'UTF-8//IGNORE', $s);
120
+ }
121
+
122
+ return preg_replace_callback('/[\x80-\xFF]+/', [__CLASS__, 'html_encoding_callback'], $s);
123
+ }
124
+
125
+ if ('HTML-ENTITIES' === $fromEncoding) {
126
+ $s = html_entity_decode($s, \ENT_COMPAT, 'UTF-8');
127
+ $fromEncoding = 'UTF-8';
128
+ }
129
+
130
+ return iconv($fromEncoding, $toEncoding.'//IGNORE', $s);
131
+ }
132
+
133
+ public static function mb_convert_variables($toEncoding, $fromEncoding, &...$vars)
134
+ {
135
+ $ok = true;
136
+ array_walk_recursive($vars, function (&$v) use (&$ok, $toEncoding, $fromEncoding) {
137
+ if (false === $v = self::mb_convert_encoding($v, $toEncoding, $fromEncoding)) {
138
+ $ok = false;
139
+ }
140
+ });
141
+
142
+ return $ok ? $fromEncoding : false;
143
+ }
144
+
145
+ public static function mb_decode_mimeheader($s)
146
+ {
147
+ return iconv_mime_decode($s, 2, self::$internalEncoding);
148
+ }
149
+
150
+ public static function mb_encode_mimeheader($s, $charset = null, $transferEncoding = null, $linefeed = null, $indent = null)
151
+ {
152
+ trigger_error('mb_encode_mimeheader() is bugged. Please use iconv_mime_encode() instead', \E_USER_WARNING);
153
+ }
154
+
155
+ public static function mb_decode_numericentity($s, $convmap, $encoding = null)
156
+ {
157
+ if (null !== $s && !\is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) {
158
+ trigger_error('mb_decode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING);
159
+
160
+ return null;
161
+ }
162
+
163
+ if (!\is_array($convmap) || (80000 > \PHP_VERSION_ID && !$convmap)) {
164
+ return false;
165
+ }
166
+
167
+ if (null !== $encoding && !\is_scalar($encoding)) {
168
+ trigger_error('mb_decode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING);
169
+
170
+ return ''; // Instead of null (cf. mb_encode_numericentity).
171
+ }
172
+
173
+ $s = (string) $s;
174
+ if ('' === $s) {
175
+ return '';
176
+ }
177
+
178
+ $encoding = self::getEncoding($encoding);
179
+
180
+ if ('UTF-8' === $encoding) {
181
+ $encoding = null;
182
+ if (!preg_match('//u', $s)) {
183
+ $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s);
184
+ }
185
+ } else {
186
+ $s = iconv($encoding, 'UTF-8//IGNORE', $s);
187
+ }
188
+
189
+ $cnt = floor(\count($convmap) / 4) * 4;
190
+
191
+ for ($i = 0; $i < $cnt; $i += 4) {
192
+ // collector_decode_htmlnumericentity ignores $convmap[$i + 3]
193
+ $convmap[$i] += $convmap[$i + 2];
194
+ $convmap[$i + 1] += $convmap[$i + 2];
195
+ }
196
+
197
+ $s = preg_replace_callback('/&#(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function (array $m) use ($cnt, $convmap) {
198
+ $c = isset($m[2]) ? (int) hexdec($m[2]) : $m[1];
199
+ for ($i = 0; $i < $cnt; $i += 4) {
200
+ if ($c >= $convmap[$i] && $c <= $convmap[$i + 1]) {
201
+ return self::mb_chr($c - $convmap[$i + 2]);
202
+ }
203
+ }
204
+
205
+ return $m[0];
206
+ }, $s);
207
+
208
+ if (null === $encoding) {
209
+ return $s;
210
+ }
211
+
212
+ return iconv('UTF-8', $encoding.'//IGNORE', $s);
213
+ }
214
+
215
+ public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = false)
216
+ {
217
+ if (null !== $s && !\is_scalar($s) && !(\is_object($s) && method_exists($s, '__toString'))) {
218
+ trigger_error('mb_encode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', \E_USER_WARNING);
219
+
220
+ return null;
221
+ }
222
+
223
+ if (!\is_array($convmap) || (80000 > \PHP_VERSION_ID && !$convmap)) {
224
+ return false;
225
+ }
226
+
227
+ if (null !== $encoding && !\is_scalar($encoding)) {
228
+ trigger_error('mb_encode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', \E_USER_WARNING);
229
+
230
+ return null; // Instead of '' (cf. mb_decode_numericentity).
231
+ }
232
+
233
+ if (null !== $is_hex && !\is_scalar($is_hex)) {
234
+ trigger_error('mb_encode_numericentity() expects parameter 4 to be boolean, '.\gettype($s).' given', \E_USER_WARNING);
235
+
236
+ return null;
237
+ }
238
+
239
+ $s = (string) $s;
240
+ if ('' === $s) {
241
+ return '';
242
+ }
243
+
244
+ $encoding = self::getEncoding($encoding);
245
+
246
+ if ('UTF-8' === $encoding) {
247
+ $encoding = null;
248
+ if (!preg_match('//u', $s)) {
249
+ $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s);
250
+ }
251
+ } else {
252
+ $s = iconv($encoding, 'UTF-8//IGNORE', $s);
253
+ }
254
+
255
+ static $ulenMask = ["\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4];
256
+
257
+ $cnt = floor(\count($convmap) / 4) * 4;
258
+ $i = 0;
259
+ $len = \strlen($s);
260
+ $result = '';
261
+
262
+ while ($i < $len) {
263
+ $ulen = $s[$i] < "\x80" ? 1 : $ulenMask[$s[$i] & "\xF0"];
264
+ $uchr = substr($s, $i, $ulen);
265
+ $i += $ulen;
266
+ $c = self::mb_ord($uchr);
267
+
268
+ for ($j = 0; $j < $cnt; $j += 4) {
269
+ if ($c >= $convmap[$j] && $c <= $convmap[$j + 1]) {
270
+ $cOffset = ($c + $convmap[$j + 2]) & $convmap[$j + 3];
271
+ $result .= $is_hex ? sprintf('&#x%X;', $cOffset) : '&#'.$cOffset.';';
272
+ continue 2;
273
+ }
274
+ }
275
+ $result .= $uchr;
276
+ }
277
+
278
+ if (null === $encoding) {
279
+ return $result;
280
+ }
281
+
282
+ return iconv('UTF-8', $encoding.'//IGNORE', $result);
283
+ }
284
+
285
+ public static function mb_convert_case($s, $mode, $encoding = null)
286
+ {
287
+ $s = (string) $s;
288
+ if ('' === $s) {
289
+ return '';
290
+ }
291
+
292
+ $encoding = self::getEncoding($encoding);
293
+
294
+ if ('UTF-8' === $encoding) {
295
+ $encoding = null;
296
+ if (!preg_match('//u', $s)) {
297
+ $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s);
298
+ }
299
+ } else {
300
+ $s = iconv($encoding, 'UTF-8//IGNORE', $s);
301
+ }
302
+
303
+ if (\MB_CASE_TITLE == $mode) {
304
+ static $titleRegexp = null;
305
+ if (null === $titleRegexp) {
306
+ $titleRegexp = self::getData('titleCaseRegexp');
307
+ }
308
+ $s = preg_replace_callback($titleRegexp, [__CLASS__, 'title_case'], $s);
309
+ } else {
310
+ if (\MB_CASE_UPPER == $mode) {
311
+ static $upper = null;
312
+ if (null === $upper) {
313
+ $upper = self::getData('upperCase');
314
+ }
315
+ $map = $upper;
316
+ } else {
317
+ if (self::MB_CASE_FOLD === $mode) {
318
+ static $caseFolding = null;
319
+ if (null === $caseFolding) {
320
+ $caseFolding = self::getData('caseFolding');
321
+ }
322
+ $s = strtr($s, $caseFolding);
323
+ }
324
+
325
+ static $lower = null;
326
+ if (null === $lower) {
327
+ $lower = self::getData('lowerCase');
328
+ }
329
+ $map = $lower;
330
+ }
331
+
332
+ static $ulenMask = ["\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4];
333
+
334
+ $i = 0;
335
+ $len = \strlen($s);
336
+
337
+ while ($i < $len) {
338
+ $ulen = $s[$i] < "\x80" ? 1 : $ulenMask[$s[$i] & "\xF0"];
339
+ $uchr = substr($s, $i, $ulen);
340
+ $i += $ulen;
341
+
342
+ if (isset($map[$uchr])) {
343
+ $uchr = $map[$uchr];
344
+ $nlen = \strlen($uchr);
345
+
346
+ if ($nlen == $ulen) {
347
+ $nlen = $i;
348
+ do {
349
+ $s[--$nlen] = $uchr[--$ulen];
350
+ } while ($ulen);
351
+ } else {
352
+ $s = substr_replace($s, $uchr, $i - $ulen, $ulen);
353
+ $len += $nlen - $ulen;
354
+ $i += $nlen - $ulen;
355
+ }
356
+ }
357
+ }
358
+ }
359
+
360
+ if (null === $encoding) {
361
+ return $s;
362
+ }
363
+
364
+ return iconv('UTF-8', $encoding.'//IGNORE', $s);
365
+ }
366
+
367
+ public static function mb_internal_encoding($encoding = null)
368
+ {
369
+ if (null === $encoding) {
370
+ return self::$internalEncoding;
371
+ }
372
+
373
+ $normalizedEncoding = self::getEncoding($encoding);
374
+
375
+ if ('UTF-8' === $normalizedEncoding || false !== @iconv($normalizedEncoding, $normalizedEncoding, ' ')) {
376
+ self::$internalEncoding = $normalizedEncoding;
377
+
378
+ return true;
379
+ }
380
+
381
+ if (80000 > \PHP_VERSION_ID) {
382
+ return false;
383
+ }
384
+
385
+ throw new \ValueError(sprintf('Argument #1 ($encoding) must be a valid encoding, "%s" given', $encoding));
386
+ }
387
+
388
+ public static function mb_language($lang = null)
389
+ {
390
+ if (null === $lang) {
391
+ return self::$language;
392
+ }
393
+
394
+ switch ($normalizedLang = strtolower($lang)) {
395
+ case 'uni':
396
+ case 'neutral':
397
+ self::$language = $normalizedLang;
398
+
399
+ return true;
400
+ }
401
+
402
+ if (80000 > \PHP_VERSION_ID) {
403
+ return false;
404
+ }
405
+
406
+ throw new \ValueError(sprintf('Argument #1 ($language) must be a valid language, "%s" given', $lang));
407
+ }
408
+
409
+ public static function mb_list_encodings()
410
+ {
411
+ return ['UTF-8'];
412
+ }
413
+
414
+ public static function mb_encoding_aliases($encoding)
415
+ {
416
+ switch (strtoupper($encoding)) {
417
+ case 'UTF8':
418
+ case 'UTF-8':
419
+ return ['utf8'];
420
+ }
421
+
422
+ return false;
423
+ }
424
+
425
+ public static function mb_check_encoding($var = null, $encoding = null)
426
+ {
427
+ if (null === $encoding) {
428
+ if (null === $var) {
429
+ return false;
430
+ }
431
+ $encoding = self::$internalEncoding;
432
+ }
433
+
434
+ if (!\is_array($var)) {
435
+ return self::mb_detect_encoding($var, [$encoding]) || false !== @iconv($encoding, $encoding, $var);
436
+ }
437
+
438
+ foreach ($var as $key => $value) {
439
+ if (!self::mb_check_encoding($key, $encoding)) {
440
+ return false;
441
+ }
442
+ if (!self::mb_check_encoding($value, $encoding)) {
443
+ return false;
444
+ }
445
+ }
446
+
447
+ return true;
448
+ }
449
+
450
+ public static function mb_detect_encoding($str, $encodingList = null, $strict = false)
451
+ {
452
+ if (null === $encodingList) {
453
+ $encodingList = self::$encodingList;
454
+ } else {
455
+ if (!\is_array($encodingList)) {
456
+ $encodingList = array_map('trim', explode(',', $encodingList));
457
+ }
458
+ $encodingList = array_map('strtoupper', $encodingList);
459
+ }
460
+
461
+ foreach ($encodingList as $enc) {
462
+ switch ($enc) {
463
+ case 'ASCII':
464
+ if (!preg_match('/[\x80-\xFF]/', $str)) {
465
+ return $enc;
466
+ }
467
+ break;
468
+
469
+ case 'UTF8':
470
+ case 'UTF-8':
471
+ if (preg_match('//u', $str)) {
472
+ return 'UTF-8';
473
+ }
474
+ break;
475
+
476
+ default:
477
+ if (0 === strncmp($enc, 'ISO-8859-', 9)) {
478
+ return $enc;
479
+ }
480
+ }
481
+ }
482
+
483
+ return false;
484
+ }
485
+
486
+ public static function mb_detect_order($encodingList = null)
487
+ {
488
+ if (null === $encodingList) {
489
+ return self::$encodingList;
490
+ }
491
+
492
+ if (!\is_array($encodingList)) {
493
+ $encodingList = array_map('trim', explode(',', $encodingList));
494
+ }
495
+ $encodingList = array_map('strtoupper', $encodingList);
496
+
497
+ foreach ($encodingList as $enc) {
498
+ switch ($enc) {
499
+ default:
500
+ if (strncmp($enc, 'ISO-8859-', 9)) {
501
+ return false;
502
+ }
503
+ // no break
504
+ case 'ASCII':
505
+ case 'UTF8':
506
+ case 'UTF-8':
507
+ }
508
+ }
509
+
510
+ self::$encodingList = $encodingList;
511
+
512
+ return true;
513
+ }
514
+
515
+ public static function mb_strlen($s, $encoding = null)
516
+ {
517
+ $encoding = self::getEncoding($encoding);
518
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
519
+ return \strlen($s);
520
+ }
521
+
522
+ return @iconv_strlen($s, $encoding);
523
+ }
524
+
525
+ public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null)
526
+ {
527
+ $encoding = self::getEncoding($encoding);
528
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
529
+ return strpos($haystack, $needle, $offset);
530
+ }
531
+
532
+ $needle = (string) $needle;
533
+ if ('' === $needle) {
534
+ if (80000 > \PHP_VERSION_ID) {
535
+ trigger_error(__METHOD__.': Empty delimiter', \E_USER_WARNING);
536
+
537
+ return false;
538
+ }
539
+
540
+ return 0;
541
+ }
542
+
543
+ return iconv_strpos($haystack, $needle, $offset, $encoding);
544
+ }
545
+
546
+ public static function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null)
547
+ {
548
+ $encoding = self::getEncoding($encoding);
549
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
550
+ return strrpos($haystack, $needle, $offset);
551
+ }
552
+
553
+ if ($offset != (int) $offset) {
554
+ $offset = 0;
555
+ } elseif ($offset = (int) $offset) {
556
+ if ($offset < 0) {
557
+ if (0 > $offset += self::mb_strlen($needle)) {
558
+ $haystack = self::mb_substr($haystack, 0, $offset, $encoding);
559
+ }
560
+ $offset = 0;
561
+ } else {
562
+ $haystack = self::mb_substr($haystack, $offset, 2147483647, $encoding);
563
+ }
564
+ }
565
+
566
+ $pos = '' !== $needle || 80000 > \PHP_VERSION_ID
567
+ ? iconv_strrpos($haystack, $needle, $encoding)
568
+ : self::mb_strlen($haystack, $encoding);
569
+
570
+ return false !== $pos ? $offset + $pos : false;
571
+ }
572
+
573
+ public static function mb_str_split($string, $split_length = 1, $encoding = null)
574
+ {
575
+ if (null !== $string && !\is_scalar($string) && !(\is_object($string) && method_exists($string, '__toString'))) {
576
+ trigger_error('mb_str_split() expects parameter 1 to be string, '.\gettype($string).' given', \E_USER_WARNING);
577
+
578
+ return null;
579
+ }
580
+
581
+ if (1 > $split_length = (int) $split_length) {
582
+ if (80000 > \PHP_VERSION_ID) {
583
+ trigger_error('The length of each segment must be greater than zero', \E_USER_WARNING);
584
+
585
+ return false;
586
+ }
587
+
588
+ throw new \ValueError('Argument #2 ($length) must be greater than 0');
589
+ }
590
+
591
+ if (null === $encoding) {
592
+ $encoding = mb_internal_encoding();
593
+ }
594
+
595
+ if ('UTF-8' === $encoding = self::getEncoding($encoding)) {
596
+ $rx = '/(';
597
+ while (65535 < $split_length) {
598
+ $rx .= '.{65535}';
599
+ $split_length -= 65535;
600
+ }
601
+ $rx .= '.{'.$split_length.'})/us';
602
+
603
+ return preg_split($rx, $string, -1, \PREG_SPLIT_DELIM_CAPTURE | \PREG_SPLIT_NO_EMPTY);
604
+ }
605
+
606
+ $result = [];
607
+ $length = mb_strlen($string, $encoding);
608
+
609
+ for ($i = 0; $i < $length; $i += $split_length) {
610
+ $result[] = mb_substr($string, $i, $split_length, $encoding);
611
+ }
612
+
613
+ return $result;
614
+ }
615
+
616
+ public static function mb_strtolower($s, $encoding = null)
617
+ {
618
+ return self::mb_convert_case($s, \MB_CASE_LOWER, $encoding);
619
+ }
620
+
621
+ public static function mb_strtoupper($s, $encoding = null)
622
+ {
623
+ return self::mb_convert_case($s, \MB_CASE_UPPER, $encoding);
624
+ }
625
+
626
+ public static function mb_substitute_character($c = null)
627
+ {
628
+ if (null === $c) {
629
+ return 'none';
630
+ }
631
+ if (0 === strcasecmp($c, 'none')) {
632
+ return true;
633
+ }
634
+ if (80000 > \PHP_VERSION_ID) {
635
+ return false;
636
+ }
637
+ if (\is_int($c) || 'long' === $c || 'entity' === $c) {
638
+ return false;
639
+ }
640
+
641
+ throw new \ValueError('Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepoint');
642
+ }
643
+
644
+ public static function mb_substr($s, $start, $length = null, $encoding = null)
645
+ {
646
+ $encoding = self::getEncoding($encoding);
647
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
648
+ return (string) substr($s, $start, null === $length ? 2147483647 : $length);
649
+ }
650
+
651
+ if ($start < 0) {
652
+ $start = iconv_strlen($s, $encoding) + $start;
653
+ if ($start < 0) {
654
+ $start = 0;
655
+ }
656
+ }
657
+
658
+ if (null === $length) {
659
+ $length = 2147483647;
660
+ } elseif ($length < 0) {
661
+ $length = iconv_strlen($s, $encoding) + $length - $start;
662
+ if ($length < 0) {
663
+ return '';
664
+ }
665
+ }
666
+
667
+ return (string) iconv_substr($s, $start, $length, $encoding);
668
+ }
669
+
670
+ public static function mb_stripos($haystack, $needle, $offset = 0, $encoding = null)
671
+ {
672
+ [$haystack, $needle] = str_replace(self::SIMPLE_CASE_FOLD[0], self::SIMPLE_CASE_FOLD[1], [
673
+ self::mb_convert_case($haystack, \MB_CASE_LOWER, $encoding),
674
+ self::mb_convert_case($needle, \MB_CASE_LOWER, $encoding),
675
+ ]);
676
+
677
+ return self::mb_strpos($haystack, $needle, $offset, $encoding);
678
+ }
679
+
680
+ public static function mb_stristr($haystack, $needle, $part = false, $encoding = null)
681
+ {
682
+ $pos = self::mb_stripos($haystack, $needle, 0, $encoding);
683
+
684
+ return self::getSubpart($pos, $part, $haystack, $encoding);
685
+ }
686
+
687
+ public static function mb_strrchr($haystack, $needle, $part = false, $encoding = null)
688
+ {
689
+ $encoding = self::getEncoding($encoding);
690
+ if ('CP850' === $encoding || 'ASCII' === $encoding) {
691
+ $pos = strrpos($haystack, $needle);
692
+ } else {
693
+ $needle = self::mb_substr($needle, 0, 1, $encoding);
694
+ $pos = iconv_strrpos($haystack, $needle, $encoding);
695
+ }
696
+
697
+ return self::getSubpart($pos, $part, $haystack, $encoding);
698
+ }
699
+
700
+ public static function mb_strrichr($haystack, $needle, $part = false, $encoding = null)
701
+ {
702
+ $needle = self::mb_substr($needle, 0, 1, $encoding);
703
+ $pos = self::mb_strripos($haystack, $needle, $encoding);
704
+
705
+ return self::getSubpart($pos, $part, $haystack, $encoding);
706
+ }
707
+
708
+ public static function mb_strripos($haystack, $needle, $offset = 0, $encoding = null)
709
+ {
710
+ $haystack = self::mb_convert_case($haystack, \MB_CASE_LOWER, $encoding);
711
+ $needle = self::mb_convert_case($needle, \MB_CASE_LOWER, $encoding);
712
+
713
+ $haystack = str_replace(self::SIMPLE_CASE_FOLD[0], self::SIMPLE_CASE_FOLD[1], $haystack);
714
+ $needle = str_replace(self::SIMPLE_CASE_FOLD[0], self::SIMPLE_CASE_FOLD[1], $needle);
715
+
716
+ return self::mb_strrpos($haystack, $needle, $offset, $encoding);
717
+ }
718
+
719
+ public static function mb_strstr($haystack, $needle, $part = false, $encoding = null)
720
+ {
721
+ $pos = strpos($haystack, $needle);
722
+ if (false === $pos) {
723
+ return false;
724
+ }
725
+ if ($part) {
726
+ return substr($haystack, 0, $pos);
727
+ }
728
+
729
+ return substr($haystack, $pos);
730
+ }
731
+
732
+ public static function mb_get_info($type = 'all')
733
+ {
734
+ $info = [
735
+ 'internal_encoding' => self::$internalEncoding,
736
+ 'http_output' => 'pass',
737
+ 'http_output_conv_mimetypes' => '^(text/|application/xhtml\+xml)',
738
+ 'func_overload' => 0,
739
+ 'func_overload_list' => 'no overload',
740
+ 'mail_charset' => 'UTF-8',
741
+ 'mail_header_encoding' => 'BASE64',
742
+ 'mail_body_encoding' => 'BASE64',
743
+ 'illegal_chars' => 0,
744
+ 'encoding_translation' => 'Off',
745
+ 'language' => self::$language,
746
+ 'detect_order' => self::$encodingList,
747
+ 'substitute_character' => 'none',
748
+ 'strict_detection' => 'Off',
749
+ ];
750
+
751
+ if ('all' === $type) {
752
+ return $info;
753
+ }
754
+ if (isset($info[$type])) {
755
+ return $info[$type];
756
+ }
757
+
758
+ return false;
759
+ }
760
+
761
+ public static function mb_http_input($type = '')
762
+ {
763
+ return false;
764
+ }
765
+
766
+ public static function mb_http_output($encoding = null)
767
+ {
768
+ return null !== $encoding ? 'pass' === $encoding : 'pass';
769
+ }
770
+
771
+ public static function mb_strwidth($s, $encoding = null)
772
+ {
773
+ $encoding = self::getEncoding($encoding);
774
+
775
+ if ('UTF-8' !== $encoding) {
776
+ $s = iconv($encoding, 'UTF-8//IGNORE', $s);
777
+ }
778
+
779
+ $s = preg_replace('/[\x{1100}-\x{115F}\x{2329}\x{232A}\x{2E80}-\x{303E}\x{3040}-\x{A4CF}\x{AC00}-\x{D7A3}\x{F900}-\x{FAFF}\x{FE10}-\x{FE19}\x{FE30}-\x{FE6F}\x{FF00}-\x{FF60}\x{FFE0}-\x{FFE6}\x{20000}-\x{2FFFD}\x{30000}-\x{3FFFD}]/u', '', $s, -1, $wide);
780
+
781
+ return ($wide << 1) + iconv_strlen($s, 'UTF-8');
782
+ }
783
+
784
+ public static function mb_substr_count($haystack, $needle, $encoding = null)
785
+ {
786
+ return substr_count($haystack, $needle);
787
+ }
788
+
789
+ public static function mb_output_handler($contents, $status)
790
+ {
791
+ return $contents;
792
+ }
793
+
794
+ public static function mb_chr($code, $encoding = null)
795
+ {
796
+ if (0x80 > $code %= 0x200000) {
797
+ $s = \chr($code);
798
+ } elseif (0x800 > $code) {
799
+ $s = \chr(0xC0 | $code >> 6).\chr(0x80 | $code & 0x3F);
800
+ } elseif (0x10000 > $code) {
801
+ $s = \chr(0xE0 | $code >> 12).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
802
+ } else {
803
+ $s = \chr(0xF0 | $code >> 18).\chr(0x80 | $code >> 12 & 0x3F).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
804
+ }
805
+
806
+ if ('UTF-8' !== $encoding = self::getEncoding($encoding)) {
807
+ $s = mb_convert_encoding($s, $encoding, 'UTF-8');
808
+ }
809
+
810
+ return $s;
811
+ }
812
+
813
+ public static function mb_ord($s, $encoding = null)
814
+ {
815
+ if ('UTF-8' !== $encoding = self::getEncoding($encoding)) {
816
+ $s = mb_convert_encoding($s, 'UTF-8', $encoding);
817
+ }
818
+
819
+ if (1 === \strlen($s)) {
820
+ return \ord($s);
821
+ }
822
+
823
+ $code = ($s = unpack('C*', substr($s, 0, 4))) ? $s[1] : 0;
824
+ if (0xF0 <= $code) {
825
+ return (($code - 0xF0) << 18) + (($s[2] - 0x80) << 12) + (($s[3] - 0x80) << 6) + $s[4] - 0x80;
826
+ }
827
+ if (0xE0 <= $code) {
828
+ return (($code - 0xE0) << 12) + (($s[2] - 0x80) << 6) + $s[3] - 0x80;
829
+ }
830
+ if (0xC0 <= $code) {
831
+ return (($code - 0xC0) << 6) + $s[2] - 0x80;
832
+ }
833
+
834
+ return $code;
835
+ }
836
+
837
+ public static function mb_str_pad(string $string, int $length, string $pad_string = ' ', int $pad_type = \STR_PAD_RIGHT, ?string $encoding = null): string
838
+ {
839
+ if (!\in_array($pad_type, [\STR_PAD_RIGHT, \STR_PAD_LEFT, \STR_PAD_BOTH], true)) {
840
+ throw new \ValueError('mb_str_pad(): Argument #4 ($pad_type) must be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH');
841
+ }
842
+
843
+ if (null === $encoding) {
844
+ $encoding = self::mb_internal_encoding();
845
+ } else {
846
+ self::assertEncoding($encoding, 'mb_str_pad(): Argument #5 ($encoding) must be a valid encoding, "%s" given');
847
+ }
848
+
849
+ if (self::mb_strlen($pad_string, $encoding) <= 0) {
850
+ throw new \ValueError('mb_str_pad(): Argument #3 ($pad_string) must be a non-empty string');
851
+ }
852
+
853
+ $paddingRequired = $length - self::mb_strlen($string, $encoding);
854
+
855
+ if ($paddingRequired < 1) {
856
+ return $string;
857
+ }
858
+
859
+ switch ($pad_type) {
860
+ case \STR_PAD_LEFT:
861
+ return self::mb_substr(str_repeat($pad_string, $paddingRequired), 0, $paddingRequired, $encoding).$string;
862
+ case \STR_PAD_RIGHT:
863
+ return $string.self::mb_substr(str_repeat($pad_string, $paddingRequired), 0, $paddingRequired, $encoding);
864
+ default:
865
+ $leftPaddingLength = floor($paddingRequired / 2);
866
+ $rightPaddingLength = $paddingRequired - $leftPaddingLength;
867
+
868
+ return self::mb_substr(str_repeat($pad_string, $leftPaddingLength), 0, $leftPaddingLength, $encoding).$string.self::mb_substr(str_repeat($pad_string, $rightPaddingLength), 0, $rightPaddingLength, $encoding);
869
+ }
870
+ }
871
+
872
+ public static function mb_ucfirst(string $string, ?string $encoding = null): string
873
+ {
874
+ if (null === $encoding) {
875
+ $encoding = self::mb_internal_encoding();
876
+ } else {
877
+ self::assertEncoding($encoding, 'mb_ucfirst(): Argument #2 ($encoding) must be a valid encoding, "%s" given');
878
+ }
879
+
880
+ $firstChar = mb_substr($string, 0, 1, $encoding);
881
+ $firstChar = mb_convert_case($firstChar, \MB_CASE_TITLE, $encoding);
882
+
883
+ return $firstChar.mb_substr($string, 1, null, $encoding);
884
+ }
885
+
886
+ public static function mb_lcfirst(string $string, ?string $encoding = null): string
887
+ {
888
+ if (null === $encoding) {
889
+ $encoding = self::mb_internal_encoding();
890
+ } else {
891
+ self::assertEncoding($encoding, 'mb_lcfirst(): Argument #2 ($encoding) must be a valid encoding, "%s" given');
892
+ }
893
+
894
+ $firstChar = mb_substr($string, 0, 1, $encoding);
895
+ $firstChar = mb_convert_case($firstChar, \MB_CASE_LOWER, $encoding);
896
+
897
+ return $firstChar.mb_substr($string, 1, null, $encoding);
898
+ }
899
+
900
+ private static function getSubpart($pos, $part, $haystack, $encoding)
901
+ {
902
+ if (false === $pos) {
903
+ return false;
904
+ }
905
+ if ($part) {
906
+ return self::mb_substr($haystack, 0, $pos, $encoding);
907
+ }
908
+
909
+ return self::mb_substr($haystack, $pos, null, $encoding);
910
+ }
911
+
912
+ private static function html_encoding_callback(array $m)
913
+ {
914
+ $i = 1;
915
+ $entities = '';
916
+ $m = unpack('C*', htmlentities($m[0], \ENT_COMPAT, 'UTF-8'));
917
+
918
+ while (isset($m[$i])) {
919
+ if (0x80 > $m[$i]) {
920
+ $entities .= \chr($m[$i++]);
921
+ continue;
922
+ }
923
+ if (0xF0 <= $m[$i]) {
924
+ $c = (($m[$i++] - 0xF0) << 18) + (($m[$i++] - 0x80) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
925
+ } elseif (0xE0 <= $m[$i]) {
926
+ $c = (($m[$i++] - 0xE0) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
927
+ } else {
928
+ $c = (($m[$i++] - 0xC0) << 6) + $m[$i++] - 0x80;
929
+ }
930
+
931
+ $entities .= '&#'.$c.';';
932
+ }
933
+
934
+ return $entities;
935
+ }
936
+
937
+ private static function title_case(array $s)
938
+ {
939
+ return self::mb_convert_case($s[1], \MB_CASE_UPPER, 'UTF-8').self::mb_convert_case($s[2], \MB_CASE_LOWER, 'UTF-8');
940
+ }
941
+
942
+ private static function getData($file)
943
+ {
944
+ if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
945
+ return require $file;
946
+ }
947
+
948
+ return false;
949
+ }
950
+
951
+ private static function getEncoding($encoding)
952
+ {
953
+ if (null === $encoding) {
954
+ return self::$internalEncoding;
955
+ }
956
+
957
+ if ('UTF-8' === $encoding) {
958
+ return 'UTF-8';
959
+ }
960
+
961
+ $encoding = strtoupper($encoding);
962
+
963
+ if ('8BIT' === $encoding || 'BINARY' === $encoding) {
964
+ return 'CP850';
965
+ }
966
+
967
+ if ('UTF8' === $encoding) {
968
+ return 'UTF-8';
969
+ }
970
+
971
+ return $encoding;
972
+ }
973
+
974
+ public static function mb_trim(string $string, ?string $characters = null, ?string $encoding = null): string
975
+ {
976
+ return self::mb_internal_trim('{^[%s]+|[%1$s]+$}Du', $string, $characters, $encoding, __FUNCTION__);
977
+ }
978
+
979
+ public static function mb_ltrim(string $string, ?string $characters = null, ?string $encoding = null): string
980
+ {
981
+ return self::mb_internal_trim('{^[%s]+}Du', $string, $characters, $encoding, __FUNCTION__);
982
+ }
983
+
984
+ public static function mb_rtrim(string $string, ?string $characters = null, ?string $encoding = null): string
985
+ {
986
+ return self::mb_internal_trim('{[%s]+$}Du', $string, $characters, $encoding, __FUNCTION__);
987
+ }
988
+
989
+ private static function mb_internal_trim(string $regex, string $string, ?string $characters, ?string $encoding, string $function): string
990
+ {
991
+ if (null === $encoding) {
992
+ $encoding = self::mb_internal_encoding();
993
+ } else {
994
+ self::assertEncoding($encoding, $function.'(): Argument #3 ($encoding) must be a valid encoding, "%s" given');
995
+ }
996
+
997
+ if ('' === $characters) {
998
+ return null === $encoding ? $string : self::mb_convert_encoding($string, $encoding);
999
+ }
1000
+
1001
+ if ('UTF-8' === $encoding) {
1002
+ $encoding = null;
1003
+ if (!preg_match('//u', $string)) {
1004
+ $string = @iconv('UTF-8', 'UTF-8//IGNORE', $string);
1005
+ }
1006
+ if (null !== $characters && !preg_match('//u', $characters)) {
1007
+ $characters = @iconv('UTF-8', 'UTF-8//IGNORE', $characters);
1008
+ }
1009
+ } else {
1010
+ $string = iconv($encoding, 'UTF-8//IGNORE', $string);
1011
+
1012
+ if (null !== $characters) {
1013
+ $characters = iconv($encoding, 'UTF-8//IGNORE', $characters);
1014
+ }
1015
+ }
1016
+
1017
+ if (null === $characters) {
1018
+ $characters = "\\0 \f\n\r\t\v\u{00A0}\u{1680}\u{2000}\u{2001}\u{2002}\u{2003}\u{2004}\u{2005}\u{2006}\u{2007}\u{2008}\u{2009}\u{200A}\u{2028}\u{2029}\u{202F}\u{205F}\u{3000}\u{0085}\u{180E}";
1019
+ } else {
1020
+ $characters = preg_quote($characters);
1021
+ }
1022
+
1023
+ $string = preg_replace(sprintf($regex, $characters), '', $string);
1024
+
1025
+ if (null === $encoding) {
1026
+ return $string;
1027
+ }
1028
+
1029
+ return iconv('UTF-8', $encoding.'//IGNORE', $string);
1030
+ }
1031
+
1032
+ private static function assertEncoding(string $encoding, string $errorFormat): void
1033
+ {
1034
+ try {
1035
+ $validEncoding = @self::mb_check_encoding('', $encoding);
1036
+ } catch (\ValueError $e) {
1037
+ throw new \ValueError(sprintf($errorFormat, $encoding));
1038
+ }
1039
+
1040
+ // BC for PHP 7.3 and lower
1041
+ if (!$validEncoding) {
1042
+ throw new \ValueError(sprintf($errorFormat, $encoding));
1043
+ }
1044
+ }
1045
+ }