@averay/codeformat 0.2.0 → 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 (1215) hide show
  1. package/.editorconfig +1 -1
  2. package/.php-cs-fixer.cache +1 -0
  3. package/.php-cs-fixer.php +9 -0
  4. package/.prettierrc.json +3 -1
  5. package/.stylelintignore +2 -0
  6. package/README.md +19 -5
  7. package/bin/codeformat.ts +26 -0
  8. package/bin/tools/eslint.ts +16 -0
  9. package/bin/tools/index.ts +5 -0
  10. package/bin/tools/phpCsFixer.ts +17 -0
  11. package/bin/tools/prettier.ts +20 -0
  12. package/bin/tools/stylelint.ts +16 -0
  13. package/bin/tools/tsc.ts +12 -0
  14. package/bin/utils/Cli.ts +77 -0
  15. package/bin/utils/Output.ts +30 -0
  16. package/bin/utils/ToolRunner.ts +60 -0
  17. package/bin/utils/filesystem.ts +16 -0
  18. package/bin/utils/runners.ts +10 -0
  19. package/bin/utils/types.ts +22 -0
  20. package/composer.json +6 -0
  21. package/composer.lock +3231 -0
  22. package/eslint.config.js +26 -0
  23. package/lib/cssPatterns.ts +7 -0
  24. package/package.json +34 -30
  25. package/rulesets/eslint/ruleset-shared.ts +9 -5
  26. package/rulesets/eslint/ruleset-typescript.ts +30 -17
  27. package/rulesets/php/ruleset-php-cs-fixer.php +93 -0
  28. package/rulesets/stylelint/ruleset-css.ts +21 -5
  29. package/rulesets/stylelint/ruleset-scss.ts +7 -8
  30. package/src/makeStylelintConfig.ts +13 -5
  31. package/src/php/PhpCsFixerConfig.php +27 -0
  32. package/{stylelint.config.cjs → stylelint.config.js} +2 -2
  33. package/vendor/autoload.php +22 -0
  34. package/vendor/bin/php-cs-fixer +119 -0
  35. package/vendor/clue/ndjson-react/.github/FUNDING.yml +2 -0
  36. package/vendor/clue/ndjson-react/CHANGELOG.md +75 -0
  37. package/vendor/clue/ndjson-react/LICENSE +21 -0
  38. package/vendor/clue/ndjson-react/README.md +365 -0
  39. package/vendor/clue/ndjson-react/composer.json +31 -0
  40. package/vendor/clue/ndjson-react/src/Decoder.php +166 -0
  41. package/vendor/clue/ndjson-react/src/Encoder.php +144 -0
  42. package/vendor/composer/ClassLoader.php +579 -0
  43. package/vendor/composer/InstalledVersions.php +396 -0
  44. package/vendor/composer/LICENSE +21 -0
  45. package/vendor/composer/autoload_classmap.php +34 -0
  46. package/vendor/composer/autoload_files.php +18 -0
  47. package/vendor/composer/autoload_namespaces.php +9 -0
  48. package/vendor/composer/autoload_psr4.php +42 -0
  49. package/vendor/composer/autoload_real.php +48 -0
  50. package/vendor/composer/autoload_static.php +247 -0
  51. package/vendor/composer/installed.json +3634 -0
  52. package/vendor/composer/installed.php +367 -0
  53. package/vendor/composer/pcre/LICENSE +19 -0
  54. package/vendor/composer/pcre/README.md +189 -0
  55. package/vendor/composer/pcre/composer.json +54 -0
  56. package/vendor/composer/pcre/extension.neon +22 -0
  57. package/vendor/composer/pcre/src/MatchAllResult.php +46 -0
  58. package/vendor/composer/pcre/src/MatchAllStrictGroupsResult.php +46 -0
  59. package/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php +48 -0
  60. package/vendor/composer/pcre/src/MatchResult.php +39 -0
  61. package/vendor/composer/pcre/src/MatchStrictGroupsResult.php +39 -0
  62. package/vendor/composer/pcre/src/MatchWithOffsetsResult.php +41 -0
  63. package/vendor/composer/pcre/src/PHPStan/InvalidRegexPatternRule.php +142 -0
  64. package/vendor/composer/pcre/src/PHPStan/PregMatchFlags.php +70 -0
  65. package/vendor/composer/pcre/src/PHPStan/PregMatchParameterOutTypeExtension.php +65 -0
  66. package/vendor/composer/pcre/src/PHPStan/PregMatchTypeSpecifyingExtension.php +119 -0
  67. package/vendor/composer/pcre/src/PHPStan/PregReplaceCallbackClosureTypeExtension.php +91 -0
  68. package/vendor/composer/pcre/src/PHPStan/UnsafeStrictGroupsCallRule.php +112 -0
  69. package/vendor/composer/pcre/src/PcreException.php +55 -0
  70. package/vendor/composer/pcre/src/Preg.php +430 -0
  71. package/vendor/composer/pcre/src/Regex.php +176 -0
  72. package/vendor/composer/pcre/src/ReplaceResult.php +43 -0
  73. package/vendor/composer/pcre/src/UnexpectedNullMatchException.php +20 -0
  74. package/vendor/composer/semver/CHANGELOG.md +229 -0
  75. package/vendor/composer/semver/LICENSE +19 -0
  76. package/vendor/composer/semver/README.md +99 -0
  77. package/vendor/composer/semver/composer.json +59 -0
  78. package/vendor/composer/semver/src/Comparator.php +113 -0
  79. package/vendor/composer/semver/src/CompilingMatcher.php +94 -0
  80. package/vendor/composer/semver/src/Constraint/Bound.php +122 -0
  81. package/vendor/composer/semver/src/Constraint/Constraint.php +435 -0
  82. package/vendor/composer/semver/src/Constraint/ConstraintInterface.php +75 -0
  83. package/vendor/composer/semver/src/Constraint/MatchAllConstraint.php +85 -0
  84. package/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php +83 -0
  85. package/vendor/composer/semver/src/Constraint/MultiConstraint.php +325 -0
  86. package/vendor/composer/semver/src/Interval.php +98 -0
  87. package/vendor/composer/semver/src/Intervals.php +478 -0
  88. package/vendor/composer/semver/src/Semver.php +129 -0
  89. package/vendor/composer/semver/src/VersionParser.php +591 -0
  90. package/vendor/composer/xdebug-handler/CHANGELOG.md +143 -0
  91. package/vendor/composer/xdebug-handler/LICENSE +21 -0
  92. package/vendor/composer/xdebug-handler/README.md +305 -0
  93. package/vendor/composer/xdebug-handler/composer.json +44 -0
  94. package/vendor/composer/xdebug-handler/src/PhpConfig.php +91 -0
  95. package/vendor/composer/xdebug-handler/src/Process.php +119 -0
  96. package/vendor/composer/xdebug-handler/src/Status.php +222 -0
  97. package/vendor/composer/xdebug-handler/src/XdebugHandler.php +722 -0
  98. package/vendor/evenement/evenement/.gitattributes +7 -0
  99. package/vendor/evenement/evenement/LICENSE +19 -0
  100. package/vendor/evenement/evenement/README.md +64 -0
  101. package/vendor/evenement/evenement/composer.json +29 -0
  102. package/vendor/evenement/evenement/src/EventEmitter.php +17 -0
  103. package/vendor/evenement/evenement/src/EventEmitterInterface.php +22 -0
  104. package/vendor/evenement/evenement/src/EventEmitterTrait.php +154 -0
  105. package/vendor/fidry/cpu-core-counter/.envrc +5 -0
  106. package/vendor/fidry/cpu-core-counter/LICENSE.md +16 -0
  107. package/vendor/fidry/cpu-core-counter/README.md +138 -0
  108. package/vendor/fidry/cpu-core-counter/bin/diagnose.php +27 -0
  109. package/vendor/fidry/cpu-core-counter/bin/execute.php +21 -0
  110. package/vendor/fidry/cpu-core-counter/bin/trace.php +32 -0
  111. package/vendor/fidry/cpu-core-counter/composer.json +48 -0
  112. package/vendor/fidry/cpu-core-counter/src/CpuCoreCounter.php +268 -0
  113. package/vendor/fidry/cpu-core-counter/src/Diagnoser.php +101 -0
  114. package/vendor/fidry/cpu-core-counter/src/Executor/ProcOpenExecutor.php +56 -0
  115. package/vendor/fidry/cpu-core-counter/src/Executor/ProcessExecutor.php +22 -0
  116. package/vendor/fidry/cpu-core-counter/src/Finder/CmiCmdletLogicalFinder.php +46 -0
  117. package/vendor/fidry/cpu-core-counter/src/Finder/CmiCmdletPhysicalFinder.php +47 -0
  118. package/vendor/fidry/cpu-core-counter/src/Finder/CpuCoreFinder.php +37 -0
  119. package/vendor/fidry/cpu-core-counter/src/Finder/CpuInfoFinder.php +100 -0
  120. package/vendor/fidry/cpu-core-counter/src/Finder/DummyCpuCoreFinder.php +57 -0
  121. package/vendor/fidry/cpu-core-counter/src/Finder/EnvVariableFinder.php +69 -0
  122. package/vendor/fidry/cpu-core-counter/src/Finder/FinderRegistry.php +91 -0
  123. package/vendor/fidry/cpu-core-counter/src/Finder/HwLogicalFinder.php +33 -0
  124. package/vendor/fidry/cpu-core-counter/src/Finder/HwPhysicalFinder.php +33 -0
  125. package/vendor/fidry/cpu-core-counter/src/Finder/LscpuLogicalFinder.php +52 -0
  126. package/vendor/fidry/cpu-core-counter/src/Finder/LscpuPhysicalFinder.php +66 -0
  127. package/vendor/fidry/cpu-core-counter/src/Finder/NProcFinder.php +59 -0
  128. package/vendor/fidry/cpu-core-counter/src/Finder/NProcessorFinder.php +32 -0
  129. package/vendor/fidry/cpu-core-counter/src/Finder/NullCpuCoreFinder.php +35 -0
  130. package/vendor/fidry/cpu-core-counter/src/Finder/OnlyInPowerShellFinder.php +62 -0
  131. package/vendor/fidry/cpu-core-counter/src/Finder/OnlyOnOSFamilyFinder.php +113 -0
  132. package/vendor/fidry/cpu-core-counter/src/Finder/ProcOpenBasedFinder.php +107 -0
  133. package/vendor/fidry/cpu-core-counter/src/Finder/SkipOnOSFamilyFinder.php +113 -0
  134. package/vendor/fidry/cpu-core-counter/src/Finder/WindowsRegistryLogicalFinder.php +51 -0
  135. package/vendor/fidry/cpu-core-counter/src/Finder/WmicLogicalFinder.php +47 -0
  136. package/vendor/fidry/cpu-core-counter/src/Finder/WmicPhysicalFinder.php +47 -0
  137. package/vendor/fidry/cpu-core-counter/src/Finder/_NProcessorFinder.php +32 -0
  138. package/vendor/fidry/cpu-core-counter/src/NumberOfCpuCoreNotFound.php +26 -0
  139. package/vendor/fidry/cpu-core-counter/src/ParallelisationResult.php +87 -0
  140. package/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +5983 -0
  141. package/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +103 -0
  142. package/vendor/friendsofphp/php-cs-fixer/LICENSE +19 -0
  143. package/vendor/friendsofphp/php-cs-fixer/README.md +88 -0
  144. package/vendor/friendsofphp/php-cs-fixer/UPGRADE-v3.md +162 -0
  145. package/vendor/friendsofphp/php-cs-fixer/ci-integration.sh +8 -0
  146. package/vendor/friendsofphp/php-cs-fixer/composer.json +210 -0
  147. package/vendor/friendsofphp/php-cs-fixer/feature-or-bug.rst +24 -0
  148. package/vendor/friendsofphp/php-cs-fixer/logo.md +3 -0
  149. package/vendor/friendsofphp/php-cs-fixer/logo.png +0 -0
  150. package/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +110 -0
  151. package/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +241 -0
  152. package/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +102 -0
  153. package/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +116 -0
  154. package/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +71 -0
  155. package/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +204 -0
  156. package/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocToTypeDeclarationFixer.php +314 -0
  157. package/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +105 -0
  158. package/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +106 -0
  159. package/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +151 -0
  160. package/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +35 -0
  161. package/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +29 -0
  162. package/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +51 -0
  163. package/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +23 -0
  164. package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +143 -0
  165. package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +184 -0
  166. package/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +29 -0
  167. package/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +33 -0
  168. package/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +100 -0
  169. package/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +38 -0
  170. package/vendor/friendsofphp/php-cs-fixer/src/Config.php +267 -0
  171. package/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +162 -0
  172. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +36 -0
  173. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +45 -0
  174. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
  175. package/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
  176. package/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +212 -0
  177. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/CheckCommand.php +64 -0
  178. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +476 -0
  179. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +46 -0
  180. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DocumentationCommand.php +123 -0
  181. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +397 -0
  182. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +56 -0
  183. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +76 -0
  184. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListFilesCommand.php +91 -0
  185. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListSetsCommand.php +87 -0
  186. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +176 -0
  187. package/vendor/friendsofphp/php-cs-fixer/src/Console/Command/WorkerCommand.php +243 -0
  188. package/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +961 -0
  189. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +155 -0
  190. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/OutputContext.php +54 -0
  191. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/DotsOutput.php +124 -0
  192. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/NullOutput.php +29 -0
  193. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/PercentageBarOutput.php +78 -0
  194. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputFactory.php +63 -0
  195. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputInterface.php +27 -0
  196. package/vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/ProgressOutputType.php +37 -0
  197. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/CheckstyleReporter.php +71 -0
  198. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/GitlabReporter.php +96 -0
  199. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/JsonReporter.php +65 -0
  200. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/JunitReporter.php +145 -0
  201. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReportSummary.php +103 -0
  202. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReporterFactory.php +90 -0
  203. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/ReporterInterface.php +30 -0
  204. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/TextReporter.php +104 -0
  205. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/FixReport/XmlReporter.php +136 -0
  206. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/JsonReporter.php +52 -0
  207. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReportSummary.php +48 -0
  208. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReporterFactory.php +89 -0
  209. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/ReporterInterface.php +30 -0
  210. package/vendor/friendsofphp/php-cs-fixer/src/Console/Report/ListSetsReport/TextReporter.php +51 -0
  211. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +69 -0
  212. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +26 -0
  213. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +102 -0
  214. package/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +37 -0
  215. package/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +76 -0
  216. package/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +85 -0
  217. package/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +26 -0
  218. package/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +46 -0
  219. package/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +26 -0
  220. package/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +47 -0
  221. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +319 -0
  222. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +250 -0
  223. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +128 -0
  224. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +65 -0
  225. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +102 -0
  226. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +66 -0
  227. package/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TypeExpression.php +857 -0
  228. package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/DocLexer.php +171 -0
  229. package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +87 -0
  230. package/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +303 -0
  231. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/DocumentationLocator.php +82 -0
  232. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/FixerDocumentGenerator.php +415 -0
  233. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/RstUtils.php +45 -0
  234. package/vendor/friendsofphp/php-cs-fixer/src/Documentation/RuleSetDocumentationGenerator.php +174 -0
  235. package/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +125 -0
  236. package/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +83 -0
  237. package/vendor/friendsofphp/php-cs-fixer/src/Error/SourceExceptionFactory.php +62 -0
  238. package/vendor/friendsofphp/php-cs-fixer/src/ExecutorWithoutErrorHandler.php +58 -0
  239. package/vendor/friendsofphp/php-cs-fixer/src/ExecutorWithoutErrorHandlerException.php +22 -0
  240. package/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +70 -0
  241. package/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +100 -0
  242. package/vendor/friendsofphp/php-cs-fixer/src/Finder.php +35 -0
  243. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractIncrementOperatorFixer.php +58 -0
  244. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractPhpUnitFixer.php +278 -0
  245. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AbstractShortOperatorFixer.php +264 -0
  246. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/ArrayPushFixer.php +207 -0
  247. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +149 -0
  248. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +193 -0
  249. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +180 -0
  250. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/ModernizeStrposFixer.php +338 -0
  251. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +337 -0
  252. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasLanguageConstructCallFixer.php +59 -0
  253. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +142 -0
  254. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +219 -0
  255. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +153 -0
  256. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +240 -0
  257. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +138 -0
  258. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +80 -0
  259. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +52 -0
  260. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +153 -0
  261. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +57 -0
  262. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ReturnToYieldFromFixer.php +105 -0
  263. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +97 -0
  264. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +150 -0
  265. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/YieldFromArrayToYieldsFixer.php +189 -0
  266. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/AttributeEmptyParenthesesFixer.php +136 -0
  267. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/GeneralAttributeRemoveFixer.php +142 -0
  268. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/AttributeNotation/OrderedAttributesFixer.php +274 -0
  269. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +268 -0
  270. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesPositionFixer.php +449 -0
  271. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/CurlyBracesPositionFixer.php +126 -0
  272. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +80 -0
  273. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NoMultipleStatementsPerLineFixer.php +111 -0
  274. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NoTrailingCommaInSinglelineFixer.php +162 -0
  275. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +191 -0
  276. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NumericLiteralSeparatorFixer.php +232 -0
  277. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/OctalNotationFixer.php +64 -0
  278. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/PsrAutoloadingFixer.php +291 -0
  279. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/SingleLineEmptyBodyFixer.php +83 -0
  280. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ClassReferenceNameCasingFixer.php +168 -0
  281. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ConstantCaseFixer.php +130 -0
  282. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/IntegerLiteralCaseFixer.php +62 -0
  283. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +67 -0
  284. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +107 -0
  285. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +92 -0
  286. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +202 -0
  287. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +89 -0
  288. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +58 -0
  289. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeTypeDeclarationCasingFixer.php +151 -0
  290. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +131 -0
  291. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +66 -0
  292. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +164 -0
  293. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +88 -0
  294. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +88 -0
  295. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +71 -0
  296. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +605 -0
  297. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +572 -0
  298. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +67 -0
  299. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +374 -0
  300. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalPublicMethodForAbstractClassFixer.php +160 -0
  301. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +93 -0
  302. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +141 -0
  303. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +408 -0
  304. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +215 -0
  305. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +610 -0
  306. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +272 -0
  307. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedTraitsFixer.php +226 -0
  308. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedTypesFixer.php +453 -0
  309. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/PhpdocReadonlyClassCommentToKeywordFixer.php +129 -0
  310. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +168 -0
  311. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +200 -0
  312. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfStaticAccessorFixer.php +224 -0
  313. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +241 -0
  314. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +116 -0
  315. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +214 -0
  316. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +146 -0
  317. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +230 -0
  318. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +543 -0
  319. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +89 -0
  320. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +162 -0
  321. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +75 -0
  322. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentSpacingFixer.php +110 -0
  323. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +178 -0
  324. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +50 -0
  325. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerTrait.php +124 -0
  326. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +307 -0
  327. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureBracesFixer.php +256 -0
  328. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ControlStructureContinuationPositionFixer.php +157 -0
  329. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +98 -0
  330. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/EmptyLoopBodyFixer.php +139 -0
  331. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/EmptyLoopConditionFixer.php +202 -0
  332. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +153 -0
  333. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +244 -0
  334. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +366 -0
  335. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +100 -0
  336. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +51 -0
  337. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededBracesFixer.php +182 -0
  338. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +758 -0
  339. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +106 -0
  340. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +120 -0
  341. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SimplifiedIfReturnFixer.php +138 -0
  342. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +87 -0
  343. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +85 -0
  344. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchContinueToBreakFixer.php +240 -0
  345. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/TrailingCommaInMultilineFixer.php +237 -0
  346. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +758 -0
  347. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +28 -0
  348. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +114 -0
  349. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +132 -0
  350. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +199 -0
  351. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +320 -0
  352. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ExperimentalFixerInterface.php +20 -0
  353. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +79 -0
  354. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +224 -0
  355. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/DateTimeCreateFromFormatCallFixer.php +164 -0
  356. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +123 -0
  357. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +120 -0
  358. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +263 -0
  359. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +60 -0
  360. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +139 -0
  361. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/LambdaNotUsedImportFixer.php +350 -0
  362. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +510 -0
  363. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +420 -0
  364. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +176 -0
  365. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoTrailingCommaInSinglelineFunctionCallFixer.php +59 -0
  366. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +197 -0
  367. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUselessSprintfFixer.php +109 -0
  368. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NullableTypeDeclarationForDefaultNullValueFixer.php +247 -0
  369. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToParamTypeFixer.php +244 -0
  370. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToPropertyTypeFixer.php +296 -0
  371. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +249 -0
  372. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/RegularCallableCallFixer.php +256 -0
  373. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +132 -0
  374. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/SingleLineThrowFixer.php +159 -0
  375. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +130 -0
  376. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/UseArrowFunctionsFixer.php +181 -0
  377. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +256 -0
  378. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +987 -0
  379. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GlobalNamespaceImportFixer.php +726 -0
  380. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GroupImportFixer.php +369 -0
  381. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +90 -0
  382. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnneededImportAliasFixer.php +88 -0
  383. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +455 -0
  384. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +626 -0
  385. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +274 -0
  386. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +152 -0
  387. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Indentation.php +92 -0
  388. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/InternalFixerInterface.php +20 -0
  389. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordFixer.php +100 -0
  390. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +234 -0
  391. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +163 -0
  392. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +179 -0
  393. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +137 -0
  394. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareParenthesesFixer.php +56 -0
  395. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +129 -0
  396. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +186 -0
  397. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +82 -0
  398. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +311 -0
  399. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/GetClassToClassKeywordFixer.php +158 -0
  400. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +169 -0
  401. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +220 -0
  402. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NullableTypeDeclarationFixer.php +348 -0
  403. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SingleSpaceAfterConstructFixer.php +209 -0
  404. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SingleSpaceAroundConstructFixer.php +516 -0
  405. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +133 -0
  406. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +127 -0
  407. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLinesBeforeNamespaceFixer.php +242 -0
  408. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/CleanNamespaceFixer.php +108 -0
  409. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +76 -0
  410. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +95 -0
  411. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +75 -0
  412. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +230 -0
  413. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AssignNullCoalescingToCoalesceEqualFixer.php +71 -0
  414. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +961 -0
  415. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +160 -0
  416. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +179 -0
  417. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +67 -0
  418. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LongToShorthandOperatorFixer.php +140 -0
  419. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +103 -0
  420. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithParenthesesFixer.php +216 -0
  421. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoSpaceAroundDoubleColonFixer.php +73 -0
  422. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoUselessConcatOperatorFixer.php +375 -0
  423. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NoUselessNullsafeOperatorFixer.php +73 -0
  424. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +75 -0
  425. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +68 -0
  426. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +62 -0
  427. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/OperatorLinebreakFixer.php +292 -0
  428. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +122 -0
  429. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +60 -0
  430. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +131 -0
  431. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToElvisOperatorFixer.php +217 -0
  432. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +224 -0
  433. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +118 -0
  434. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +92 -0
  435. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/EchoTagSyntaxFixer.php +273 -0
  436. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +123 -0
  437. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +68 -0
  438. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +59 -0
  439. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAssertNewNamesFixer.php +107 -0
  440. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitAttributesFixer.php +620 -0
  441. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +210 -0
  442. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderMethodOrderFixer.php +288 -0
  443. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderNameFixer.php +199 -0
  444. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderReturnTypeFixer.php +120 -0
  445. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDataProviderStaticFixer.php +156 -0
  446. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +590 -0
  447. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +204 -0
  448. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +289 -0
  449. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +86 -0
  450. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +117 -0
  451. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +238 -0
  452. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +135 -0
  453. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +123 -0
  454. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +235 -0
  455. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +278 -0
  456. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +111 -0
  457. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +107 -0
  458. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +154 -0
  459. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +57 -0
  460. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +416 -0
  461. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +564 -0
  462. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +88 -0
  463. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +178 -0
  464. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +177 -0
  465. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocTagRenameFixer.php +213 -0
  466. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +110 -0
  467. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +84 -0
  468. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +756 -0
  469. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +289 -0
  470. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +506 -0
  471. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +123 -0
  472. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocArrayTypeFixer.php +92 -0
  473. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +141 -0
  474. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagNormalizerFixer.php +121 -0
  475. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocLineSpanFixer.php +173 -0
  476. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocListTypeFixer.php +70 -0
  477. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +71 -0
  478. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +137 -0
  479. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +117 -0
  480. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +70 -0
  481. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +151 -0
  482. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderByValueFixer.php +225 -0
  483. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +223 -0
  484. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocParamOrderFixer.php +273 -0
  485. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +234 -0
  486. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +139 -0
  487. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +333 -0
  488. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +89 -0
  489. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +99 -0
  490. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTagCasingFixer.php +109 -0
  491. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTagTypeFixer.php +214 -0
  492. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +185 -0
  493. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +191 -0
  494. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +115 -0
  495. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +173 -0
  496. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +218 -0
  497. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +81 -0
  498. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +150 -0
  499. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +103 -0
  500. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +527 -0
  501. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +171 -0
  502. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +244 -0
  503. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +186 -0
  504. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +66 -0
  505. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +64 -0
  506. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +148 -0
  507. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +132 -0
  508. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +80 -0
  509. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +168 -0
  510. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +153 -0
  511. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +166 -0
  512. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocClosingMarkerFixer.php +205 -0
  513. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +107 -0
  514. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/MultilineStringToHeredocFixer.php +166 -0
  515. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +75 -0
  516. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoTrailingWhitespaceInStringFixer.php +100 -0
  517. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +96 -0
  518. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +122 -0
  519. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringImplicitBackslashesFixer.php +193 -0
  520. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLengthToEmptyFixer.php +322 -0
  521. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +76 -0
  522. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +197 -0
  523. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +379 -0
  524. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBetweenImportGroupsFixer.php +180 -0
  525. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypeDeclarationFixer.php +72 -0
  526. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +63 -0
  527. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +180 -0
  528. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +139 -0
  529. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +85 -0
  530. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +229 -0
  531. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +496 -0
  532. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +112 -0
  533. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +75 -0
  534. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +104 -0
  535. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +89 -0
  536. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +64 -0
  537. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SpacesInsideParenthesesFixer.php +223 -0
  538. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/StatementIndentationFixer.php +836 -0
  539. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/TypeDeclarationSpacesFixer.php +254 -0
  540. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/TypesSpacesFixer.php +173 -0
  541. package/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +25 -0
  542. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +75 -0
  543. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +78 -0
  544. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +65 -0
  545. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +74 -0
  546. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +20 -0
  547. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +152 -0
  548. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +30 -0
  549. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +146 -0
  550. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +126 -0
  551. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +43 -0
  552. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionSorter.php +37 -0
  553. package/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
  554. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +49 -0
  555. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +28 -0
  556. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +56 -0
  557. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +25 -0
  558. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +76 -0
  559. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +37 -0
  560. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +54 -0
  561. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +23 -0
  562. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +76 -0
  563. package/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +23 -0
  564. package/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +248 -0
  565. package/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +32 -0
  566. package/vendor/friendsofphp/php-cs-fixer/src/Hasher.php +38 -0
  567. package/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +90 -0
  568. package/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +56 -0
  569. package/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +49 -0
  570. package/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +35 -0
  571. package/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +24 -0
  572. package/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +26 -0
  573. package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
  574. package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +46 -0
  575. package/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +86 -0
  576. package/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +58 -0
  577. package/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +48 -0
  578. package/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +26 -0
  579. package/vendor/friendsofphp/php-cs-fixer/src/ParallelAwareConfigInterface.php +29 -0
  580. package/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +38 -0
  581. package/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
  582. package/vendor/friendsofphp/php-cs-fixer/src/Preg.php +215 -0
  583. package/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
  584. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/AbstractMigrationSetDescription.php +38 -0
  585. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/AbstractRuleSetDescription.php +35 -0
  586. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/DeprecatedRuleSetDescriptionInterface.php +28 -0
  587. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSet.php +159 -0
  588. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSetDescriptionInterface.php +34 -0
  589. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSetInterface.php +49 -0
  590. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/RuleSets.php +72 -0
  591. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/DoctrineAnnotationSet.php +42 -0
  592. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS1x0RiskySet.php +44 -0
  593. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS1x0Set.php +44 -0
  594. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS2x0RiskySet.php +44 -0
  595. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCS2x0Set.php +112 -0
  596. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCSRiskySet.php +40 -0
  597. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERCSSet.php +40 -0
  598. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERRiskySet.php +52 -0
  599. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PERSet.php +47 -0
  600. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP54MigrationSet.php +30 -0
  601. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP56MigrationRiskySet.php +30 -0
  602. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationRiskySet.php +39 -0
  603. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP70MigrationSet.php +31 -0
  604. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationRiskySet.php +31 -0
  605. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP71MigrationSet.php +32 -0
  606. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP73MigrationSet.php +34 -0
  607. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationRiskySet.php +33 -0
  608. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP74MigrationSet.php +33 -0
  609. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationRiskySet.php +40 -0
  610. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP80MigrationSet.php +32 -0
  611. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP81MigrationSet.php +31 -0
  612. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationRiskySet.php +31 -0
  613. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP82MigrationSet.php +31 -0
  614. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP83MigrationSet.php +30 -0
  615. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHP84MigrationSet.php +31 -0
  616. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit100MigrationRiskySet.php +31 -0
  617. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit30MigrationRiskySet.php +33 -0
  618. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit32MigrationRiskySet.php +34 -0
  619. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit35MigrationRiskySet.php +34 -0
  620. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit43MigrationRiskySet.php +34 -0
  621. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit48MigrationRiskySet.php +34 -0
  622. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit50MigrationRiskySet.php +34 -0
  623. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit52MigrationRiskySet.php +34 -0
  624. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit54MigrationRiskySet.php +34 -0
  625. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit55MigrationRiskySet.php +34 -0
  626. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit56MigrationRiskySet.php +37 -0
  627. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit57MigrationRiskySet.php +34 -0
  628. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit60MigrationRiskySet.php +34 -0
  629. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit75MigrationRiskySet.php +34 -0
  630. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit84MigrationRiskySet.php +35 -0
  631. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PHPUnit91MigrationRiskySet.php +31 -0
  632. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12RiskySet.php +36 -0
  633. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR12Set.php +123 -0
  634. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR1Set.php +36 -0
  635. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PSR2Set.php +104 -0
  636. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PhpCsFixerRiskySet.php +67 -0
  637. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/PhpCsFixerSet.php +134 -0
  638. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/SymfonyRiskySet.php +78 -0
  639. package/vendor/friendsofphp/php-cs-fixer/src/RuleSet/Sets/SymfonySet.php +241 -0
  640. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Event/AnalysisStarted.php +54 -0
  641. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Event/FileProcessed.php +75 -0
  642. package/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingFileIterator.php +76 -0
  643. package/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +108 -0
  644. package/vendor/friendsofphp/php-cs-fixer/src/Runner/LintingFileIterator.php +66 -0
  645. package/vendor/friendsofphp/php-cs-fixer/src/Runner/LintingResultAwareFileIteratorInterface.php +29 -0
  646. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelAction.php +35 -0
  647. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelConfig.php +67 -0
  648. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelConfigFactory.php +61 -0
  649. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ParallelisationException.php +30 -0
  650. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/Process.php +189 -0
  651. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessFactory.php +111 -0
  652. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessIdentifier.php +55 -0
  653. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/ProcessPool.php +99 -0
  654. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Parallel/WorkerException.php +66 -0
  655. package/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +587 -0
  656. package/vendor/friendsofphp/php-cs-fixer/src/Runner/RunnerConfig.php +64 -0
  657. package/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +173 -0
  658. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +40 -0
  659. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTypeTransformer.php +89 -0
  660. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/AlternativeSyntaxAnalyzer.php +121 -0
  661. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/AbstractControlCaseStructuresAnalysis.php +51 -0
  662. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +81 -0
  663. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/AttributeAnalysis.php +76 -0
  664. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/CaseAnalysis.php +45 -0
  665. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/DataProviderAnalysis.php +68 -0
  666. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/DefaultAnalysis.php +43 -0
  667. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/EnumAnalysis.php +46 -0
  668. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/MatchAnalysis.php +37 -0
  669. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +98 -0
  670. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +189 -0
  671. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +33 -0
  672. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/SwitchAnalysis.php +54 -0
  673. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +116 -0
  674. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +161 -0
  675. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/AttributeAnalyzer.php +211 -0
  676. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/BlocksAnalyzer.php +59 -0
  677. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ClassyAnalyzer.php +87 -0
  678. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +370 -0
  679. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ControlCaseStructuresAnalyzer.php +312 -0
  680. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/DataProviderAnalyzer.php +115 -0
  681. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FullyQualifiedNameAnalyzer.php +103 -0
  682. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +281 -0
  683. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/GotoLabelAnalyzer.php +40 -0
  684. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +216 -0
  685. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +116 -0
  686. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/RangeAnalyzer.php +90 -0
  687. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ReferenceAnalyzer.php +49 -0
  688. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/SwitchAnalyzer.php +71 -0
  689. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/WhitespacesAnalyzer.php +52 -0
  690. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +112 -0
  691. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Processor/ImportProcessor.php +103 -0
  692. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +541 -0
  693. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1584 -0
  694. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +894 -0
  695. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +54 -0
  696. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/AttributeTransformer.php +67 -0
  697. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +80 -0
  698. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceTransformer.php +349 -0
  699. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +57 -0
  700. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ConstructorPromotionTransformer.php +71 -0
  701. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/DisjunctiveNormalFormTypeParenthesisTransformer.php +65 -0
  702. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/FirstClassCallableTransformer.php +49 -0
  703. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +72 -0
  704. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NameQualifiedTransformer.php +67 -0
  705. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamedArgumentTransformer.php +73 -0
  706. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +53 -0
  707. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +83 -0
  708. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +47 -0
  709. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +187 -0
  710. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +57 -0
  711. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +83 -0
  712. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeIntersectionTransformer.php +55 -0
  713. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +102 -0
  714. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +64 -0
  715. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +68 -0
  716. package/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +109 -0
  717. package/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +120 -0
  718. package/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +38 -0
  719. package/vendor/friendsofphp/php-cs-fixer/src/Utils.php +250 -0
  720. package/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +63 -0
  721. package/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +55 -0
  722. package/vendor/psr/container/LICENSE +21 -0
  723. package/vendor/psr/container/README.md +13 -0
  724. package/vendor/psr/container/composer.json +27 -0
  725. package/vendor/psr/container/src/ContainerExceptionInterface.php +12 -0
  726. package/vendor/psr/container/src/ContainerInterface.php +36 -0
  727. package/vendor/psr/container/src/NotFoundExceptionInterface.php +10 -0
  728. package/vendor/psr/event-dispatcher/.editorconfig +15 -0
  729. package/vendor/psr/event-dispatcher/LICENSE +21 -0
  730. package/vendor/psr/event-dispatcher/README.md +6 -0
  731. package/vendor/psr/event-dispatcher/composer.json +26 -0
  732. package/vendor/psr/event-dispatcher/src/EventDispatcherInterface.php +21 -0
  733. package/vendor/psr/event-dispatcher/src/ListenerProviderInterface.php +19 -0
  734. package/vendor/psr/event-dispatcher/src/StoppableEventInterface.php +26 -0
  735. package/vendor/psr/log/LICENSE +19 -0
  736. package/vendor/psr/log/README.md +58 -0
  737. package/vendor/psr/log/composer.json +26 -0
  738. package/vendor/psr/log/src/AbstractLogger.php +15 -0
  739. package/vendor/psr/log/src/InvalidArgumentException.php +7 -0
  740. package/vendor/psr/log/src/LogLevel.php +18 -0
  741. package/vendor/psr/log/src/LoggerAwareInterface.php +14 -0
  742. package/vendor/psr/log/src/LoggerAwareTrait.php +22 -0
  743. package/vendor/psr/log/src/LoggerInterface.php +98 -0
  744. package/vendor/psr/log/src/LoggerTrait.php +98 -0
  745. package/vendor/psr/log/src/NullLogger.php +26 -0
  746. package/vendor/react/cache/CHANGELOG.md +96 -0
  747. package/vendor/react/cache/LICENSE +21 -0
  748. package/vendor/react/cache/README.md +367 -0
  749. package/vendor/react/cache/composer.json +45 -0
  750. package/vendor/react/cache/src/ArrayCache.php +181 -0
  751. package/vendor/react/cache/src/CacheInterface.php +194 -0
  752. package/vendor/react/child-process/CHANGELOG.md +176 -0
  753. package/vendor/react/child-process/LICENSE +21 -0
  754. package/vendor/react/child-process/README.md +619 -0
  755. package/vendor/react/child-process/composer.json +49 -0
  756. package/vendor/react/child-process/src/Process.php +585 -0
  757. package/vendor/react/dns/CHANGELOG.md +452 -0
  758. package/vendor/react/dns/LICENSE +21 -0
  759. package/vendor/react/dns/README.md +453 -0
  760. package/vendor/react/dns/composer.json +49 -0
  761. package/vendor/react/dns/src/BadServerException.php +7 -0
  762. package/vendor/react/dns/src/Config/Config.php +137 -0
  763. package/vendor/react/dns/src/Config/HostsFile.php +153 -0
  764. package/vendor/react/dns/src/Model/Message.php +230 -0
  765. package/vendor/react/dns/src/Model/Record.php +153 -0
  766. package/vendor/react/dns/src/Protocol/BinaryDumper.php +199 -0
  767. package/vendor/react/dns/src/Protocol/Parser.php +356 -0
  768. package/vendor/react/dns/src/Query/CachingExecutor.php +88 -0
  769. package/vendor/react/dns/src/Query/CancellationException.php +7 -0
  770. package/vendor/react/dns/src/Query/CoopExecutor.php +91 -0
  771. package/vendor/react/dns/src/Query/ExecutorInterface.php +43 -0
  772. package/vendor/react/dns/src/Query/FallbackExecutor.php +49 -0
  773. package/vendor/react/dns/src/Query/HostsFileExecutor.php +89 -0
  774. package/vendor/react/dns/src/Query/Query.php +69 -0
  775. package/vendor/react/dns/src/Query/RetryExecutor.php +85 -0
  776. package/vendor/react/dns/src/Query/SelectiveTransportExecutor.php +85 -0
  777. package/vendor/react/dns/src/Query/TcpTransportExecutor.php +382 -0
  778. package/vendor/react/dns/src/Query/TimeoutException.php +7 -0
  779. package/vendor/react/dns/src/Query/TimeoutExecutor.php +78 -0
  780. package/vendor/react/dns/src/Query/UdpTransportExecutor.php +221 -0
  781. package/vendor/react/dns/src/RecordNotFoundException.php +7 -0
  782. package/vendor/react/dns/src/Resolver/Factory.php +226 -0
  783. package/vendor/react/dns/src/Resolver/Resolver.php +147 -0
  784. package/vendor/react/dns/src/Resolver/ResolverInterface.php +94 -0
  785. package/vendor/react/event-loop/CHANGELOG.md +468 -0
  786. package/vendor/react/event-loop/LICENSE +21 -0
  787. package/vendor/react/event-loop/README.md +930 -0
  788. package/vendor/react/event-loop/composer.json +47 -0
  789. package/vendor/react/event-loop/src/ExtEvLoop.php +253 -0
  790. package/vendor/react/event-loop/src/ExtEventLoop.php +275 -0
  791. package/vendor/react/event-loop/src/ExtLibevLoop.php +201 -0
  792. package/vendor/react/event-loop/src/ExtLibeventLoop.php +285 -0
  793. package/vendor/react/event-loop/src/ExtUvLoop.php +342 -0
  794. package/vendor/react/event-loop/src/Factory.php +75 -0
  795. package/vendor/react/event-loop/src/Loop.php +266 -0
  796. package/vendor/react/event-loop/src/LoopInterface.php +472 -0
  797. package/vendor/react/event-loop/src/SignalsHandler.php +63 -0
  798. package/vendor/react/event-loop/src/StreamSelectLoop.php +330 -0
  799. package/vendor/react/event-loop/src/Tick/FutureTickQueue.php +60 -0
  800. package/vendor/react/event-loop/src/Timer/Timer.php +55 -0
  801. package/vendor/react/event-loop/src/Timer/Timers.php +113 -0
  802. package/vendor/react/event-loop/src/TimerInterface.php +27 -0
  803. package/vendor/react/promise/CHANGELOG.md +156 -0
  804. package/vendor/react/promise/LICENSE +24 -0
  805. package/vendor/react/promise/README.md +722 -0
  806. package/vendor/react/promise/composer.json +57 -0
  807. package/vendor/react/promise/src/Deferred.php +52 -0
  808. package/vendor/react/promise/src/Exception/CompositeException.php +32 -0
  809. package/vendor/react/promise/src/Exception/LengthException.php +7 -0
  810. package/vendor/react/promise/src/Internal/CancellationQueue.php +64 -0
  811. package/vendor/react/promise/src/Internal/FulfilledPromise.php +89 -0
  812. package/vendor/react/promise/src/Internal/RejectedPromise.php +128 -0
  813. package/vendor/react/promise/src/Promise.php +303 -0
  814. package/vendor/react/promise/src/PromiseInterface.php +152 -0
  815. package/vendor/react/promise/src/functions.php +345 -0
  816. package/vendor/react/promise/src/functions_include.php +5 -0
  817. package/vendor/react/socket/CHANGELOG.md +785 -0
  818. package/vendor/react/socket/LICENSE +21 -0
  819. package/vendor/react/socket/README.md +1564 -0
  820. package/vendor/react/socket/composer.json +52 -0
  821. package/vendor/react/socket/src/Connection.php +183 -0
  822. package/vendor/react/socket/src/ConnectionInterface.php +119 -0
  823. package/vendor/react/socket/src/Connector.php +236 -0
  824. package/vendor/react/socket/src/ConnectorInterface.php +59 -0
  825. package/vendor/react/socket/src/DnsConnector.php +117 -0
  826. package/vendor/react/socket/src/FdServer.php +222 -0
  827. package/vendor/react/socket/src/FixedUriConnector.php +41 -0
  828. package/vendor/react/socket/src/HappyEyeBallsConnectionBuilder.php +334 -0
  829. package/vendor/react/socket/src/HappyEyeBallsConnector.php +80 -0
  830. package/vendor/react/socket/src/LimitingServer.php +203 -0
  831. package/vendor/react/socket/src/SecureConnector.php +132 -0
  832. package/vendor/react/socket/src/SecureServer.php +210 -0
  833. package/vendor/react/socket/src/Server.php +118 -0
  834. package/vendor/react/socket/src/ServerInterface.php +151 -0
  835. package/vendor/react/socket/src/SocketServer.php +215 -0
  836. package/vendor/react/socket/src/StreamEncryption.php +158 -0
  837. package/vendor/react/socket/src/TcpConnector.php +173 -0
  838. package/vendor/react/socket/src/TcpServer.php +262 -0
  839. package/vendor/react/socket/src/TimeoutConnector.php +79 -0
  840. package/vendor/react/socket/src/UnixConnector.php +58 -0
  841. package/vendor/react/socket/src/UnixServer.php +162 -0
  842. package/vendor/react/stream/CHANGELOG.md +460 -0
  843. package/vendor/react/stream/LICENSE +21 -0
  844. package/vendor/react/stream/README.md +1249 -0
  845. package/vendor/react/stream/composer.json +47 -0
  846. package/vendor/react/stream/src/CompositeStream.php +83 -0
  847. package/vendor/react/stream/src/DuplexResourceStream.php +240 -0
  848. package/vendor/react/stream/src/DuplexStreamInterface.php +39 -0
  849. package/vendor/react/stream/src/ReadableResourceStream.php +188 -0
  850. package/vendor/react/stream/src/ReadableStreamInterface.php +362 -0
  851. package/vendor/react/stream/src/ThroughStream.php +195 -0
  852. package/vendor/react/stream/src/Util.php +75 -0
  853. package/vendor/react/stream/src/WritableResourceStream.php +178 -0
  854. package/vendor/react/stream/src/WritableStreamInterface.php +347 -0
  855. package/vendor/sebastian/diff/ChangeLog.md +179 -0
  856. package/vendor/sebastian/diff/LICENSE +29 -0
  857. package/vendor/sebastian/diff/README.md +151 -0
  858. package/vendor/sebastian/diff/SECURITY.md +30 -0
  859. package/vendor/sebastian/diff/composer.json +51 -0
  860. package/vendor/sebastian/diff/src/Chunk.php +83 -0
  861. package/vendor/sebastian/diff/src/Diff.php +84 -0
  862. package/vendor/sebastian/diff/src/Differ.php +247 -0
  863. package/vendor/sebastian/diff/src/Exception/ConfigurationException.php +32 -0
  864. package/vendor/sebastian/diff/src/Exception/Exception.php +16 -0
  865. package/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php +14 -0
  866. package/vendor/sebastian/diff/src/Line.php +50 -0
  867. package/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php +18 -0
  868. package/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php +96 -0
  869. package/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php +54 -0
  870. package/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php +74 -0
  871. package/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php +19 -0
  872. package/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php +331 -0
  873. package/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php +261 -0
  874. package/vendor/sebastian/diff/src/Parser.php +116 -0
  875. package/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php +81 -0
  876. package/vendor/symfony/console/Application.php +1328 -0
  877. package/vendor/symfony/console/Attribute/Argument.php +110 -0
  878. package/vendor/symfony/console/Attribute/AsCommand.php +49 -0
  879. package/vendor/symfony/console/Attribute/Option.php +181 -0
  880. package/vendor/symfony/console/CHANGELOG.md +299 -0
  881. package/vendor/symfony/console/CI/GithubActionReporter.php +97 -0
  882. package/vendor/symfony/console/Color.php +133 -0
  883. package/vendor/symfony/console/Command/Command.php +700 -0
  884. package/vendor/symfony/console/Command/CompleteCommand.php +212 -0
  885. package/vendor/symfony/console/Command/DumpCompletionCommand.php +151 -0
  886. package/vendor/symfony/console/Command/HelpCommand.php +76 -0
  887. package/vendor/symfony/console/Command/InvokableCommand.php +157 -0
  888. package/vendor/symfony/console/Command/LazyCommand.php +206 -0
  889. package/vendor/symfony/console/Command/ListCommand.php +72 -0
  890. package/vendor/symfony/console/Command/LockableTrait.php +85 -0
  891. package/vendor/symfony/console/Command/SignalableCommandInterface.php +32 -0
  892. package/vendor/symfony/console/Command/TraceableCommand.php +365 -0
  893. package/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +38 -0
  894. package/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +52 -0
  895. package/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +52 -0
  896. package/vendor/symfony/console/Completion/CompletionInput.php +248 -0
  897. package/vendor/symfony/console/Completion/CompletionSuggestions.php +97 -0
  898. package/vendor/symfony/console/Completion/Output/BashCompletionOutput.php +33 -0
  899. package/vendor/symfony/console/Completion/Output/CompletionOutputInterface.php +25 -0
  900. package/vendor/symfony/console/Completion/Output/FishCompletionOutput.php +36 -0
  901. package/vendor/symfony/console/Completion/Output/ZshCompletionOutput.php +36 -0
  902. package/vendor/symfony/console/Completion/Suggestion.php +41 -0
  903. package/vendor/symfony/console/ConsoleEvents.php +72 -0
  904. package/vendor/symfony/console/Cursor.php +204 -0
  905. package/vendor/symfony/console/DataCollector/CommandDataCollector.php +238 -0
  906. package/vendor/symfony/console/Debug/CliRequest.php +70 -0
  907. package/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +155 -0
  908. package/vendor/symfony/console/Descriptor/ApplicationDescription.php +136 -0
  909. package/vendor/symfony/console/Descriptor/Descriptor.php +74 -0
  910. package/vendor/symfony/console/Descriptor/DescriptorInterface.php +24 -0
  911. package/vendor/symfony/console/Descriptor/JsonDescriptor.php +166 -0
  912. package/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +173 -0
  913. package/vendor/symfony/console/Descriptor/ReStructuredTextDescriptor.php +273 -0
  914. package/vendor/symfony/console/Descriptor/TextDescriptor.php +317 -0
  915. package/vendor/symfony/console/Descriptor/XmlDescriptor.php +230 -0
  916. package/vendor/symfony/console/Event/ConsoleAlarmEvent.php +47 -0
  917. package/vendor/symfony/console/Event/ConsoleCommandEvent.php +54 -0
  918. package/vendor/symfony/console/Event/ConsoleErrorEvent.php +58 -0
  919. package/vendor/symfony/console/Event/ConsoleEvent.php +56 -0
  920. package/vendor/symfony/console/Event/ConsoleSignalEvent.php +56 -0
  921. package/vendor/symfony/console/Event/ConsoleTerminateEvent.php +50 -0
  922. package/vendor/symfony/console/EventListener/ErrorListener.php +89 -0
  923. package/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
  924. package/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
  925. package/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
  926. package/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
  927. package/vendor/symfony/console/Exception/LogicException.php +19 -0
  928. package/vendor/symfony/console/Exception/MissingInputException.php +21 -0
  929. package/vendor/symfony/console/Exception/NamespaceNotFoundException.php +21 -0
  930. package/vendor/symfony/console/Exception/RunCommandFailedException.php +29 -0
  931. package/vendor/symfony/console/Exception/RuntimeException.php +19 -0
  932. package/vendor/symfony/console/Formatter/NullOutputFormatter.php +51 -0
  933. package/vendor/symfony/console/Formatter/NullOutputFormatterStyle.php +48 -0
  934. package/vendor/symfony/console/Formatter/OutputFormatter.php +267 -0
  935. package/vendor/symfony/console/Formatter/OutputFormatterInterface.php +52 -0
  936. package/vendor/symfony/console/Formatter/OutputFormatterStyle.php +89 -0
  937. package/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +50 -0
  938. package/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +103 -0
  939. package/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php +25 -0
  940. package/vendor/symfony/console/Helper/DebugFormatterHelper.php +98 -0
  941. package/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
  942. package/vendor/symfony/console/Helper/Dumper.php +53 -0
  943. package/vendor/symfony/console/Helper/FormatterHelper.php +81 -0
  944. package/vendor/symfony/console/Helper/Helper.php +161 -0
  945. package/vendor/symfony/console/Helper/HelperInterface.php +35 -0
  946. package/vendor/symfony/console/Helper/HelperSet.php +74 -0
  947. package/vendor/symfony/console/Helper/InputAwareHelper.php +30 -0
  948. package/vendor/symfony/console/Helper/OutputWrapper.php +76 -0
  949. package/vendor/symfony/console/Helper/ProcessHelper.php +137 -0
  950. package/vendor/symfony/console/Helper/ProgressBar.php +654 -0
  951. package/vendor/symfony/console/Helper/ProgressIndicator.php +242 -0
  952. package/vendor/symfony/console/Helper/QuestionHelper.php +589 -0
  953. package/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +103 -0
  954. package/vendor/symfony/console/Helper/Table.php +934 -0
  955. package/vendor/symfony/console/Helper/TableCell.php +71 -0
  956. package/vendor/symfony/console/Helper/TableCellStyle.php +84 -0
  957. package/vendor/symfony/console/Helper/TableRows.php +28 -0
  958. package/vendor/symfony/console/Helper/TableSeparator.php +25 -0
  959. package/vendor/symfony/console/Helper/TableStyle.php +375 -0
  960. package/vendor/symfony/console/Helper/TreeHelper.php +111 -0
  961. package/vendor/symfony/console/Helper/TreeNode.php +105 -0
  962. package/vendor/symfony/console/Helper/TreeStyle.php +78 -0
  963. package/vendor/symfony/console/Input/ArgvInput.php +402 -0
  964. package/vendor/symfony/console/Input/ArrayInput.php +191 -0
  965. package/vendor/symfony/console/Input/Input.php +174 -0
  966. package/vendor/symfony/console/Input/InputArgument.php +160 -0
  967. package/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
  968. package/vendor/symfony/console/Input/InputDefinition.php +402 -0
  969. package/vendor/symfony/console/Input/InputInterface.php +138 -0
  970. package/vendor/symfony/console/Input/InputOption.php +262 -0
  971. package/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
  972. package/vendor/symfony/console/Input/StringInput.php +85 -0
  973. package/vendor/symfony/console/LICENSE +19 -0
  974. package/vendor/symfony/console/Logger/ConsoleLogger.php +120 -0
  975. package/vendor/symfony/console/Messenger/RunCommandContext.php +25 -0
  976. package/vendor/symfony/console/Messenger/RunCommandMessage.php +36 -0
  977. package/vendor/symfony/console/Messenger/RunCommandMessageHandler.php +49 -0
  978. package/vendor/symfony/console/Output/AnsiColorMode.php +106 -0
  979. package/vendor/symfony/console/Output/BufferedOutput.php +40 -0
  980. package/vendor/symfony/console/Output/ConsoleOutput.php +153 -0
  981. package/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
  982. package/vendor/symfony/console/Output/ConsoleSectionOutput.php +237 -0
  983. package/vendor/symfony/console/Output/NullOutput.php +94 -0
  984. package/vendor/symfony/console/Output/Output.php +144 -0
  985. package/vendor/symfony/console/Output/OutputInterface.php +103 -0
  986. package/vendor/symfony/console/Output/StreamOutput.php +127 -0
  987. package/vendor/symfony/console/Output/TrimmedBufferOutput.php +58 -0
  988. package/vendor/symfony/console/Question/ChoiceQuestion.php +178 -0
  989. package/vendor/symfony/console/Question/ConfirmationQuestion.php +57 -0
  990. package/vendor/symfony/console/Question/Question.php +280 -0
  991. package/vendor/symfony/console/README.md +27 -0
  992. package/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
  993. package/vendor/symfony/console/Resources/completion.bash +94 -0
  994. package/vendor/symfony/console/Resources/completion.fish +25 -0
  995. package/vendor/symfony/console/Resources/completion.zsh +82 -0
  996. package/vendor/symfony/console/SignalRegistry/SignalMap.php +36 -0
  997. package/vendor/symfony/console/SignalRegistry/SignalRegistry.php +65 -0
  998. package/vendor/symfony/console/SingleCommandApplication.php +72 -0
  999. package/vendor/symfony/console/Style/OutputStyle.php +115 -0
  1000. package/vendor/symfony/console/Style/StyleInterface.php +110 -0
  1001. package/vendor/symfony/console/Style/SymfonyStyle.php +476 -0
  1002. package/vendor/symfony/console/Terminal.php +227 -0
  1003. package/vendor/symfony/console/Tester/ApplicationTester.php +83 -0
  1004. package/vendor/symfony/console/Tester/CommandCompletionTester.php +54 -0
  1005. package/vendor/symfony/console/Tester/CommandTester.php +74 -0
  1006. package/vendor/symfony/console/Tester/Constraint/CommandIsSuccessful.php +43 -0
  1007. package/vendor/symfony/console/Tester/TesterTrait.php +178 -0
  1008. package/vendor/symfony/console/composer.json +55 -0
  1009. package/vendor/symfony/deprecation-contracts/CHANGELOG.md +5 -0
  1010. package/vendor/symfony/deprecation-contracts/LICENSE +19 -0
  1011. package/vendor/symfony/deprecation-contracts/README.md +26 -0
  1012. package/vendor/symfony/deprecation-contracts/composer.json +35 -0
  1013. package/vendor/symfony/deprecation-contracts/function.php +27 -0
  1014. package/vendor/symfony/event-dispatcher/Attribute/AsEventListener.php +35 -0
  1015. package/vendor/symfony/event-dispatcher/CHANGELOG.md +96 -0
  1016. package/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +355 -0
  1017. package/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +143 -0
  1018. package/vendor/symfony/event-dispatcher/DependencyInjection/AddEventAliasesPass.php +38 -0
  1019. package/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +213 -0
  1020. package/vendor/symfony/event-dispatcher/EventDispatcher.php +256 -0
  1021. package/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +66 -0
  1022. package/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +49 -0
  1023. package/vendor/symfony/event-dispatcher/GenericEvent.php +155 -0
  1024. package/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +65 -0
  1025. package/vendor/symfony/event-dispatcher/LICENSE +19 -0
  1026. package/vendor/symfony/event-dispatcher/README.md +15 -0
  1027. package/vendor/symfony/event-dispatcher/composer.json +47 -0
  1028. package/vendor/symfony/event-dispatcher-contracts/CHANGELOG.md +5 -0
  1029. package/vendor/symfony/event-dispatcher-contracts/Event.php +51 -0
  1030. package/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php +33 -0
  1031. package/vendor/symfony/event-dispatcher-contracts/LICENSE +19 -0
  1032. package/vendor/symfony/event-dispatcher-contracts/README.md +9 -0
  1033. package/vendor/symfony/event-dispatcher-contracts/composer.json +35 -0
  1034. package/vendor/symfony/filesystem/CHANGELOG.md +92 -0
  1035. package/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
  1036. package/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
  1037. package/vendor/symfony/filesystem/Exception/IOException.php +36 -0
  1038. package/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +25 -0
  1039. package/vendor/symfony/filesystem/Exception/InvalidArgumentException.php +19 -0
  1040. package/vendor/symfony/filesystem/Exception/RuntimeException.php +19 -0
  1041. package/vendor/symfony/filesystem/Filesystem.php +773 -0
  1042. package/vendor/symfony/filesystem/LICENSE +19 -0
  1043. package/vendor/symfony/filesystem/Path.php +816 -0
  1044. package/vendor/symfony/filesystem/README.md +13 -0
  1045. package/vendor/symfony/filesystem/composer.json +33 -0
  1046. package/vendor/symfony/finder/CHANGELOG.md +103 -0
  1047. package/vendor/symfony/finder/Comparator/Comparator.php +62 -0
  1048. package/vendor/symfony/finder/Comparator/DateComparator.php +50 -0
  1049. package/vendor/symfony/finder/Comparator/NumberComparator.php +78 -0
  1050. package/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
  1051. package/vendor/symfony/finder/Exception/DirectoryNotFoundException.php +19 -0
  1052. package/vendor/symfony/finder/Finder.php +852 -0
  1053. package/vendor/symfony/finder/Gitignore.php +91 -0
  1054. package/vendor/symfony/finder/Glob.php +109 -0
  1055. package/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
  1056. package/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
  1057. package/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +48 -0
  1058. package/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +110 -0
  1059. package/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +51 -0
  1060. package/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
  1061. package/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +45 -0
  1062. package/vendor/symfony/finder/Iterator/LazyIterator.php +32 -0
  1063. package/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +107 -0
  1064. package/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
  1065. package/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +134 -0
  1066. package/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
  1067. package/vendor/symfony/finder/Iterator/SortableIterator.php +103 -0
  1068. package/vendor/symfony/finder/Iterator/VcsIgnoredFilterIterator.php +173 -0
  1069. package/vendor/symfony/finder/LICENSE +19 -0
  1070. package/vendor/symfony/finder/README.md +14 -0
  1071. package/vendor/symfony/finder/SplFileInfo.php +80 -0
  1072. package/vendor/symfony/finder/composer.json +31 -0
  1073. package/vendor/symfony/options-resolver/CHANGELOG.md +103 -0
  1074. package/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +114 -0
  1075. package/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
  1076. package/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
  1077. package/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
  1078. package/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
  1079. package/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
  1080. package/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
  1081. package/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
  1082. package/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
  1083. package/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
  1084. package/vendor/symfony/options-resolver/LICENSE +19 -0
  1085. package/vendor/symfony/options-resolver/OptionConfigurator.php +160 -0
  1086. package/vendor/symfony/options-resolver/Options.php +22 -0
  1087. package/vendor/symfony/options-resolver/OptionsResolver.php +1396 -0
  1088. package/vendor/symfony/options-resolver/README.md +15 -0
  1089. package/vendor/symfony/options-resolver/composer.json +29 -0
  1090. package/vendor/symfony/polyfill-ctype/Ctype.php +232 -0
  1091. package/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  1092. package/vendor/symfony/polyfill-ctype/README.md +12 -0
  1093. package/vendor/symfony/polyfill-ctype/bootstrap.php +50 -0
  1094. package/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -0
  1095. package/vendor/symfony/polyfill-ctype/composer.json +38 -0
  1096. package/vendor/symfony/polyfill-intl-grapheme/Grapheme.php +247 -0
  1097. package/vendor/symfony/polyfill-intl-grapheme/LICENSE +19 -0
  1098. package/vendor/symfony/polyfill-intl-grapheme/README.md +31 -0
  1099. package/vendor/symfony/polyfill-intl-grapheme/bootstrap.php +58 -0
  1100. package/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php +50 -0
  1101. package/vendor/symfony/polyfill-intl-grapheme/composer.json +35 -0
  1102. package/vendor/symfony/polyfill-intl-normalizer/LICENSE +19 -0
  1103. package/vendor/symfony/polyfill-intl-normalizer/Normalizer.php +310 -0
  1104. package/vendor/symfony/polyfill-intl-normalizer/README.md +14 -0
  1105. package/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php +17 -0
  1106. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php +945 -0
  1107. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php +2065 -0
  1108. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php +876 -0
  1109. package/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php +3695 -0
  1110. package/vendor/symfony/polyfill-intl-normalizer/bootstrap.php +23 -0
  1111. package/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php +19 -0
  1112. package/vendor/symfony/polyfill-intl-normalizer/composer.json +36 -0
  1113. package/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  1114. package/vendor/symfony/polyfill-mbstring/Mbstring.php +1045 -0
  1115. package/vendor/symfony/polyfill-mbstring/README.md +13 -0
  1116. package/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -0
  1117. package/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
  1118. package/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  1119. package/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -0
  1120. package/vendor/symfony/polyfill-mbstring/bootstrap.php +172 -0
  1121. package/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -0
  1122. package/vendor/symfony/polyfill-mbstring/composer.json +39 -0
  1123. package/vendor/symfony/polyfill-php80/LICENSE +19 -0
  1124. package/vendor/symfony/polyfill-php80/Php80.php +115 -0
  1125. package/vendor/symfony/polyfill-php80/PhpToken.php +106 -0
  1126. package/vendor/symfony/polyfill-php80/README.md +25 -0
  1127. package/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -0
  1128. package/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -0
  1129. package/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -0
  1130. package/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -0
  1131. package/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -0
  1132. package/vendor/symfony/polyfill-php80/bootstrap.php +42 -0
  1133. package/vendor/symfony/polyfill-php80/composer.json +37 -0
  1134. package/vendor/symfony/polyfill-php81/LICENSE +19 -0
  1135. package/vendor/symfony/polyfill-php81/Php81.php +37 -0
  1136. package/vendor/symfony/polyfill-php81/README.md +18 -0
  1137. package/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php +51 -0
  1138. package/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php +20 -0
  1139. package/vendor/symfony/polyfill-php81/bootstrap.php +28 -0
  1140. package/vendor/symfony/polyfill-php81/composer.json +33 -0
  1141. package/vendor/symfony/process/CHANGELOG.md +134 -0
  1142. package/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
  1143. package/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
  1144. package/vendor/symfony/process/Exception/LogicException.php +21 -0
  1145. package/vendor/symfony/process/Exception/ProcessFailedException.php +53 -0
  1146. package/vendor/symfony/process/Exception/ProcessSignaledException.php +38 -0
  1147. package/vendor/symfony/process/Exception/ProcessStartFailedException.php +43 -0
  1148. package/vendor/symfony/process/Exception/ProcessTimedOutException.php +60 -0
  1149. package/vendor/symfony/process/Exception/RunProcessFailedException.php +25 -0
  1150. package/vendor/symfony/process/Exception/RuntimeException.php +21 -0
  1151. package/vendor/symfony/process/ExecutableFinder.php +103 -0
  1152. package/vendor/symfony/process/InputStream.php +91 -0
  1153. package/vendor/symfony/process/LICENSE +19 -0
  1154. package/vendor/symfony/process/Messenger/RunProcessContext.php +33 -0
  1155. package/vendor/symfony/process/Messenger/RunProcessMessage.php +47 -0
  1156. package/vendor/symfony/process/Messenger/RunProcessMessageHandler.php +36 -0
  1157. package/vendor/symfony/process/PhpExecutableFinder.php +98 -0
  1158. package/vendor/symfony/process/PhpProcess.php +66 -0
  1159. package/vendor/symfony/process/PhpSubprocess.php +164 -0
  1160. package/vendor/symfony/process/Pipes/AbstractPipes.php +176 -0
  1161. package/vendor/symfony/process/Pipes/PipesInterface.php +61 -0
  1162. package/vendor/symfony/process/Pipes/UnixPipes.php +144 -0
  1163. package/vendor/symfony/process/Pipes/WindowsPipes.php +185 -0
  1164. package/vendor/symfony/process/Process.php +1662 -0
  1165. package/vendor/symfony/process/ProcessUtils.php +64 -0
  1166. package/vendor/symfony/process/README.md +13 -0
  1167. package/vendor/symfony/process/composer.json +28 -0
  1168. package/vendor/symfony/service-contracts/Attribute/Required.php +25 -0
  1169. package/vendor/symfony/service-contracts/Attribute/SubscribedService.php +47 -0
  1170. package/vendor/symfony/service-contracts/CHANGELOG.md +5 -0
  1171. package/vendor/symfony/service-contracts/LICENSE +19 -0
  1172. package/vendor/symfony/service-contracts/README.md +9 -0
  1173. package/vendor/symfony/service-contracts/ResetInterface.php +33 -0
  1174. package/vendor/symfony/service-contracts/ServiceCollectionInterface.php +26 -0
  1175. package/vendor/symfony/service-contracts/ServiceLocatorTrait.php +114 -0
  1176. package/vendor/symfony/service-contracts/ServiceMethodsSubscriberTrait.php +80 -0
  1177. package/vendor/symfony/service-contracts/ServiceProviderInterface.php +45 -0
  1178. package/vendor/symfony/service-contracts/ServiceSubscriberInterface.php +62 -0
  1179. package/vendor/symfony/service-contracts/ServiceSubscriberTrait.php +84 -0
  1180. package/vendor/symfony/service-contracts/Test/ServiceLocatorTest.php +23 -0
  1181. package/vendor/symfony/service-contracts/Test/ServiceLocatorTestCase.php +97 -0
  1182. package/vendor/symfony/service-contracts/composer.json +42 -0
  1183. package/vendor/symfony/stopwatch/CHANGELOG.md +30 -0
  1184. package/vendor/symfony/stopwatch/LICENSE +19 -0
  1185. package/vendor/symfony/stopwatch/README.md +42 -0
  1186. package/vendor/symfony/stopwatch/Section.php +155 -0
  1187. package/vendor/symfony/stopwatch/Stopwatch.php +163 -0
  1188. package/vendor/symfony/stopwatch/StopwatchEvent.php +238 -0
  1189. package/vendor/symfony/stopwatch/StopwatchPeriod.php +73 -0
  1190. package/vendor/symfony/stopwatch/composer.json +29 -0
  1191. package/vendor/symfony/string/AbstractString.php +723 -0
  1192. package/vendor/symfony/string/AbstractUnicodeString.php +670 -0
  1193. package/vendor/symfony/string/ByteString.php +490 -0
  1194. package/vendor/symfony/string/CHANGELOG.md +56 -0
  1195. package/vendor/symfony/string/CodePointString.php +260 -0
  1196. package/vendor/symfony/string/Exception/ExceptionInterface.php +16 -0
  1197. package/vendor/symfony/string/Exception/InvalidArgumentException.php +16 -0
  1198. package/vendor/symfony/string/Exception/RuntimeException.php +16 -0
  1199. package/vendor/symfony/string/Inflector/EnglishInflector.php +589 -0
  1200. package/vendor/symfony/string/Inflector/FrenchInflector.php +151 -0
  1201. package/vendor/symfony/string/Inflector/InflectorInterface.php +33 -0
  1202. package/vendor/symfony/string/Inflector/SpanishInflector.php +126 -0
  1203. package/vendor/symfony/string/LICENSE +19 -0
  1204. package/vendor/symfony/string/LazyString.php +145 -0
  1205. package/vendor/symfony/string/README.md +14 -0
  1206. package/vendor/symfony/string/Resources/data/wcswidth_table_wide.php +1182 -0
  1207. package/vendor/symfony/string/Resources/data/wcswidth_table_zero.php +1466 -0
  1208. package/vendor/symfony/string/Resources/functions.php +38 -0
  1209. package/vendor/symfony/string/Slugger/AsciiSlugger.php +207 -0
  1210. package/vendor/symfony/string/Slugger/SluggerInterface.php +27 -0
  1211. package/vendor/symfony/string/TruncateMode.php +42 -0
  1212. package/vendor/symfony/string/UnicodeString.php +382 -0
  1213. package/vendor/symfony/string/composer.json +44 -0
  1214. package/bin-codeformat.sh +0 -35
  1215. /package/{LICENSE → LICENCE} +0 -0
package/composer.lock ADDED
@@ -0,0 +1,3231 @@
1
+ {
2
+ "_readme": [
3
+ "This file locks the dependencies of your project to a known state",
4
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+ "This file is @generated automatically"
6
+ ],
7
+ "content-hash": "c6ccb3667ba8d0da2ed103b87f02c81d",
8
+ "packages": [],
9
+ "packages-dev": [
10
+ {
11
+ "name": "clue/ndjson-react",
12
+ "version": "v1.3.0",
13
+ "source": {
14
+ "type": "git",
15
+ "url": "https://github.com/clue/reactphp-ndjson.git",
16
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
17
+ },
18
+ "dist": {
19
+ "type": "zip",
20
+ "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
21
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
22
+ "shasum": ""
23
+ },
24
+ "require": {
25
+ "php": ">=5.3",
26
+ "react/stream": "^1.2"
27
+ },
28
+ "require-dev": {
29
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
30
+ "react/event-loop": "^1.2"
31
+ },
32
+ "type": "library",
33
+ "autoload": {
34
+ "psr-4": {
35
+ "Clue\\React\\NDJson\\": "src/"
36
+ }
37
+ },
38
+ "notification-url": "https://packagist.org/downloads/",
39
+ "license": ["MIT"],
40
+ "authors": [
41
+ {
42
+ "name": "Christian Lück",
43
+ "email": "christian@clue.engineering"
44
+ }
45
+ ],
46
+ "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
47
+ "homepage": "https://github.com/clue/reactphp-ndjson",
48
+ "keywords": ["NDJSON", "json", "jsonlines", "newline", "reactphp", "streaming"],
49
+ "support": {
50
+ "issues": "https://github.com/clue/reactphp-ndjson/issues",
51
+ "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
52
+ },
53
+ "funding": [
54
+ {
55
+ "url": "https://clue.engineering/support",
56
+ "type": "custom"
57
+ },
58
+ {
59
+ "url": "https://github.com/clue",
60
+ "type": "github"
61
+ }
62
+ ],
63
+ "time": "2022-12-23T10:58:28+00:00"
64
+ },
65
+ {
66
+ "name": "composer/pcre",
67
+ "version": "3.3.2",
68
+ "source": {
69
+ "type": "git",
70
+ "url": "https://github.com/composer/pcre.git",
71
+ "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
72
+ },
73
+ "dist": {
74
+ "type": "zip",
75
+ "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
76
+ "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
77
+ "shasum": ""
78
+ },
79
+ "require": {
80
+ "php": "^7.4 || ^8.0"
81
+ },
82
+ "conflict": {
83
+ "phpstan/phpstan": "<1.11.10"
84
+ },
85
+ "require-dev": {
86
+ "phpstan/phpstan": "^1.12 || ^2",
87
+ "phpstan/phpstan-strict-rules": "^1 || ^2",
88
+ "phpunit/phpunit": "^8 || ^9"
89
+ },
90
+ "type": "library",
91
+ "extra": {
92
+ "phpstan": {
93
+ "includes": ["extension.neon"]
94
+ },
95
+ "branch-alias": {
96
+ "dev-main": "3.x-dev"
97
+ }
98
+ },
99
+ "autoload": {
100
+ "psr-4": {
101
+ "Composer\\Pcre\\": "src"
102
+ }
103
+ },
104
+ "notification-url": "https://packagist.org/downloads/",
105
+ "license": ["MIT"],
106
+ "authors": [
107
+ {
108
+ "name": "Jordi Boggiano",
109
+ "email": "j.boggiano@seld.be",
110
+ "homepage": "http://seld.be"
111
+ }
112
+ ],
113
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
114
+ "keywords": ["PCRE", "preg", "regex", "regular expression"],
115
+ "support": {
116
+ "issues": "https://github.com/composer/pcre/issues",
117
+ "source": "https://github.com/composer/pcre/tree/3.3.2"
118
+ },
119
+ "funding": [
120
+ {
121
+ "url": "https://packagist.com",
122
+ "type": "custom"
123
+ },
124
+ {
125
+ "url": "https://github.com/composer",
126
+ "type": "github"
127
+ },
128
+ {
129
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
130
+ "type": "tidelift"
131
+ }
132
+ ],
133
+ "time": "2024-11-12T16:29:46+00:00"
134
+ },
135
+ {
136
+ "name": "composer/semver",
137
+ "version": "3.4.3",
138
+ "source": {
139
+ "type": "git",
140
+ "url": "https://github.com/composer/semver.git",
141
+ "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
142
+ },
143
+ "dist": {
144
+ "type": "zip",
145
+ "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
146
+ "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
147
+ "shasum": ""
148
+ },
149
+ "require": {
150
+ "php": "^5.3.2 || ^7.0 || ^8.0"
151
+ },
152
+ "require-dev": {
153
+ "phpstan/phpstan": "^1.11",
154
+ "symfony/phpunit-bridge": "^3 || ^7"
155
+ },
156
+ "type": "library",
157
+ "extra": {
158
+ "branch-alias": {
159
+ "dev-main": "3.x-dev"
160
+ }
161
+ },
162
+ "autoload": {
163
+ "psr-4": {
164
+ "Composer\\Semver\\": "src"
165
+ }
166
+ },
167
+ "notification-url": "https://packagist.org/downloads/",
168
+ "license": ["MIT"],
169
+ "authors": [
170
+ {
171
+ "name": "Nils Adermann",
172
+ "email": "naderman@naderman.de",
173
+ "homepage": "http://www.naderman.de"
174
+ },
175
+ {
176
+ "name": "Jordi Boggiano",
177
+ "email": "j.boggiano@seld.be",
178
+ "homepage": "http://seld.be"
179
+ },
180
+ {
181
+ "name": "Rob Bast",
182
+ "email": "rob.bast@gmail.com",
183
+ "homepage": "http://robbast.nl"
184
+ }
185
+ ],
186
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
187
+ "keywords": ["semantic", "semver", "validation", "versioning"],
188
+ "support": {
189
+ "irc": "ircs://irc.libera.chat:6697/composer",
190
+ "issues": "https://github.com/composer/semver/issues",
191
+ "source": "https://github.com/composer/semver/tree/3.4.3"
192
+ },
193
+ "funding": [
194
+ {
195
+ "url": "https://packagist.com",
196
+ "type": "custom"
197
+ },
198
+ {
199
+ "url": "https://github.com/composer",
200
+ "type": "github"
201
+ },
202
+ {
203
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
204
+ "type": "tidelift"
205
+ }
206
+ ],
207
+ "time": "2024-09-19T14:15:21+00:00"
208
+ },
209
+ {
210
+ "name": "composer/xdebug-handler",
211
+ "version": "3.0.5",
212
+ "source": {
213
+ "type": "git",
214
+ "url": "https://github.com/composer/xdebug-handler.git",
215
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
216
+ },
217
+ "dist": {
218
+ "type": "zip",
219
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
220
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
221
+ "shasum": ""
222
+ },
223
+ "require": {
224
+ "composer/pcre": "^1 || ^2 || ^3",
225
+ "php": "^7.2.5 || ^8.0",
226
+ "psr/log": "^1 || ^2 || ^3"
227
+ },
228
+ "require-dev": {
229
+ "phpstan/phpstan": "^1.0",
230
+ "phpstan/phpstan-strict-rules": "^1.1",
231
+ "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
232
+ },
233
+ "type": "library",
234
+ "autoload": {
235
+ "psr-4": {
236
+ "Composer\\XdebugHandler\\": "src"
237
+ }
238
+ },
239
+ "notification-url": "https://packagist.org/downloads/",
240
+ "license": ["MIT"],
241
+ "authors": [
242
+ {
243
+ "name": "John Stevenson",
244
+ "email": "john-stevenson@blueyonder.co.uk"
245
+ }
246
+ ],
247
+ "description": "Restarts a process without Xdebug.",
248
+ "keywords": ["Xdebug", "performance"],
249
+ "support": {
250
+ "irc": "ircs://irc.libera.chat:6697/composer",
251
+ "issues": "https://github.com/composer/xdebug-handler/issues",
252
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
253
+ },
254
+ "funding": [
255
+ {
256
+ "url": "https://packagist.com",
257
+ "type": "custom"
258
+ },
259
+ {
260
+ "url": "https://github.com/composer",
261
+ "type": "github"
262
+ },
263
+ {
264
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
265
+ "type": "tidelift"
266
+ }
267
+ ],
268
+ "time": "2024-05-06T16:37:16+00:00"
269
+ },
270
+ {
271
+ "name": "evenement/evenement",
272
+ "version": "v3.0.2",
273
+ "source": {
274
+ "type": "git",
275
+ "url": "https://github.com/igorw/evenement.git",
276
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
277
+ },
278
+ "dist": {
279
+ "type": "zip",
280
+ "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
281
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
282
+ "shasum": ""
283
+ },
284
+ "require": {
285
+ "php": ">=7.0"
286
+ },
287
+ "require-dev": {
288
+ "phpunit/phpunit": "^9 || ^6"
289
+ },
290
+ "type": "library",
291
+ "autoload": {
292
+ "psr-4": {
293
+ "Evenement\\": "src/"
294
+ }
295
+ },
296
+ "notification-url": "https://packagist.org/downloads/",
297
+ "license": ["MIT"],
298
+ "authors": [
299
+ {
300
+ "name": "Igor Wiedler",
301
+ "email": "igor@wiedler.ch"
302
+ }
303
+ ],
304
+ "description": "Événement is a very simple event dispatching library for PHP",
305
+ "keywords": ["event-dispatcher", "event-emitter"],
306
+ "support": {
307
+ "issues": "https://github.com/igorw/evenement/issues",
308
+ "source": "https://github.com/igorw/evenement/tree/v3.0.2"
309
+ },
310
+ "time": "2023-08-08T05:53:35+00:00"
311
+ },
312
+ {
313
+ "name": "fidry/cpu-core-counter",
314
+ "version": "1.2.0",
315
+ "source": {
316
+ "type": "git",
317
+ "url": "https://github.com/theofidry/cpu-core-counter.git",
318
+ "reference": "8520451a140d3f46ac33042715115e290cf5785f"
319
+ },
320
+ "dist": {
321
+ "type": "zip",
322
+ "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
323
+ "reference": "8520451a140d3f46ac33042715115e290cf5785f",
324
+ "shasum": ""
325
+ },
326
+ "require": {
327
+ "php": "^7.2 || ^8.0"
328
+ },
329
+ "require-dev": {
330
+ "fidry/makefile": "^0.2.0",
331
+ "fidry/php-cs-fixer-config": "^1.1.2",
332
+ "phpstan/extension-installer": "^1.2.0",
333
+ "phpstan/phpstan": "^1.9.2",
334
+ "phpstan/phpstan-deprecation-rules": "^1.0.0",
335
+ "phpstan/phpstan-phpunit": "^1.2.2",
336
+ "phpstan/phpstan-strict-rules": "^1.4.4",
337
+ "phpunit/phpunit": "^8.5.31 || ^9.5.26",
338
+ "webmozarts/strict-phpunit": "^7.5"
339
+ },
340
+ "type": "library",
341
+ "autoload": {
342
+ "psr-4": {
343
+ "Fidry\\CpuCoreCounter\\": "src/"
344
+ }
345
+ },
346
+ "notification-url": "https://packagist.org/downloads/",
347
+ "license": ["MIT"],
348
+ "authors": [
349
+ {
350
+ "name": "Théo FIDRY",
351
+ "email": "theo.fidry@gmail.com"
352
+ }
353
+ ],
354
+ "description": "Tiny utility to get the number of CPU cores.",
355
+ "keywords": ["CPU", "core"],
356
+ "support": {
357
+ "issues": "https://github.com/theofidry/cpu-core-counter/issues",
358
+ "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
359
+ },
360
+ "funding": [
361
+ {
362
+ "url": "https://github.com/theofidry",
363
+ "type": "github"
364
+ }
365
+ ],
366
+ "time": "2024-08-06T10:04:20+00:00"
367
+ },
368
+ {
369
+ "name": "friendsofphp/php-cs-fixer",
370
+ "version": "v3.75.0",
371
+ "source": {
372
+ "type": "git",
373
+ "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
374
+ "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c"
375
+ },
376
+ "dist": {
377
+ "type": "zip",
378
+ "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/399a128ff2fdaf4281e4e79b755693286cdf325c",
379
+ "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c",
380
+ "shasum": ""
381
+ },
382
+ "require": {
383
+ "clue/ndjson-react": "^1.0",
384
+ "composer/semver": "^3.4",
385
+ "composer/xdebug-handler": "^3.0.3",
386
+ "ext-filter": "*",
387
+ "ext-hash": "*",
388
+ "ext-json": "*",
389
+ "ext-tokenizer": "*",
390
+ "fidry/cpu-core-counter": "^1.2",
391
+ "php": "^7.4 || ^8.0",
392
+ "react/child-process": "^0.6.5",
393
+ "react/event-loop": "^1.0",
394
+ "react/promise": "^2.0 || ^3.0",
395
+ "react/socket": "^1.0",
396
+ "react/stream": "^1.0",
397
+ "sebastian/diff": "^4.0 || ^5.1 || ^6.0 || ^7.0",
398
+ "symfony/console": "^5.4 || ^6.4 || ^7.0",
399
+ "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
400
+ "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
401
+ "symfony/finder": "^5.4 || ^6.4 || ^7.0",
402
+ "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
403
+ "symfony/polyfill-mbstring": "^1.31",
404
+ "symfony/polyfill-php80": "^1.31",
405
+ "symfony/polyfill-php81": "^1.31",
406
+ "symfony/process": "^5.4 || ^6.4 || ^7.2",
407
+ "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
408
+ },
409
+ "require-dev": {
410
+ "facile-it/paraunit": "^1.3.1 || ^2.6",
411
+ "infection/infection": "^0.29.14",
412
+ "justinrainbow/json-schema": "^5.3 || ^6.2",
413
+ "keradus/cli-executor": "^2.1",
414
+ "mikey179/vfsstream": "^1.6.12",
415
+ "php-coveralls/php-coveralls": "^2.7",
416
+ "php-cs-fixer/accessible-object": "^1.1",
417
+ "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6",
418
+ "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6",
419
+ "phpunit/phpunit": "^9.6.22 || ^10.5.45 || ^11.5.12",
420
+ "symfony/var-dumper": "^5.4.48 || ^6.4.18 || ^7.2.3",
421
+ "symfony/yaml": "^5.4.45 || ^6.4.18 || ^7.2.3"
422
+ },
423
+ "suggest": {
424
+ "ext-dom": "For handling output formats in XML",
425
+ "ext-mbstring": "For handling non-UTF8 characters."
426
+ },
427
+ "bin": ["php-cs-fixer"],
428
+ "type": "application",
429
+ "autoload": {
430
+ "psr-4": {
431
+ "PhpCsFixer\\": "src/"
432
+ },
433
+ "exclude-from-classmap": ["src/Fixer/Internal/*"]
434
+ },
435
+ "notification-url": "https://packagist.org/downloads/",
436
+ "license": ["MIT"],
437
+ "authors": [
438
+ {
439
+ "name": "Fabien Potencier",
440
+ "email": "fabien@symfony.com"
441
+ },
442
+ {
443
+ "name": "Dariusz Rumiński",
444
+ "email": "dariusz.ruminski@gmail.com"
445
+ }
446
+ ],
447
+ "description": "A tool to automatically fix PHP code style",
448
+ "keywords": ["Static code analysis", "fixer", "standards", "static analysis"],
449
+ "support": {
450
+ "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
451
+ "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.75.0"
452
+ },
453
+ "funding": [
454
+ {
455
+ "url": "https://github.com/keradus",
456
+ "type": "github"
457
+ }
458
+ ],
459
+ "time": "2025-03-31T18:40:42+00:00"
460
+ },
461
+ {
462
+ "name": "psr/container",
463
+ "version": "2.0.2",
464
+ "source": {
465
+ "type": "git",
466
+ "url": "https://github.com/php-fig/container.git",
467
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
468
+ },
469
+ "dist": {
470
+ "type": "zip",
471
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
472
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
473
+ "shasum": ""
474
+ },
475
+ "require": {
476
+ "php": ">=7.4.0"
477
+ },
478
+ "type": "library",
479
+ "extra": {
480
+ "branch-alias": {
481
+ "dev-master": "2.0.x-dev"
482
+ }
483
+ },
484
+ "autoload": {
485
+ "psr-4": {
486
+ "Psr\\Container\\": "src/"
487
+ }
488
+ },
489
+ "notification-url": "https://packagist.org/downloads/",
490
+ "license": ["MIT"],
491
+ "authors": [
492
+ {
493
+ "name": "PHP-FIG",
494
+ "homepage": "https://www.php-fig.org/"
495
+ }
496
+ ],
497
+ "description": "Common Container Interface (PHP FIG PSR-11)",
498
+ "homepage": "https://github.com/php-fig/container",
499
+ "keywords": ["PSR-11", "container", "container-interface", "container-interop", "psr"],
500
+ "support": {
501
+ "issues": "https://github.com/php-fig/container/issues",
502
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
503
+ },
504
+ "time": "2021-11-05T16:47:00+00:00"
505
+ },
506
+ {
507
+ "name": "psr/event-dispatcher",
508
+ "version": "1.0.0",
509
+ "source": {
510
+ "type": "git",
511
+ "url": "https://github.com/php-fig/event-dispatcher.git",
512
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
513
+ },
514
+ "dist": {
515
+ "type": "zip",
516
+ "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
517
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
518
+ "shasum": ""
519
+ },
520
+ "require": {
521
+ "php": ">=7.2.0"
522
+ },
523
+ "type": "library",
524
+ "extra": {
525
+ "branch-alias": {
526
+ "dev-master": "1.0.x-dev"
527
+ }
528
+ },
529
+ "autoload": {
530
+ "psr-4": {
531
+ "Psr\\EventDispatcher\\": "src/"
532
+ }
533
+ },
534
+ "notification-url": "https://packagist.org/downloads/",
535
+ "license": ["MIT"],
536
+ "authors": [
537
+ {
538
+ "name": "PHP-FIG",
539
+ "homepage": "http://www.php-fig.org/"
540
+ }
541
+ ],
542
+ "description": "Standard interfaces for event handling.",
543
+ "keywords": ["events", "psr", "psr-14"],
544
+ "support": {
545
+ "issues": "https://github.com/php-fig/event-dispatcher/issues",
546
+ "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
547
+ },
548
+ "time": "2019-01-08T18:20:26+00:00"
549
+ },
550
+ {
551
+ "name": "psr/log",
552
+ "version": "3.0.2",
553
+ "source": {
554
+ "type": "git",
555
+ "url": "https://github.com/php-fig/log.git",
556
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
557
+ },
558
+ "dist": {
559
+ "type": "zip",
560
+ "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
561
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
562
+ "shasum": ""
563
+ },
564
+ "require": {
565
+ "php": ">=8.0.0"
566
+ },
567
+ "type": "library",
568
+ "extra": {
569
+ "branch-alias": {
570
+ "dev-master": "3.x-dev"
571
+ }
572
+ },
573
+ "autoload": {
574
+ "psr-4": {
575
+ "Psr\\Log\\": "src"
576
+ }
577
+ },
578
+ "notification-url": "https://packagist.org/downloads/",
579
+ "license": ["MIT"],
580
+ "authors": [
581
+ {
582
+ "name": "PHP-FIG",
583
+ "homepage": "https://www.php-fig.org/"
584
+ }
585
+ ],
586
+ "description": "Common interface for logging libraries",
587
+ "homepage": "https://github.com/php-fig/log",
588
+ "keywords": ["log", "psr", "psr-3"],
589
+ "support": {
590
+ "source": "https://github.com/php-fig/log/tree/3.0.2"
591
+ },
592
+ "time": "2024-09-11T13:17:53+00:00"
593
+ },
594
+ {
595
+ "name": "react/cache",
596
+ "version": "v1.2.0",
597
+ "source": {
598
+ "type": "git",
599
+ "url": "https://github.com/reactphp/cache.git",
600
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
601
+ },
602
+ "dist": {
603
+ "type": "zip",
604
+ "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
605
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
606
+ "shasum": ""
607
+ },
608
+ "require": {
609
+ "php": ">=5.3.0",
610
+ "react/promise": "^3.0 || ^2.0 || ^1.1"
611
+ },
612
+ "require-dev": {
613
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
614
+ },
615
+ "type": "library",
616
+ "autoload": {
617
+ "psr-4": {
618
+ "React\\Cache\\": "src/"
619
+ }
620
+ },
621
+ "notification-url": "https://packagist.org/downloads/",
622
+ "license": ["MIT"],
623
+ "authors": [
624
+ {
625
+ "name": "Christian Lück",
626
+ "email": "christian@clue.engineering",
627
+ "homepage": "https://clue.engineering/"
628
+ },
629
+ {
630
+ "name": "Cees-Jan Kiewiet",
631
+ "email": "reactphp@ceesjankiewiet.nl",
632
+ "homepage": "https://wyrihaximus.net/"
633
+ },
634
+ {
635
+ "name": "Jan Sorgalla",
636
+ "email": "jsorgalla@gmail.com",
637
+ "homepage": "https://sorgalla.com/"
638
+ },
639
+ {
640
+ "name": "Chris Boden",
641
+ "email": "cboden@gmail.com",
642
+ "homepage": "https://cboden.dev/"
643
+ }
644
+ ],
645
+ "description": "Async, Promise-based cache interface for ReactPHP",
646
+ "keywords": ["cache", "caching", "promise", "reactphp"],
647
+ "support": {
648
+ "issues": "https://github.com/reactphp/cache/issues",
649
+ "source": "https://github.com/reactphp/cache/tree/v1.2.0"
650
+ },
651
+ "funding": [
652
+ {
653
+ "url": "https://opencollective.com/reactphp",
654
+ "type": "open_collective"
655
+ }
656
+ ],
657
+ "time": "2022-11-30T15:59:55+00:00"
658
+ },
659
+ {
660
+ "name": "react/child-process",
661
+ "version": "v0.6.6",
662
+ "source": {
663
+ "type": "git",
664
+ "url": "https://github.com/reactphp/child-process.git",
665
+ "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
666
+ },
667
+ "dist": {
668
+ "type": "zip",
669
+ "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
670
+ "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
671
+ "shasum": ""
672
+ },
673
+ "require": {
674
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
675
+ "php": ">=5.3.0",
676
+ "react/event-loop": "^1.2",
677
+ "react/stream": "^1.4"
678
+ },
679
+ "require-dev": {
680
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
681
+ "react/socket": "^1.16",
682
+ "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
683
+ },
684
+ "type": "library",
685
+ "autoload": {
686
+ "psr-4": {
687
+ "React\\ChildProcess\\": "src/"
688
+ }
689
+ },
690
+ "notification-url": "https://packagist.org/downloads/",
691
+ "license": ["MIT"],
692
+ "authors": [
693
+ {
694
+ "name": "Christian Lück",
695
+ "email": "christian@clue.engineering",
696
+ "homepage": "https://clue.engineering/"
697
+ },
698
+ {
699
+ "name": "Cees-Jan Kiewiet",
700
+ "email": "reactphp@ceesjankiewiet.nl",
701
+ "homepage": "https://wyrihaximus.net/"
702
+ },
703
+ {
704
+ "name": "Jan Sorgalla",
705
+ "email": "jsorgalla@gmail.com",
706
+ "homepage": "https://sorgalla.com/"
707
+ },
708
+ {
709
+ "name": "Chris Boden",
710
+ "email": "cboden@gmail.com",
711
+ "homepage": "https://cboden.dev/"
712
+ }
713
+ ],
714
+ "description": "Event-driven library for executing child processes with ReactPHP.",
715
+ "keywords": ["event-driven", "process", "reactphp"],
716
+ "support": {
717
+ "issues": "https://github.com/reactphp/child-process/issues",
718
+ "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
719
+ },
720
+ "funding": [
721
+ {
722
+ "url": "https://opencollective.com/reactphp",
723
+ "type": "open_collective"
724
+ }
725
+ ],
726
+ "time": "2025-01-01T16:37:48+00:00"
727
+ },
728
+ {
729
+ "name": "react/dns",
730
+ "version": "v1.13.0",
731
+ "source": {
732
+ "type": "git",
733
+ "url": "https://github.com/reactphp/dns.git",
734
+ "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
735
+ },
736
+ "dist": {
737
+ "type": "zip",
738
+ "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
739
+ "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
740
+ "shasum": ""
741
+ },
742
+ "require": {
743
+ "php": ">=5.3.0",
744
+ "react/cache": "^1.0 || ^0.6 || ^0.5",
745
+ "react/event-loop": "^1.2",
746
+ "react/promise": "^3.2 || ^2.7 || ^1.2.1"
747
+ },
748
+ "require-dev": {
749
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
750
+ "react/async": "^4.3 || ^3 || ^2",
751
+ "react/promise-timer": "^1.11"
752
+ },
753
+ "type": "library",
754
+ "autoload": {
755
+ "psr-4": {
756
+ "React\\Dns\\": "src/"
757
+ }
758
+ },
759
+ "notification-url": "https://packagist.org/downloads/",
760
+ "license": ["MIT"],
761
+ "authors": [
762
+ {
763
+ "name": "Christian Lück",
764
+ "email": "christian@clue.engineering",
765
+ "homepage": "https://clue.engineering/"
766
+ },
767
+ {
768
+ "name": "Cees-Jan Kiewiet",
769
+ "email": "reactphp@ceesjankiewiet.nl",
770
+ "homepage": "https://wyrihaximus.net/"
771
+ },
772
+ {
773
+ "name": "Jan Sorgalla",
774
+ "email": "jsorgalla@gmail.com",
775
+ "homepage": "https://sorgalla.com/"
776
+ },
777
+ {
778
+ "name": "Chris Boden",
779
+ "email": "cboden@gmail.com",
780
+ "homepage": "https://cboden.dev/"
781
+ }
782
+ ],
783
+ "description": "Async DNS resolver for ReactPHP",
784
+ "keywords": ["async", "dns", "dns-resolver", "reactphp"],
785
+ "support": {
786
+ "issues": "https://github.com/reactphp/dns/issues",
787
+ "source": "https://github.com/reactphp/dns/tree/v1.13.0"
788
+ },
789
+ "funding": [
790
+ {
791
+ "url": "https://opencollective.com/reactphp",
792
+ "type": "open_collective"
793
+ }
794
+ ],
795
+ "time": "2024-06-13T14:18:03+00:00"
796
+ },
797
+ {
798
+ "name": "react/event-loop",
799
+ "version": "v1.5.0",
800
+ "source": {
801
+ "type": "git",
802
+ "url": "https://github.com/reactphp/event-loop.git",
803
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
804
+ },
805
+ "dist": {
806
+ "type": "zip",
807
+ "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
808
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
809
+ "shasum": ""
810
+ },
811
+ "require": {
812
+ "php": ">=5.3.0"
813
+ },
814
+ "require-dev": {
815
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
816
+ },
817
+ "suggest": {
818
+ "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
819
+ },
820
+ "type": "library",
821
+ "autoload": {
822
+ "psr-4": {
823
+ "React\\EventLoop\\": "src/"
824
+ }
825
+ },
826
+ "notification-url": "https://packagist.org/downloads/",
827
+ "license": ["MIT"],
828
+ "authors": [
829
+ {
830
+ "name": "Christian Lück",
831
+ "email": "christian@clue.engineering",
832
+ "homepage": "https://clue.engineering/"
833
+ },
834
+ {
835
+ "name": "Cees-Jan Kiewiet",
836
+ "email": "reactphp@ceesjankiewiet.nl",
837
+ "homepage": "https://wyrihaximus.net/"
838
+ },
839
+ {
840
+ "name": "Jan Sorgalla",
841
+ "email": "jsorgalla@gmail.com",
842
+ "homepage": "https://sorgalla.com/"
843
+ },
844
+ {
845
+ "name": "Chris Boden",
846
+ "email": "cboden@gmail.com",
847
+ "homepage": "https://cboden.dev/"
848
+ }
849
+ ],
850
+ "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
851
+ "keywords": ["asynchronous", "event-loop"],
852
+ "support": {
853
+ "issues": "https://github.com/reactphp/event-loop/issues",
854
+ "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
855
+ },
856
+ "funding": [
857
+ {
858
+ "url": "https://opencollective.com/reactphp",
859
+ "type": "open_collective"
860
+ }
861
+ ],
862
+ "time": "2023-11-13T13:48:05+00:00"
863
+ },
864
+ {
865
+ "name": "react/promise",
866
+ "version": "v3.2.0",
867
+ "source": {
868
+ "type": "git",
869
+ "url": "https://github.com/reactphp/promise.git",
870
+ "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
871
+ },
872
+ "dist": {
873
+ "type": "zip",
874
+ "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
875
+ "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
876
+ "shasum": ""
877
+ },
878
+ "require": {
879
+ "php": ">=7.1.0"
880
+ },
881
+ "require-dev": {
882
+ "phpstan/phpstan": "1.10.39 || 1.4.10",
883
+ "phpunit/phpunit": "^9.6 || ^7.5"
884
+ },
885
+ "type": "library",
886
+ "autoload": {
887
+ "files": ["src/functions_include.php"],
888
+ "psr-4": {
889
+ "React\\Promise\\": "src/"
890
+ }
891
+ },
892
+ "notification-url": "https://packagist.org/downloads/",
893
+ "license": ["MIT"],
894
+ "authors": [
895
+ {
896
+ "name": "Jan Sorgalla",
897
+ "email": "jsorgalla@gmail.com",
898
+ "homepage": "https://sorgalla.com/"
899
+ },
900
+ {
901
+ "name": "Christian Lück",
902
+ "email": "christian@clue.engineering",
903
+ "homepage": "https://clue.engineering/"
904
+ },
905
+ {
906
+ "name": "Cees-Jan Kiewiet",
907
+ "email": "reactphp@ceesjankiewiet.nl",
908
+ "homepage": "https://wyrihaximus.net/"
909
+ },
910
+ {
911
+ "name": "Chris Boden",
912
+ "email": "cboden@gmail.com",
913
+ "homepage": "https://cboden.dev/"
914
+ }
915
+ ],
916
+ "description": "A lightweight implementation of CommonJS Promises/A for PHP",
917
+ "keywords": ["promise", "promises"],
918
+ "support": {
919
+ "issues": "https://github.com/reactphp/promise/issues",
920
+ "source": "https://github.com/reactphp/promise/tree/v3.2.0"
921
+ },
922
+ "funding": [
923
+ {
924
+ "url": "https://opencollective.com/reactphp",
925
+ "type": "open_collective"
926
+ }
927
+ ],
928
+ "time": "2024-05-24T10:39:05+00:00"
929
+ },
930
+ {
931
+ "name": "react/socket",
932
+ "version": "v1.16.0",
933
+ "source": {
934
+ "type": "git",
935
+ "url": "https://github.com/reactphp/socket.git",
936
+ "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
937
+ },
938
+ "dist": {
939
+ "type": "zip",
940
+ "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
941
+ "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
942
+ "shasum": ""
943
+ },
944
+ "require": {
945
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
946
+ "php": ">=5.3.0",
947
+ "react/dns": "^1.13",
948
+ "react/event-loop": "^1.2",
949
+ "react/promise": "^3.2 || ^2.6 || ^1.2.1",
950
+ "react/stream": "^1.4"
951
+ },
952
+ "require-dev": {
953
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
954
+ "react/async": "^4.3 || ^3.3 || ^2",
955
+ "react/promise-stream": "^1.4",
956
+ "react/promise-timer": "^1.11"
957
+ },
958
+ "type": "library",
959
+ "autoload": {
960
+ "psr-4": {
961
+ "React\\Socket\\": "src/"
962
+ }
963
+ },
964
+ "notification-url": "https://packagist.org/downloads/",
965
+ "license": ["MIT"],
966
+ "authors": [
967
+ {
968
+ "name": "Christian Lück",
969
+ "email": "christian@clue.engineering",
970
+ "homepage": "https://clue.engineering/"
971
+ },
972
+ {
973
+ "name": "Cees-Jan Kiewiet",
974
+ "email": "reactphp@ceesjankiewiet.nl",
975
+ "homepage": "https://wyrihaximus.net/"
976
+ },
977
+ {
978
+ "name": "Jan Sorgalla",
979
+ "email": "jsorgalla@gmail.com",
980
+ "homepage": "https://sorgalla.com/"
981
+ },
982
+ {
983
+ "name": "Chris Boden",
984
+ "email": "cboden@gmail.com",
985
+ "homepage": "https://cboden.dev/"
986
+ }
987
+ ],
988
+ "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
989
+ "keywords": ["Connection", "Socket", "async", "reactphp", "stream"],
990
+ "support": {
991
+ "issues": "https://github.com/reactphp/socket/issues",
992
+ "source": "https://github.com/reactphp/socket/tree/v1.16.0"
993
+ },
994
+ "funding": [
995
+ {
996
+ "url": "https://opencollective.com/reactphp",
997
+ "type": "open_collective"
998
+ }
999
+ ],
1000
+ "time": "2024-07-26T10:38:09+00:00"
1001
+ },
1002
+ {
1003
+ "name": "react/stream",
1004
+ "version": "v1.4.0",
1005
+ "source": {
1006
+ "type": "git",
1007
+ "url": "https://github.com/reactphp/stream.git",
1008
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
1009
+ },
1010
+ "dist": {
1011
+ "type": "zip",
1012
+ "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
1013
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
1014
+ "shasum": ""
1015
+ },
1016
+ "require": {
1017
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
1018
+ "php": ">=5.3.8",
1019
+ "react/event-loop": "^1.2"
1020
+ },
1021
+ "require-dev": {
1022
+ "clue/stream-filter": "~1.2",
1023
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
1024
+ },
1025
+ "type": "library",
1026
+ "autoload": {
1027
+ "psr-4": {
1028
+ "React\\Stream\\": "src/"
1029
+ }
1030
+ },
1031
+ "notification-url": "https://packagist.org/downloads/",
1032
+ "license": ["MIT"],
1033
+ "authors": [
1034
+ {
1035
+ "name": "Christian Lück",
1036
+ "email": "christian@clue.engineering",
1037
+ "homepage": "https://clue.engineering/"
1038
+ },
1039
+ {
1040
+ "name": "Cees-Jan Kiewiet",
1041
+ "email": "reactphp@ceesjankiewiet.nl",
1042
+ "homepage": "https://wyrihaximus.net/"
1043
+ },
1044
+ {
1045
+ "name": "Jan Sorgalla",
1046
+ "email": "jsorgalla@gmail.com",
1047
+ "homepage": "https://sorgalla.com/"
1048
+ },
1049
+ {
1050
+ "name": "Chris Boden",
1051
+ "email": "cboden@gmail.com",
1052
+ "homepage": "https://cboden.dev/"
1053
+ }
1054
+ ],
1055
+ "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
1056
+ "keywords": ["event-driven", "io", "non-blocking", "pipe", "reactphp", "readable", "stream", "writable"],
1057
+ "support": {
1058
+ "issues": "https://github.com/reactphp/stream/issues",
1059
+ "source": "https://github.com/reactphp/stream/tree/v1.4.0"
1060
+ },
1061
+ "funding": [
1062
+ {
1063
+ "url": "https://opencollective.com/reactphp",
1064
+ "type": "open_collective"
1065
+ }
1066
+ ],
1067
+ "time": "2024-06-11T12:45:25+00:00"
1068
+ },
1069
+ {
1070
+ "name": "roave/security-advisories",
1071
+ "version": "dev-latest",
1072
+ "source": {
1073
+ "type": "git",
1074
+ "url": "https://github.com/Roave/SecurityAdvisories.git",
1075
+ "reference": "0a95bcf39c5b55601cb073bc307d567a16e31dc0"
1076
+ },
1077
+ "dist": {
1078
+ "type": "zip",
1079
+ "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/0a95bcf39c5b55601cb073bc307d567a16e31dc0",
1080
+ "reference": "0a95bcf39c5b55601cb073bc307d567a16e31dc0",
1081
+ "shasum": ""
1082
+ },
1083
+ "conflict": {
1084
+ "3f/pygmentize": "<1.2",
1085
+ "adaptcms/adaptcms": "<=1.3",
1086
+ "admidio/admidio": "<4.3.12",
1087
+ "adodb/adodb-php": "<=5.22.8",
1088
+ "aheinze/cockpit": "<2.2",
1089
+ "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.07.2",
1090
+ "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1",
1091
+ "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7",
1092
+ "aimeos/ai-controller-frontend": "<2020.10.15|>=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.8|>=2023.04.1,<2023.10.9|==2024.04.1",
1093
+ "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7",
1094
+ "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5",
1095
+ "airesvsg/acf-to-rest-api": "<=3.1",
1096
+ "akaunting/akaunting": "<2.1.13",
1097
+ "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",
1098
+ "alextselegidis/easyappointments": "<=1.5.1",
1099
+ "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
1100
+ "amazing/media2click": ">=1,<1.3.3",
1101
+ "ameos/ameos_tarteaucitron": "<1.2.23",
1102
+ "amphp/artax": "<1.0.6|>=2,<2.0.6",
1103
+ "amphp/http": "<=1.7.2|>=2,<=2.1",
1104
+ "amphp/http-client": ">=4,<4.4",
1105
+ "anchorcms/anchor-cms": "<=0.12.7",
1106
+ "andreapollastri/cipi": "<=3.1.15",
1107
+ "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<1.0.2|>=2,<2.2.5",
1108
+ "aoe/restler": "<1.7.1",
1109
+ "apache-solr-for-typo3/solr": "<2.8.3",
1110
+ "apereo/phpcas": "<1.6",
1111
+ "api-platform/core": "<3.4.17|>=4.0.0.0-alpha1,<4.0.22",
1112
+ "api-platform/graphql": "<3.4.17|>=4.0.0.0-alpha1,<4.0.22",
1113
+ "appwrite/server-ce": "<=1.2.1",
1114
+ "arc/web": "<3",
1115
+ "area17/twill": "<1.2.5|>=2,<2.5.3",
1116
+ "artesaos/seotools": "<0.17.2",
1117
+ "asymmetricrypt/asymmetricrypt": "<9.9.99",
1118
+ "athlon1600/php-proxy": "<=5.1",
1119
+ "athlon1600/php-proxy-app": "<=3",
1120
+ "athlon1600/youtube-downloader": "<=4",
1121
+ "austintoddj/canvas": "<=3.4.2",
1122
+ "auth0/auth0-php": ">=8.0.0.0-beta1,<8.14",
1123
+ "auth0/login": "<7.17",
1124
+ "auth0/symfony": "<5.4",
1125
+ "auth0/wordpress": "<5.3",
1126
+ "automad/automad": "<2.0.0.0-alpha5",
1127
+ "automattic/jetpack": "<9.8",
1128
+ "awesome-support/awesome-support": "<=6.0.7",
1129
+ "aws/aws-sdk-php": "<3.288.1",
1130
+ "azuracast/azuracast": "<0.18.3",
1131
+ "b13/seo_basics": "<0.8.2",
1132
+ "backdrop/backdrop": "<1.27.3|>=1.28,<1.28.2",
1133
+ "backpack/crud": "<3.4.9",
1134
+ "backpack/filemanager": "<2.0.2|>=3,<3.0.9",
1135
+ "bacula-web/bacula-web": "<8.0.0.0-RC2-dev",
1136
+ "badaso/core": "<2.7",
1137
+ "bagisto/bagisto": "<2.1",
1138
+ "barrelstrength/sprout-base-email": "<1.2.7",
1139
+ "barrelstrength/sprout-forms": "<3.9",
1140
+ "barryvdh/laravel-translation-manager": "<0.6.8",
1141
+ "barzahlen/barzahlen-php": "<2.0.1",
1142
+ "baserproject/basercms": "<=5.1.1",
1143
+ "bassjobsen/bootstrap-3-typeahead": ">4.0.2",
1144
+ "bbpress/bbpress": "<2.6.5",
1145
+ "bcit-ci/codeigniter": "<3.1.3",
1146
+ "bcosca/fatfree": "<3.7.2",
1147
+ "bedita/bedita": "<4",
1148
+ "bednee/cooluri": "<1.0.30",
1149
+ "bigfork/silverstripe-form-capture": ">=3,<3.1.1",
1150
+ "billz/raspap-webgui": "<=3.1.4",
1151
+ "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
1152
+ "blueimp/jquery-file-upload": "==6.4.4",
1153
+ "bmarshall511/wordpress_zero_spam": "<5.2.13",
1154
+ "bolt/bolt": "<3.7.2",
1155
+ "bolt/core": "<=4.2",
1156
+ "born05/craft-twofactorauthentication": "<3.3.4",
1157
+ "bottelet/flarepoint": "<2.2.1",
1158
+ "bref/bref": "<2.1.17",
1159
+ "brightlocal/phpwhois": "<=4.2.5",
1160
+ "brotkrueml/codehighlight": "<2.7",
1161
+ "brotkrueml/schema": "<1.13.1|>=2,<2.5.1",
1162
+ "brotkrueml/typo3-matomo-integration": "<1.3.2",
1163
+ "buddypress/buddypress": "<7.2.1",
1164
+ "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
1165
+ "bvbmedia/multishop": "<2.0.39",
1166
+ "bytefury/crater": "<6.0.2",
1167
+ "cachethq/cachet": "<2.5.1",
1168
+ "cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
1169
+ "cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
1170
+ "cardgate/magento2": "<2.0.33",
1171
+ "cardgate/woocommerce": "<=3.1.15",
1172
+ "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
1173
+ "cart2quote/module-quotation-encoded": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
1174
+ "cartalyst/sentry": "<=2.1.6",
1175
+ "catfan/medoo": "<1.7.5",
1176
+ "causal/oidc": "<4",
1177
+ "cecil/cecil": "<7.47.1",
1178
+ "centreon/centreon": "<22.10.15",
1179
+ "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
1180
+ "chriskacerguis/codeigniter-restserver": "<=2.7.1",
1181
+ "chrome-php/chrome": "<1.14",
1182
+ "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3",
1183
+ "ckeditor/ckeditor": "<4.25",
1184
+ "clickstorm/cs-seo": ">=6,<6.8|>=7,<7.5|>=8,<8.4|>=9,<9.3",
1185
+ "co-stack/fal_sftp": "<0.2.6",
1186
+ "cockpit-hq/cockpit": "<2.7|==2.7",
1187
+ "codeception/codeception": "<3.1.3|>=4,<4.1.22",
1188
+ "codeigniter/framework": "<3.1.9",
1189
+ "codeigniter4/framework": "<4.5.8",
1190
+ "codeigniter4/shield": "<1.0.0.0-beta8",
1191
+ "codiad/codiad": "<=2.8.4",
1192
+ "codingms/additional-tca": ">=1.7,<1.15.17|>=1.16,<1.16.9",
1193
+ "commerceteam/commerce": ">=0.9.6,<0.9.9",
1194
+ "components/jquery": ">=1.0.3,<3.5",
1195
+ "composer/composer": "<1.10.27|>=2,<2.2.24|>=2.3,<2.7.7",
1196
+ "concrete5/concrete5": "<9.4.0.0-RC2-dev",
1197
+ "concrete5/core": "<8.5.8|>=9,<9.1",
1198
+ "contao-components/mediaelement": ">=2.14.2,<2.21.1",
1199
+ "contao/comments-bundle": ">=2,<4.13.40|>=5.0.0.0-RC1-dev,<5.3.4",
1200
+ "contao/contao": ">=3,<3.5.37|>=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4",
1201
+ "contao/core": "<3.5.39",
1202
+ "contao/core-bundle": "<4.13.54|>=5,<5.3.30|>=5.4,<5.5.6",
1203
+ "contao/listing-bundle": ">=3,<=3.5.30|>=4,<4.4.8",
1204
+ "contao/managed-edition": "<=1.5",
1205
+ "corveda/phpsandbox": "<1.3.5",
1206
+ "cosenary/instagram": "<=2.3",
1207
+ "couleurcitron/tarteaucitron-wp": "<0.3",
1208
+ "craftcms/cms": "<4.15.3|>=5,<5.7.5",
1209
+ "croogo/croogo": "<4",
1210
+ "cuyz/valinor": "<0.12",
1211
+ "czim/file-handling": "<1.5|>=2,<2.3",
1212
+ "czproject/git-php": "<4.0.3",
1213
+ "damienharper/auditor-bundle": "<5.2.6",
1214
+ "dapphp/securimage": "<3.6.6",
1215
+ "darylldoyle/safe-svg": "<1.9.10",
1216
+ "datadog/dd-trace": ">=0.30,<0.30.2",
1217
+ "datatables/datatables": "<1.10.10",
1218
+ "david-garcia/phpwhois": "<=4.3.1",
1219
+ "dbrisinajumi/d2files": "<1",
1220
+ "dcat/laravel-admin": "<=2.1.3|==2.2.0.0-beta|==2.2.2.0-beta",
1221
+ "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3",
1222
+ "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1|>=7,<7.4",
1223
+ "desperado/xml-bundle": "<=0.1.7",
1224
+ "dev-lancer/minecraft-motd-parser": "<=1.0.5",
1225
+ "devgroup/dotplant": "<2020.09.14-dev",
1226
+ "digimix/wp-svg-upload": "<=1",
1227
+ "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2",
1228
+ "dl/yag": "<3.0.1",
1229
+ "dmk/webkitpdf": "<1.1.4",
1230
+ "dnadesign/silverstripe-elemental": "<5.3.12",
1231
+ "doctrine/annotations": "<1.2.7",
1232
+ "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
1233
+ "doctrine/common": "<2.4.3|>=2.5,<2.5.1",
1234
+ "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",
1235
+ "doctrine/doctrine-bundle": "<1.5.2",
1236
+ "doctrine/doctrine-module": "<0.7.2",
1237
+ "doctrine/mongodb-odm": "<1.0.2",
1238
+ "doctrine/mongodb-odm-bundle": "<3.0.1",
1239
+ "doctrine/orm": ">=1,<1.2.4|>=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
1240
+ "dolibarr/dolibarr": "<19.0.2|==21.0.0.0-beta",
1241
+ "dompdf/dompdf": "<2.0.4",
1242
+ "doublethreedigital/guest-entries": "<3.1.2",
1243
+ "drupal/admin_audit_trail": "<1.0.5",
1244
+ "drupal/ai": "<1.0.5",
1245
+ "drupal/alogin": "<2.0.6",
1246
+ "drupal/cache_utility": "<1.2.1",
1247
+ "drupal/commerce_alphabank_redirect": "<1.0.3",
1248
+ "drupal/commerce_eurobank_redirect": "<2.1.1",
1249
+ "drupal/config_split": "<1.10|>=2,<2.0.2",
1250
+ "drupal/core": ">=6,<6.38|>=7,<7.102|>=8,<10.3.14|>=10.4,<10.4.5|>=11,<11.0.13|>=11.1,<11.1.5",
1251
+ "drupal/core-recommended": ">=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
1252
+ "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
1253
+ "drupal/formatter_suite": "<2.1",
1254
+ "drupal/gdpr": "<3.0.1|>=3.1,<3.1.2",
1255
+ "drupal/google_tag": "<1.8|>=2,<2.0.8",
1256
+ "drupal/ignition": "<1.0.4",
1257
+ "drupal/lightgallery": "<1.6",
1258
+ "drupal/link_field_display_mode_formatter": "<1.6",
1259
+ "drupal/matomo": "<1.24",
1260
+ "drupal/oauth2_client": "<4.1.3",
1261
+ "drupal/oauth2_server": "<2.1",
1262
+ "drupal/obfuscate": "<2.0.1",
1263
+ "drupal/quick_node_block": "<2",
1264
+ "drupal/rapidoc_elements_field_formatter": "<1.0.1",
1265
+ "drupal/spamspan": "<3.2.1",
1266
+ "drupal/tfa": "<1.10",
1267
+ "duncanmcclean/guest-entries": "<3.1.2",
1268
+ "dweeves/magmi": "<=0.7.24",
1269
+ "ec-cube/ec-cube": "<2.4.4|>=2.11,<=2.17.1|>=3,<=3.0.18.0-patch4|>=4,<=4.1.2",
1270
+ "ecodev/newsletter": "<=4",
1271
+ "ectouch/ectouch": "<=2.7.2",
1272
+ "egroupware/egroupware": "<23.1.20240624",
1273
+ "elefant/cms": "<2.0.7",
1274
+ "elgg/elgg": "<3.3.24|>=4,<4.0.5",
1275
+ "elijaa/phpmemcacheadmin": "<=1.3",
1276
+ "elmsln/haxcms": "<11",
1277
+ "encore/laravel-admin": "<=1.8.19",
1278
+ "endroid/qr-code-bundle": "<3.4.2",
1279
+ "enhavo/enhavo-app": "<=0.13.1",
1280
+ "enshrined/svg-sanitize": "<0.15",
1281
+ "erusev/parsedown": "<1.7.2",
1282
+ "ether/logs": "<3.0.4",
1283
+ "evolutioncms/evolution": "<=3.2.3",
1284
+ "exceedone/exment": "<4.4.3|>=5,<5.0.3",
1285
+ "exceedone/laravel-admin": "<2.2.3|==3",
1286
+ "ezsystems/demobundle": ">=5.4,<5.4.6.1-dev",
1287
+ "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
1288
+ "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev",
1289
+ "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev",
1290
+ "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
1291
+ "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.38|>=3.3,<3.3.39",
1292
+ "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1|>=5.3.0.0-beta1,<5.3.5",
1293
+ "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12",
1294
+ "ezsystems/ezplatform-http-cache": "<2.3.16",
1295
+ "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35",
1296
+ "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
1297
+ "ezsystems/ezplatform-richtext": ">=2.3,<2.3.26|>=3.3,<3.3.40",
1298
+ "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15",
1299
+ "ezsystems/ezplatform-user": ">=1,<1.0.1",
1300
+ "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.31",
1301
+ "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.03.5.1",
1302
+ "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
1303
+ "ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15",
1304
+ "ezyang/htmlpurifier": "<=4.2",
1305
+ "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
1306
+ "facturascripts/facturascripts": "<=2022.08",
1307
+ "fastly/magento2": "<1.2.26",
1308
+ "feehi/cms": "<=2.1.1",
1309
+ "feehi/feehicms": "<=2.1.1",
1310
+ "fenom/fenom": "<=2.12.1",
1311
+ "filament/actions": ">=3.2,<3.2.123",
1312
+ "filament/infolists": ">=3,<3.2.115",
1313
+ "filament/tables": ">=3,<3.2.115",
1314
+ "filegator/filegator": "<7.8",
1315
+ "filp/whoops": "<2.1.13",
1316
+ "fineuploader/php-traditional-server": "<=1.2.2",
1317
+ "firebase/php-jwt": "<6",
1318
+ "fisharebest/webtrees": "<=2.1.18",
1319
+ "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2",
1320
+ "fixpunkt/fp-newsletter": "<1.1.1|>=1.2,<2.1.2|>=2.2,<3.2.6",
1321
+ "flarum/core": "<1.8.10",
1322
+ "flarum/flarum": "<0.1.0.0-beta8",
1323
+ "flarum/framework": "<1.8.10",
1324
+ "flarum/mentions": "<1.6.3",
1325
+ "flarum/sticky": ">=0.1.0.0-beta14,<=0.1.0.0-beta15",
1326
+ "flarum/tags": "<=0.1.0.0-beta13",
1327
+ "floriangaerber/magnesium": "<0.3.1",
1328
+ "fluidtypo3/vhs": "<5.1.1",
1329
+ "fof/byobu": ">=0.3.0.0-beta2,<1.1.7",
1330
+ "fof/upload": "<1.2.3",
1331
+ "foodcoopshop/foodcoopshop": ">=3.2,<3.6.1",
1332
+ "fooman/tcpdf": "<6.2.22",
1333
+ "forkcms/forkcms": "<5.11.1",
1334
+ "fossar/tcpdf-parser": "<6.2.22",
1335
+ "francoisjacquet/rosariosis": "<=11.5.1",
1336
+ "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2",
1337
+ "friendsofsymfony/oauth2-php": "<1.3",
1338
+ "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
1339
+ "friendsofsymfony/user-bundle": ">=1,<1.3.5",
1340
+ "friendsofsymfony1/swiftmailer": ">=4,<5.4.13|>=6,<6.2.5",
1341
+ "friendsofsymfony1/symfony1": ">=1.1,<1.5.19",
1342
+ "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
1343
+ "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6",
1344
+ "froala/wysiwyg-editor": "<=4.3",
1345
+ "froxlor/froxlor": "<=2.2.5",
1346
+ "frozennode/administrator": "<=5.0.12",
1347
+ "fuel/core": "<1.8.1",
1348
+ "funadmin/funadmin": "<=5.0.2",
1349
+ "gaoming13/wechat-php-sdk": "<=1.10.2",
1350
+ "genix/cms": "<=1.1.11",
1351
+ "georgringer/news": "<1.3.3",
1352
+ "geshi/geshi": "<1.0.8.11-dev",
1353
+ "getformwork/formwork": "<1.13.1|>=2.0.0.0-beta1,<2.0.0.0-beta4",
1354
+ "getgrav/grav": "<1.7.46",
1355
+ "getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1",
1356
+ "getkirby/kirby": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1",
1357
+ "getkirby/panel": "<2.5.14",
1358
+ "getkirby/starterkit": "<=3.7.0.2",
1359
+ "gilacms/gila": "<=1.15.4",
1360
+ "gleez/cms": "<=1.3|==2",
1361
+ "globalpayments/php-sdk": "<2",
1362
+ "goalgorilla/open_social": "<12.3.11|>=12.4,<12.4.10|>=13.0.0.0-alpha1,<13.0.0.0-alpha11",
1363
+ "gogentooss/samlbase": "<1.2.7",
1364
+ "google/protobuf": "<3.15",
1365
+ "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
1366
+ "gree/jose": "<2.2.1",
1367
+ "gregwar/rst": "<1.0.3",
1368
+ "grumpydictator/firefly-iii": "<6.1.17",
1369
+ "gugoan/economizzer": "<=0.9.0.0-beta1",
1370
+ "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5",
1371
+ "guzzlehttp/oauth-subscriber": "<0.8.1",
1372
+ "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5",
1373
+ "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2",
1374
+ "handcraftedinthealps/goodby-csv": "<1.4.3",
1375
+ "harvesthq/chosen": "<1.8.7",
1376
+ "helloxz/imgurl": "<=2.31",
1377
+ "hhxsv5/laravel-s": "<3.7.36",
1378
+ "hillelcoren/invoice-ninja": "<5.3.35",
1379
+ "himiklab/yii2-jqgrid-widget": "<1.0.8",
1380
+ "hjue/justwriting": "<=1",
1381
+ "hov/jobfair": "<1.0.13|>=2,<2.0.2",
1382
+ "httpsoft/http-message": "<1.0.12",
1383
+ "hyn/multi-tenant": ">=5.6,<5.7.2",
1384
+ "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6,<4.6.21",
1385
+ "ibexa/admin-ui-assets": ">=4.6.0.0-alpha1,<4.6.21",
1386
+ "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2",
1387
+ "ibexa/fieldtype-richtext": ">=4.6,<4.6.21",
1388
+ "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",
1389
+ "ibexa/http-cache": ">=4.6,<4.6.14",
1390
+ "ibexa/post-install": "<1.0.16|>=4.6,<4.6.14",
1391
+ "ibexa/solr": ">=4.5,<4.5.4",
1392
+ "ibexa/user": ">=4,<4.4.3",
1393
+ "icecoder/icecoder": "<=8.1",
1394
+ "idno/known": "<=1.3.1",
1395
+ "ilicmiljan/secure-props": ">=1.2,<1.2.2",
1396
+ "illuminate/auth": "<5.5.10",
1397
+ "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<6.18.31|>=7,<7.22.4",
1398
+ "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",
1399
+ "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
1400
+ "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
1401
+ "imdbphp/imdbphp": "<=5.1.1",
1402
+ "impresscms/impresscms": "<=1.4.5",
1403
+ "impresspages/impresspages": "<1.0.13",
1404
+ "in2code/femanager": "<5.5.5|>=6,<6.4.1|>=7,<7.4.2|>=8,<8.2.2",
1405
+ "in2code/ipandlanguageredirect": "<5.1.2",
1406
+ "in2code/lux": "<17.6.1|>=18,<24.0.2",
1407
+ "in2code/powermail": "<7.5.1|>=8,<8.5.1|>=9,<10.9.1|>=11,<12.4.1",
1408
+ "innologi/typo3-appointments": "<2.0.6",
1409
+ "intelliants/subrion": "<4.2.2",
1410
+ "inter-mediator/inter-mediator": "==5.5",
1411
+ "ipl/web": "<0.10.1",
1412
+ "islandora/crayfish": "<4.1",
1413
+ "islandora/islandora": ">=2,<2.4.1",
1414
+ "ivankristianto/phpwhois": "<=4.3",
1415
+ "jackalope/jackalope-doctrine-dbal": "<1.7.4",
1416
+ "jambagecom/div2007": "<0.10.2",
1417
+ "james-heinrich/getid3": "<1.9.21",
1418
+ "james-heinrich/phpthumb": "<1.7.12",
1419
+ "jasig/phpcas": "<1.3.3",
1420
+ "jbartels/wec-map": "<3.0.3",
1421
+ "jcbrand/converse.js": "<3.3.3",
1422
+ "joelbutcher/socialstream": "<5.6|>=6,<6.2",
1423
+ "johnbillion/wp-crontrol": "<1.16.2",
1424
+ "joomla/application": "<1.0.13",
1425
+ "joomla/archive": "<1.1.12|>=2,<2.0.1",
1426
+ "joomla/database": ">=1,<2.2|>=3,<3.4",
1427
+ "joomla/filesystem": "<1.6.2|>=2,<2.0.1",
1428
+ "joomla/filter": "<1.4.4|>=2,<2.0.1",
1429
+ "joomla/framework": "<1.5.7|>=2.5.4,<=3.8.12",
1430
+ "joomla/input": ">=2,<2.0.2",
1431
+ "joomla/joomla-cms": "<3.9.12|>=4,<4.4.13|>=5,<5.2.6",
1432
+ "joomla/joomla-platform": "<1.5.4",
1433
+ "joomla/session": "<1.3.1",
1434
+ "joyqi/hyper-down": "<=2.4.27",
1435
+ "jsdecena/laracom": "<2.0.9",
1436
+ "jsmitty12/phpwhois": "<5.1",
1437
+ "juzaweb/cms": "<=3.4",
1438
+ "jweiland/events2": "<8.3.8|>=9,<9.0.6",
1439
+ "jweiland/kk-downloader": "<1.2.2",
1440
+ "kazist/phpwhois": "<=4.2.6",
1441
+ "kelvinmo/simplexrd": "<3.1.1",
1442
+ "kevinpapst/kimai2": "<1.16.7",
1443
+ "khodakhah/nodcms": "<=3",
1444
+ "kimai/kimai": "<=2.20.1",
1445
+ "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4",
1446
+ "klaviyo/magento2-extension": ">=1,<3",
1447
+ "knplabs/knp-snappy": "<=1.4.2",
1448
+ "kohana/core": "<3.3.3",
1449
+ "koillection/koillection": "<1.6.12",
1450
+ "krayin/laravel-crm": "<=1.3",
1451
+ "kreait/firebase-php": ">=3.2,<3.8.1",
1452
+ "kumbiaphp/kumbiapp": "<=1.1.1",
1453
+ "la-haute-societe/tcpdf": "<6.2.22",
1454
+ "laminas/laminas-diactoros": "<2.18.1|==2.19|==2.20|==2.21|==2.22|==2.23|>=2.24,<2.24.2|>=2.25,<2.25.2",
1455
+ "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",
1456
+ "laminas/laminas-http": "<2.14.2",
1457
+ "lara-zeus/artemis": ">=1,<=1.0.6",
1458
+ "lara-zeus/dynamic-dashboard": ">=3,<=3.0.1",
1459
+ "laravel/fortify": "<1.11.1",
1460
+ "laravel/framework": "<10.48.29|>=11,<11.44.1|>=12,<12.1.1",
1461
+ "laravel/laravel": ">=5.4,<5.4.22",
1462
+ "laravel/pulse": "<1.3.1",
1463
+ "laravel/reverb": "<1.4",
1464
+ "laravel/socialite": ">=1,<2.0.10",
1465
+ "latte/latte": "<2.10.8",
1466
+ "lavalite/cms": "<=9|==10.1",
1467
+ "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",
1468
+ "league/commonmark": "<2.7",
1469
+ "league/flysystem": "<1.1.4|>=2,<2.1.1",
1470
+ "league/oauth2-server": ">=8.3.2,<8.4.2|>=8.5,<8.5.3",
1471
+ "leantime/leantime": "<3.3",
1472
+ "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
1473
+ "libreform/libreform": ">=2,<=2.0.8",
1474
+ "librenms/librenms": "<2017.08.18",
1475
+ "liftkit/database": "<2.13.2",
1476
+ "lightsaml/lightsaml": "<1.3.5",
1477
+ "limesurvey/limesurvey": "<6.5.12",
1478
+ "livehelperchat/livehelperchat": "<=3.91",
1479
+ "livewire/livewire": "<2.12.7|>=3.0.0.0-beta1,<3.5.2",
1480
+ "livewire/volt": "<1.7",
1481
+ "lms/routes": "<2.1.1",
1482
+ "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
1483
+ "lomkit/laravel-rest-api": "<2.13",
1484
+ "luracast/restler": "<3.1",
1485
+ "luyadev/yii-helpers": "<1.2.1",
1486
+ "macropay-solutions/laravel-crud-wizard-free": "<3.4.17",
1487
+ "maestroerror/php-heic-to-jpg": "<1.0.5",
1488
+ "magento/community-edition": "<2.4.5|==2.4.5|>=2.4.5.0-patch1,<2.4.5.0-patch12|==2.4.6|>=2.4.6.0-patch1,<2.4.6.0-patch10|>=2.4.7.0-beta1,<2.4.7.0-patch5|>=2.4.8.0-beta1,<2.4.8.0-beta2",
1489
+ "magento/core": "<=1.9.4.5",
1490
+ "magento/magento1ce": "<1.9.4.3-dev",
1491
+ "magento/magento1ee": ">=1,<1.14.4.3-dev",
1492
+ "magento/product-community-edition": "<2.4.4.0-patch9|>=2.4.5,<2.4.5.0-patch8|>=2.4.6,<2.4.6.0-patch6|>=2.4.7,<2.4.7.0-patch1",
1493
+ "magento/project-community-edition": "<=2.0.2",
1494
+ "magneto/core": "<1.9.4.4-dev",
1495
+ "maikuolan/phpmussel": ">=1,<1.6",
1496
+ "mainwp/mainwp": "<=4.4.3.3",
1497
+ "mantisbt/mantisbt": "<=2.26.3",
1498
+ "marcwillmann/turn": "<0.3.3",
1499
+ "matomo/matomo": "<1.11",
1500
+ "matyhtf/framework": "<3.0.6",
1501
+ "mautic/core": "<5.2.6|>=6.0.0.0-alpha,<6.0.2",
1502
+ "mautic/core-lib": ">=1.0.0.0-beta,<4.4.13|>=5.0.0.0-alpha,<5.1.1",
1503
+ "maximebf/debugbar": "<1.19",
1504
+ "mdanter/ecc": "<2",
1505
+ "mediawiki/abuse-filter": "<1.39.9|>=1.40,<1.41.3|>=1.42,<1.42.2",
1506
+ "mediawiki/cargo": "<3.6.1",
1507
+ "mediawiki/core": "<1.39.5|==1.40",
1508
+ "mediawiki/data-transfer": ">=1.39,<1.39.11|>=1.41,<1.41.3|>=1.42,<1.42.2",
1509
+ "mediawiki/matomo": "<2.4.3",
1510
+ "mediawiki/semantic-media-wiki": "<4.0.2",
1511
+ "mehrwert/phpmyadmin": "<3.2",
1512
+ "melisplatform/melis-asset-manager": "<5.0.1",
1513
+ "melisplatform/melis-cms": "<5.0.1",
1514
+ "melisplatform/melis-front": "<5.0.1",
1515
+ "mezzio/mezzio-swoole": "<3.7|>=4,<4.3",
1516
+ "mgallegos/laravel-jqgrid": "<=1.3",
1517
+ "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2,<2.0.1",
1518
+ "microsoft/microsoft-graph-beta": "<2.0.1",
1519
+ "microsoft/microsoft-graph-core": "<2.0.2",
1520
+ "microweber/microweber": "<=2.0.16",
1521
+ "mikehaertl/php-shellcommand": "<1.6.1",
1522
+ "miniorange/miniorange-saml": "<1.4.3",
1523
+ "mittwald/typo3_forum": "<1.2.1",
1524
+ "mobiledetect/mobiledetectlib": "<2.8.32",
1525
+ "modx/revolution": "<=3.1",
1526
+ "mojo42/jirafeau": "<4.4",
1527
+ "mongodb/mongodb": ">=1,<1.9.2",
1528
+ "monolog/monolog": ">=1.8,<1.12",
1529
+ "moodle/moodle": "<4.3.12|>=4.4,<4.4.8|>=4.5.0.0-beta,<4.5.4",
1530
+ "mos/cimage": "<0.7.19",
1531
+ "movim/moxl": ">=0.8,<=0.10",
1532
+ "movingbytes/social-network": "<=1.2.1",
1533
+ "mpdf/mpdf": "<=7.1.7",
1534
+ "munkireport/comment": "<4.1",
1535
+ "munkireport/managedinstalls": "<2.6",
1536
+ "munkireport/munki_facts": "<1.5",
1537
+ "munkireport/munkireport": ">=2.5.3,<5.6.3",
1538
+ "munkireport/reportdata": "<3.5",
1539
+ "munkireport/softwareupdate": "<1.6",
1540
+ "mustache/mustache": ">=2,<2.14.1",
1541
+ "mwdelaney/wp-enable-svg": "<=0.2",
1542
+ "namshi/jose": "<2.2",
1543
+ "nasirkhan/laravel-starter": "<11.11",
1544
+ "nategood/httpful": "<1",
1545
+ "neoan3-apps/template": "<1.1.1",
1546
+ "neorazorx/facturascripts": "<2022.04",
1547
+ "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
1548
+ "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",
1549
+ "neos/media-browser": "<7.3.19|>=8,<8.0.16|>=8.1,<8.1.11|>=8.2,<8.2.11|>=8.3,<8.3.9",
1550
+ "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2",
1551
+ "neos/swiftmailer": "<5.4.5",
1552
+ "nesbot/carbon": "<2.72.6|>=3,<3.8.4",
1553
+ "netcarver/textile": "<=4.1.2",
1554
+ "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
1555
+ "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
1556
+ "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
1557
+ "nilsteampassnet/teampass": "<3.1.3.1-dev",
1558
+ "nitsan/ns-backup": "<13.0.1",
1559
+ "nonfiction/nterchange": "<4.1.1",
1560
+ "notrinos/notrinos-erp": "<=0.7",
1561
+ "noumo/easyii": "<=0.9",
1562
+ "novaksolutions/infusionsoft-php-sdk": "<1",
1563
+ "nukeviet/nukeviet": "<4.5.02",
1564
+ "nyholm/psr7": "<1.6.1",
1565
+ "nystudio107/craft-seomatic": "<3.4.12",
1566
+ "nzedb/nzedb": "<0.8",
1567
+ "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
1568
+ "october/backend": "<1.1.2",
1569
+ "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1",
1570
+ "october/october": "<3.7.5",
1571
+ "october/rain": "<1.0.472|>=1.1,<1.1.2",
1572
+ "october/system": "<3.7.5",
1573
+ "oliverklee/phpunit": "<3.5.15",
1574
+ "omeka/omeka-s": "<4.0.3",
1575
+ "onelogin/php-saml": "<2.10.4",
1576
+ "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5",
1577
+ "open-web-analytics/open-web-analytics": "<1.7.4",
1578
+ "opencart/opencart": ">=0",
1579
+ "openid/php-openid": "<2.3",
1580
+ "openmage/magento-lts": "<20.12.3",
1581
+ "opensolutions/vimbadmin": "<=3.0.15",
1582
+ "opensource-workshop/connect-cms": "<1.8.7|>=2,<2.4.7",
1583
+ "orchid/platform": ">=8,<14.43",
1584
+ "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1",
1585
+ "oro/commerce": ">=4.1,<5.0.11|>=5.1,<5.1.1",
1586
+ "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
1587
+ "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1",
1588
+ "oro/customer-portal": ">=4.1,<=4.1.13|>=4.2,<=4.2.10|>=5,<=5.0.11|>=5.1,<=5.1.3",
1589
+ "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<=5.0.12|>=5.1,<=5.1.3",
1590
+ "oveleon/contao-cookiebar": "<1.16.3|>=2,<2.1.3",
1591
+ "oxid-esales/oxideshop-ce": "<=7.0.5",
1592
+ "oxid-esales/paymorrow-module": ">=1,<1.0.2|>=2,<2.0.1",
1593
+ "packbackbooks/lti-1-3-php-library": "<5",
1594
+ "padraic/humbug_get_contents": "<1.1.2",
1595
+ "pagarme/pagarme-php": "<3",
1596
+ "pagekit/pagekit": "<=1.0.18",
1597
+ "paragonie/ecc": "<2.0.1",
1598
+ "paragonie/random_compat": "<2",
1599
+ "passbolt/passbolt_api": "<4.6.2",
1600
+ "paypal/adaptivepayments-sdk-php": "<=3.9.2",
1601
+ "paypal/invoice-sdk-php": "<=3.9",
1602
+ "paypal/merchant-sdk-php": "<3.12",
1603
+ "paypal/permissions-sdk-php": "<=3.9.1",
1604
+ "pear/archive_tar": "<1.4.14",
1605
+ "pear/auth": "<1.2.4",
1606
+ "pear/crypt_gpg": "<1.6.7",
1607
+ "pear/http_request2": "<2.7",
1608
+ "pear/pear": "<=1.10.1",
1609
+ "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",
1610
+ "personnummer/personnummer": "<3.0.2",
1611
+ "phanan/koel": "<5.1.4",
1612
+ "phenx/php-svg-lib": "<0.5.2",
1613
+ "php-censor/php-censor": "<2.0.13|>=2.1,<2.1.5",
1614
+ "php-mod/curl": "<2.3.2",
1615
+ "phpbb/phpbb": "<3.3.11",
1616
+ "phpems/phpems": ">=6,<=6.1.3",
1617
+ "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",
1618
+ "phpmailer/phpmailer": "<6.5",
1619
+ "phpmussel/phpmussel": ">=1,<1.6",
1620
+ "phpmyadmin/phpmyadmin": "<5.2.2",
1621
+ "phpmyfaq/phpmyfaq": "<3.2.5|==3.2.5|>=3.2.10,<=4.0.1",
1622
+ "phpoffice/common": "<0.2.9",
1623
+ "phpoffice/math": "<=0.2",
1624
+ "phpoffice/phpexcel": "<=1.8.2",
1625
+ "phpoffice/phpspreadsheet": "<1.29.9|>=2,<2.1.8|>=2.2,<2.3.7|>=3,<3.9",
1626
+ "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36",
1627
+ "phpservermon/phpservermon": "<3.6",
1628
+ "phpsysinfo/phpsysinfo": "<3.4.3",
1629
+ "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
1630
+ "phpwhois/phpwhois": "<=4.2.5",
1631
+ "phpxmlrpc/extras": "<0.6.1",
1632
+ "phpxmlrpc/phpxmlrpc": "<4.9.2",
1633
+ "pi/pi": "<=2.5",
1634
+ "pimcore/admin-ui-classic-bundle": "<1.7.6",
1635
+ "pimcore/customer-management-framework-bundle": "<4.2.1",
1636
+ "pimcore/data-hub": "<1.2.4",
1637
+ "pimcore/data-importer": "<1.8.9|>=1.9,<1.9.3",
1638
+ "pimcore/demo": "<10.3",
1639
+ "pimcore/ecommerce-framework-bundle": "<1.0.10",
1640
+ "pimcore/perspective-editor": "<1.5.1",
1641
+ "pimcore/pimcore": "<11.5.4",
1642
+ "piwik/piwik": "<1.11",
1643
+ "pixelfed/pixelfed": "<0.12.5",
1644
+ "plotly/plotly.js": "<2.25.2",
1645
+ "pocketmine/bedrock-protocol": "<8.0.2",
1646
+ "pocketmine/pocketmine-mp": "<5.25.2",
1647
+ "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1",
1648
+ "pressbooks/pressbooks": "<5.18",
1649
+ "prestashop/autoupgrade": ">=4,<4.10.1",
1650
+ "prestashop/blockreassurance": "<=5.1.3",
1651
+ "prestashop/blockwishlist": ">=2,<2.1.1",
1652
+ "prestashop/contactform": ">=1.0.1,<4.3",
1653
+ "prestashop/gamification": "<2.3.2",
1654
+ "prestashop/prestashop": "<8.1.6",
1655
+ "prestashop/productcomments": "<5.0.2",
1656
+ "prestashop/ps_contactinfo": "<=3.3.2",
1657
+ "prestashop/ps_emailsubscription": "<2.6.1",
1658
+ "prestashop/ps_facetedsearch": "<3.4.1",
1659
+ "prestashop/ps_linklist": "<3.1",
1660
+ "privatebin/privatebin": "<1.4|>=1.5,<1.7.4",
1661
+ "processwire/processwire": "<=3.0.229",
1662
+ "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7",
1663
+ "propel/propel1": ">=1,<=1.7.1",
1664
+ "pterodactyl/panel": "<1.11.8",
1665
+ "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2",
1666
+ "ptrofimov/beanstalk_console": "<1.7.14",
1667
+ "pubnub/pubnub": "<6.1",
1668
+ "punktde/pt_extbase": "<1.5.1",
1669
+ "pusher/pusher-php-server": "<2.2.1",
1670
+ "pwweb/laravel-core": "<=0.3.6.0-beta",
1671
+ "pxlrbt/filament-excel": "<1.1.14|>=2.0.0.0-alpha,<2.3.3",
1672
+ "pyrocms/pyrocms": "<=3.9.1",
1673
+ "qcubed/qcubed": "<=3.1.1",
1674
+ "quickapps/cms": "<=2.0.0.0-beta2",
1675
+ "rainlab/blog-plugin": "<1.4.1",
1676
+ "rainlab/debugbar-plugin": "<3.1",
1677
+ "rainlab/user-plugin": "<=1.4.5",
1678
+ "rankmath/seo-by-rank-math": "<=1.0.95",
1679
+ "rap2hpoutre/laravel-log-viewer": "<0.13",
1680
+ "react/http": ">=0.7,<1.9",
1681
+ "really-simple-plugins/complianz-gdpr": "<6.4.2",
1682
+ "redaxo/source": "<5.18.3",
1683
+ "remdex/livehelperchat": "<4.29",
1684
+ "renolit/reint-downloadmanager": "<4.0.2|>=5,<5.0.1",
1685
+ "reportico-web/reportico": "<=8.1",
1686
+ "rhukster/dom-sanitizer": "<1.0.7",
1687
+ "rmccue/requests": ">=1.6,<1.8",
1688
+ "robrichards/xmlseclibs": ">=1,<3.0.4",
1689
+ "roots/soil": "<4.1",
1690
+ "roundcube/roundcubemail": "<1.5.10|>=1.6,<1.6.11",
1691
+ "rudloff/alltube": "<3.0.3",
1692
+ "rudloff/rtmpdump-bin": "<=2.3.1",
1693
+ "s-cart/core": "<6.9",
1694
+ "s-cart/s-cart": "<6.9",
1695
+ "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
1696
+ "sabre/dav": ">=1.6,<1.7.11|>=1.8,<1.8.9",
1697
+ "samwilson/unlinked-wikibase": "<1.42",
1698
+ "scheb/two-factor-bundle": "<3.26|>=4,<4.11",
1699
+ "sensiolabs/connect": "<4.2.3",
1700
+ "serluck/phpwhois": "<=4.2.6",
1701
+ "sfroemken/url_redirect": "<=1.2.1",
1702
+ "sheng/yiicms": "<1.2.1",
1703
+ "shopware/core": "<6.5.8.18-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev",
1704
+ "shopware/platform": "<6.5.8.18-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev",
1705
+ "shopware/production": "<=6.3.5.2",
1706
+ "shopware/shopware": "<=5.7.17",
1707
+ "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev",
1708
+ "shopxo/shopxo": "<=6.4",
1709
+ "showdoc/showdoc": "<2.10.4",
1710
+ "shuchkin/simplexlsx": ">=1.0.12,<1.1.13",
1711
+ "silverstripe-australia/advancedreports": ">=1,<=2",
1712
+ "silverstripe/admin": "<1.13.19|>=2,<2.1.8",
1713
+ "silverstripe/assets": ">=1,<1.11.1",
1714
+ "silverstripe/cms": "<4.11.3",
1715
+ "silverstripe/comments": ">=1.3,<3.1.1",
1716
+ "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
1717
+ "silverstripe/framework": "<5.3.23",
1718
+ "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.8.2|>=4,<4.3.7|>=5,<5.1.3",
1719
+ "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",
1720
+ "silverstripe/recipe-cms": ">=4.5,<4.5.3",
1721
+ "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
1722
+ "silverstripe/reports": "<5.2.3",
1723
+ "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4|>=2.1,<2.1.2",
1724
+ "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",
1725
+ "silverstripe/subsites": ">=2,<2.6.1",
1726
+ "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
1727
+ "silverstripe/userforms": "<3|>=5,<5.4.2",
1728
+ "silverstripe/versioned-admin": ">=1,<1.11.1",
1729
+ "simple-updates/phpwhois": "<=1",
1730
+ "simplesamlphp/saml2": "<=4.16.15|>=5.0.0.0-alpha1,<=5.0.0.0-alpha19",
1731
+ "simplesamlphp/saml2-legacy": "<=4.16.15",
1732
+ "simplesamlphp/simplesamlphp": "<1.18.6",
1733
+ "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
1734
+ "simplesamlphp/simplesamlphp-module-openid": "<1",
1735
+ "simplesamlphp/simplesamlphp-module-openidprovider": "<0.9",
1736
+ "simplesamlphp/xml-common": "<1.20",
1737
+ "simplesamlphp/xml-security": "==1.6.11",
1738
+ "simplito/elliptic-php": "<1.0.6",
1739
+ "sitegeist/fluid-components": "<3.5",
1740
+ "sjbr/sr-feuser-register": "<2.6.2|>=5.1,<12.5",
1741
+ "sjbr/sr-freecap": "<2.4.6|>=2.5,<2.5.3",
1742
+ "sjbr/static-info-tables": "<2.3.1",
1743
+ "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1",
1744
+ "slim/slim": "<2.6",
1745
+ "slub/slub-events": "<3.0.3",
1746
+ "smarty/smarty": "<4.5.3|>=5,<5.1.1",
1747
+ "snipe/snipe-it": "<8.1",
1748
+ "socalnick/scn-social-auth": "<1.15.2",
1749
+ "socialiteproviders/steam": "<1.1",
1750
+ "spatie/browsershot": "<5.0.5",
1751
+ "spatie/image-optimizer": "<1.7.3",
1752
+ "spencer14420/sp-php-email-handler": "<1",
1753
+ "spipu/html2pdf": "<5.2.8",
1754
+ "spoon/library": "<1.4.1",
1755
+ "spoonity/tcpdf": "<6.2.22",
1756
+ "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
1757
+ "ssddanbrown/bookstack": "<24.05.1",
1758
+ "starcitizentools/citizen-skin": ">=2.4.2,<3.3.1",
1759
+ "starcitizentools/tabber-neue": ">=1.9.1,<2.7.2",
1760
+ "statamic/cms": "<=5.16",
1761
+ "stormpath/sdk": "<9.9.99",
1762
+ "studio-42/elfinder": "<=2.1.64",
1763
+ "studiomitte/friendlycaptcha": "<0.1.4",
1764
+ "subhh/libconnect": "<7.0.8|>=8,<8.1",
1765
+ "sukohi/surpass": "<1",
1766
+ "sulu/form-bundle": ">=2,<2.5.3",
1767
+ "sulu/sulu": "<1.6.44|>=2,<2.5.25|>=2.6,<2.6.9|>=3.0.0.0-alpha1,<3.0.0.0-alpha3",
1768
+ "sumocoders/framework-user-bundle": "<1.4",
1769
+ "superbig/craft-audit": "<3.0.2",
1770
+ "svewap/a21glossary": "<=0.4.10",
1771
+ "swag/paypal": "<5.4.4",
1772
+ "swiftmailer/swiftmailer": "<6.2.5",
1773
+ "swiftyedit/swiftyedit": "<1.2",
1774
+ "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
1775
+ "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
1776
+ "sylius/grid-bundle": "<1.10.1",
1777
+ "sylius/paypal-plugin": "<1.6.2|>=1.7,<1.7.2|>=2,<2.0.2",
1778
+ "sylius/resource-bundle": ">=1,<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
1779
+ "sylius/sylius": "<1.12.19|>=1.13.0.0-alpha1,<1.13.4",
1780
+ "symbiote/silverstripe-multivaluefield": ">=3,<3.1",
1781
+ "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",
1782
+ "symbiote/silverstripe-seed": "<6.0.3",
1783
+ "symbiote/silverstripe-versionedfiles": "<=2.0.3",
1784
+ "symfont/process": ">=0",
1785
+ "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
1786
+ "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
1787
+ "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
1788
+ "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
1789
+ "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<5.3.15|>=5.4.3,<5.4.4|>=6.0.3,<6.0.4",
1790
+ "symfony/http-client": ">=4.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8",
1791
+ "symfony/http-foundation": "<5.4.46|>=6,<6.4.14|>=7,<7.1.7",
1792
+ "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",
1793
+ "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
1794
+ "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",
1795
+ "symfony/mime": ">=4.3,<4.3.8",
1796
+ "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
1797
+ "symfony/polyfill": ">=1,<1.10",
1798
+ "symfony/polyfill-php55": ">=1,<1.10",
1799
+ "symfony/process": "<5.4.46|>=6,<6.4.14|>=7,<7.1.7",
1800
+ "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
1801
+ "symfony/routing": ">=2,<2.0.19",
1802
+ "symfony/runtime": ">=5.3,<5.4.46|>=6,<6.4.14|>=7,<7.1.7",
1803
+ "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",
1804
+ "symfony/security-bundle": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.4.10|>=7,<7.0.10|>=7.1,<7.1.3",
1805
+ "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",
1806
+ "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
1807
+ "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",
1808
+ "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8",
1809
+ "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",
1810
+ "symfony/symfony": "<5.4.47|>=6,<6.4.15|>=7,<7.1.8",
1811
+ "symfony/translation": ">=2,<2.0.17",
1812
+ "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8",
1813
+ "symfony/ux-autocomplete": "<2.11.2",
1814
+ "symfony/ux-live-component": "<2.25.1",
1815
+ "symfony/ux-twig-component": "<2.25.1",
1816
+ "symfony/validator": "<5.4.43|>=6,<6.4.11|>=7,<7.1.4",
1817
+ "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
1818
+ "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
1819
+ "symfony/webhook": ">=6.3,<6.3.8",
1820
+ "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7|>=2.2.0.0-beta1,<2.2.0.0-beta2",
1821
+ "symphonycms/symphony-2": "<2.6.4",
1822
+ "t3/dce": "<0.11.5|>=2.2,<2.6.2",
1823
+ "t3g/svg-sanitizer": "<1.0.3",
1824
+ "t3s/content-consent": "<1.0.3|>=2,<2.0.2",
1825
+ "tastyigniter/tastyigniter": "<4",
1826
+ "tcg/voyager": "<=1.8",
1827
+ "tecnickcom/tc-lib-pdf-font": "<2.6.4",
1828
+ "tecnickcom/tcpdf": "<6.8",
1829
+ "terminal42/contao-tablelookupwizard": "<3.3.5",
1830
+ "thelia/backoffice-default-template": ">=2.1,<2.1.2",
1831
+ "thelia/thelia": ">=2.1,<2.1.3",
1832
+ "theonedemon/phpwhois": "<=4.2.5",
1833
+ "thinkcmf/thinkcmf": "<6.0.8",
1834
+ "thorsten/phpmyfaq": "<=4.0.1",
1835
+ "tikiwiki/tiki-manager": "<=17.1",
1836
+ "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1",
1837
+ "tinymce/tinymce": "<7.2",
1838
+ "tinymighty/wiki-seo": "<1.2.2",
1839
+ "titon/framework": "<9.9.99",
1840
+ "tltneon/lgsl": "<7",
1841
+ "tobiasbg/tablepress": "<=2.0.0.0-RC1",
1842
+ "topthink/framework": "<6.0.17|>=6.1,<=8.0.4",
1843
+ "topthink/think": "<=6.1.1",
1844
+ "topthink/thinkphp": "<=3.2.3|>=6.1.3,<=8.0.4",
1845
+ "torrentpier/torrentpier": "<=2.4.3",
1846
+ "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2",
1847
+ "tribalsystems/zenario": "<=9.7.61188",
1848
+ "truckersmp/phpwhois": "<=4.3.1",
1849
+ "ttskch/pagination-service-provider": "<1",
1850
+ "twbs/bootstrap": "<=3.4.1|>=4,<=4.6.2",
1851
+ "twig/twig": "<3.11.2|>=3.12,<3.14.1|>=3.16,<3.19",
1852
+ "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
1853
+ "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<10.4.46|>=11,<11.5.40|>=12,<=12.4.30|>=13,<=13.4.11",
1854
+ "typo3/cms-belog": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
1855
+ "typo3/cms-beuser": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
1856
+ "typo3/cms-core": "<=8.7.56|>=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11",
1857
+ "typo3/cms-dashboard": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
1858
+ "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
1859
+ "typo3/cms-extensionmanager": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
1860
+ "typo3/cms-felogin": ">=4.2,<4.2.3",
1861
+ "typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1",
1862
+ "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
1863
+ "typo3/cms-frontend": "<4.3.9|>=4.4,<4.4.5",
1864
+ "typo3/cms-indexed-search": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
1865
+ "typo3/cms-install": "<4.1.14|>=4.2,<4.2.16|>=4.3,<4.3.9|>=4.4,<4.4.5|>=12.2,<12.4.8|==13.4.2",
1866
+ "typo3/cms-lowlevel": ">=11,<=11.5.41",
1867
+ "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30",
1868
+ "typo3/cms-scheduler": ">=11,<=11.5.41",
1869
+ "typo3/cms-setup": ">=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11",
1870
+ "typo3/cms-webhooks": ">=12,<=12.4.30|>=13,<=13.4.11",
1871
+ "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
1872
+ "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3",
1873
+ "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
1874
+ "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
1875
+ "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
1876
+ "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
1877
+ "ua-parser/uap-php": "<3.8",
1878
+ "uasoft-indonesia/badaso": "<=2.9.7",
1879
+ "unisharp/laravel-filemanager": "<2.9.1",
1880
+ "unopim/unopim": "<0.1.5",
1881
+ "userfrosting/userfrosting": ">=0.3.1,<4.6.3",
1882
+ "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
1883
+ "uvdesk/community-skeleton": "<=1.1.1",
1884
+ "uvdesk/core-framework": "<=1.1.1",
1885
+ "vanilla/safecurl": "<0.9.2",
1886
+ "verbb/comments": "<1.5.5",
1887
+ "verbb/formie": "<=2.1.43",
1888
+ "verbb/image-resizer": "<2.0.9",
1889
+ "verbb/knock-knock": "<1.2.8",
1890
+ "verot/class.upload.php": "<=2.1.6",
1891
+ "vertexvaar/falsftp": "<0.2.6",
1892
+ "villagedefrance/opencart-overclocked": "<=1.11.1",
1893
+ "vova07/yii2-fileapi-widget": "<0.1.9",
1894
+ "vrana/adminer": "<4.8.1",
1895
+ "vufind/vufind": ">=2,<9.1.1",
1896
+ "waldhacker/hcaptcha": "<2.1.2",
1897
+ "wallabag/tcpdf": "<6.2.22",
1898
+ "wallabag/wallabag": "<2.6.11",
1899
+ "wanglelecc/laracms": "<=1.0.3",
1900
+ "wapplersystems/a21glossary": "<=0.4.10",
1901
+ "web-auth/webauthn-framework": ">=3.3,<3.3.4|>=4.5,<4.9",
1902
+ "web-auth/webauthn-lib": ">=4.5,<4.9",
1903
+ "web-feet/coastercms": "==5.5",
1904
+ "web-tp3/wec_map": "<3.0.3",
1905
+ "webbuilders-group/silverstripe-kapost-bridge": "<0.4",
1906
+ "webcoast/deferred-image-processing": "<1.0.2",
1907
+ "webklex/laravel-imap": "<5.3",
1908
+ "webklex/php-imap": "<5.3",
1909
+ "webpa/webpa": "<3.1.2",
1910
+ "wikibase/wikibase": "<=1.39.3",
1911
+ "wikimedia/parsoid": "<0.12.2",
1912
+ "willdurand/js-translation-bundle": "<2.1.1",
1913
+ "winter/wn-backend-module": "<1.2.4",
1914
+ "winter/wn-cms-module": "<1.0.476|>=1.1,<1.1.11|>=1.2,<1.2.7",
1915
+ "winter/wn-dusk-plugin": "<2.1",
1916
+ "winter/wn-system-module": "<1.2.4",
1917
+ "wintercms/winter": "<=1.2.3",
1918
+ "wireui/wireui": "<1.19.3|>=2,<2.1.3",
1919
+ "woocommerce/woocommerce": "<6.6|>=8.8,<8.8.5|>=8.9,<8.9.3",
1920
+ "wp-cli/wp-cli": ">=0.12,<2.5",
1921
+ "wp-graphql/wp-graphql": "<=1.14.5",
1922
+ "wp-premium/gravityforms": "<2.4.21",
1923
+ "wpanel/wpanel4-cms": "<=4.3.1",
1924
+ "wpcloud/wp-stateless": "<3.2",
1925
+ "wpglobus/wpglobus": "<=1.9.6",
1926
+ "wwbn/avideo": "<14.3",
1927
+ "xataface/xataface": "<3",
1928
+ "xpressengine/xpressengine": "<3.0.15",
1929
+ "yab/quarx": "<2.4.5",
1930
+ "yeswiki/yeswiki": "<4.5.4",
1931
+ "yetiforce/yetiforce-crm": "<6.5",
1932
+ "yidashi/yii2cmf": "<=2",
1933
+ "yii2mod/yii2-cms": "<1.9.2",
1934
+ "yiisoft/yii": "<1.1.31",
1935
+ "yiisoft/yii2": "<2.0.52",
1936
+ "yiisoft/yii2-authclient": "<2.2.15",
1937
+ "yiisoft/yii2-bootstrap": "<2.0.4",
1938
+ "yiisoft/yii2-dev": "<=2.0.45",
1939
+ "yiisoft/yii2-elasticsearch": "<2.0.5",
1940
+ "yiisoft/yii2-gii": "<=2.2.4",
1941
+ "yiisoft/yii2-jui": "<2.0.4",
1942
+ "yiisoft/yii2-redis": "<2.0.20",
1943
+ "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
1944
+ "yoast-seo-for-typo3/yoast_seo": "<7.2.3",
1945
+ "yourls/yourls": "<=1.8.2",
1946
+ "yuan1994/tpadmin": "<=1.3.12",
1947
+ "zencart/zencart": "<=1.5.7.0-beta",
1948
+ "zendesk/zendesk_api_client_php": "<2.2.11",
1949
+ "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
1950
+ "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
1951
+ "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
1952
+ "zendframework/zend-db": "<2.2.10|>=2.3,<2.3.5",
1953
+ "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
1954
+ "zendframework/zend-diactoros": "<1.8.4",
1955
+ "zendframework/zend-feed": "<2.10.3",
1956
+ "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
1957
+ "zendframework/zend-http": "<2.8.1",
1958
+ "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
1959
+ "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
1960
+ "zendframework/zend-mail": "<2.4.11|>=2.5,<2.7.2",
1961
+ "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
1962
+ "zendframework/zend-session": ">=2,<2.2.9|>=2.3,<2.3.4",
1963
+ "zendframework/zend-validator": ">=2.3,<2.3.6",
1964
+ "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
1965
+ "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
1966
+ "zendframework/zendframework": "<=3",
1967
+ "zendframework/zendframework1": "<1.12.20",
1968
+ "zendframework/zendopenid": "<2.0.2",
1969
+ "zendframework/zendrest": "<2.0.2",
1970
+ "zendframework/zendservice-amazon": "<2.0.3",
1971
+ "zendframework/zendservice-api": "<1",
1972
+ "zendframework/zendservice-audioscrobbler": "<2.0.2",
1973
+ "zendframework/zendservice-nirvanix": "<2.0.2",
1974
+ "zendframework/zendservice-slideshare": "<2.0.2",
1975
+ "zendframework/zendservice-technorati": "<2.0.2",
1976
+ "zendframework/zendservice-windowsazure": "<2.0.2",
1977
+ "zendframework/zendxml": ">=1,<1.0.1",
1978
+ "zenstruck/collection": "<0.2.1",
1979
+ "zetacomponents/mail": "<1.8.2",
1980
+ "zf-commons/zfc-user": "<1.2.2",
1981
+ "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
1982
+ "zfr/zfr-oauth2-server-module": "<0.1.2",
1983
+ "zoujingli/thinkadmin": "<=6.1.53"
1984
+ },
1985
+ "default-branch": true,
1986
+ "type": "metapackage",
1987
+ "notification-url": "https://packagist.org/downloads/",
1988
+ "license": ["MIT"],
1989
+ "authors": [
1990
+ {
1991
+ "name": "Marco Pivetta",
1992
+ "email": "ocramius@gmail.com",
1993
+ "role": "maintainer"
1994
+ },
1995
+ {
1996
+ "name": "Ilya Tribusean",
1997
+ "email": "slash3b@gmail.com",
1998
+ "role": "maintainer"
1999
+ }
2000
+ ],
2001
+ "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
2002
+ "keywords": ["dev"],
2003
+ "support": {
2004
+ "issues": "https://github.com/Roave/SecurityAdvisories/issues",
2005
+ "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
2006
+ },
2007
+ "funding": [
2008
+ {
2009
+ "url": "https://github.com/Ocramius",
2010
+ "type": "github"
2011
+ },
2012
+ {
2013
+ "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
2014
+ "type": "tidelift"
2015
+ }
2016
+ ],
2017
+ "time": "2025-06-13T22:05:09+00:00"
2018
+ },
2019
+ {
2020
+ "name": "sebastian/diff",
2021
+ "version": "7.0.0",
2022
+ "source": {
2023
+ "type": "git",
2024
+ "url": "https://github.com/sebastianbergmann/diff.git",
2025
+ "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
2026
+ },
2027
+ "dist": {
2028
+ "type": "zip",
2029
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
2030
+ "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
2031
+ "shasum": ""
2032
+ },
2033
+ "require": {
2034
+ "php": ">=8.3"
2035
+ },
2036
+ "require-dev": {
2037
+ "phpunit/phpunit": "^12.0",
2038
+ "symfony/process": "^7.2"
2039
+ },
2040
+ "type": "library",
2041
+ "extra": {
2042
+ "branch-alias": {
2043
+ "dev-main": "7.0-dev"
2044
+ }
2045
+ },
2046
+ "autoload": {
2047
+ "classmap": ["src/"]
2048
+ },
2049
+ "notification-url": "https://packagist.org/downloads/",
2050
+ "license": ["BSD-3-Clause"],
2051
+ "authors": [
2052
+ {
2053
+ "name": "Sebastian Bergmann",
2054
+ "email": "sebastian@phpunit.de"
2055
+ },
2056
+ {
2057
+ "name": "Kore Nordmann",
2058
+ "email": "mail@kore-nordmann.de"
2059
+ }
2060
+ ],
2061
+ "description": "Diff implementation",
2062
+ "homepage": "https://github.com/sebastianbergmann/diff",
2063
+ "keywords": ["diff", "udiff", "unidiff", "unified diff"],
2064
+ "support": {
2065
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
2066
+ "security": "https://github.com/sebastianbergmann/diff/security/policy",
2067
+ "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
2068
+ },
2069
+ "funding": [
2070
+ {
2071
+ "url": "https://github.com/sebastianbergmann",
2072
+ "type": "github"
2073
+ }
2074
+ ],
2075
+ "time": "2025-02-07T04:55:46+00:00"
2076
+ },
2077
+ {
2078
+ "name": "symfony/console",
2079
+ "version": "v7.3.0",
2080
+ "source": {
2081
+ "type": "git",
2082
+ "url": "https://github.com/symfony/console.git",
2083
+ "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44"
2084
+ },
2085
+ "dist": {
2086
+ "type": "zip",
2087
+ "url": "https://api.github.com/repos/symfony/console/zipball/66c1440edf6f339fd82ed6c7caa76cb006211b44",
2088
+ "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44",
2089
+ "shasum": ""
2090
+ },
2091
+ "require": {
2092
+ "php": ">=8.2",
2093
+ "symfony/deprecation-contracts": "^2.5|^3",
2094
+ "symfony/polyfill-mbstring": "~1.0",
2095
+ "symfony/service-contracts": "^2.5|^3",
2096
+ "symfony/string": "^7.2"
2097
+ },
2098
+ "conflict": {
2099
+ "symfony/dependency-injection": "<6.4",
2100
+ "symfony/dotenv": "<6.4",
2101
+ "symfony/event-dispatcher": "<6.4",
2102
+ "symfony/lock": "<6.4",
2103
+ "symfony/process": "<6.4"
2104
+ },
2105
+ "provide": {
2106
+ "psr/log-implementation": "1.0|2.0|3.0"
2107
+ },
2108
+ "require-dev": {
2109
+ "psr/log": "^1|^2|^3",
2110
+ "symfony/config": "^6.4|^7.0",
2111
+ "symfony/dependency-injection": "^6.4|^7.0",
2112
+ "symfony/event-dispatcher": "^6.4|^7.0",
2113
+ "symfony/http-foundation": "^6.4|^7.0",
2114
+ "symfony/http-kernel": "^6.4|^7.0",
2115
+ "symfony/lock": "^6.4|^7.0",
2116
+ "symfony/messenger": "^6.4|^7.0",
2117
+ "symfony/process": "^6.4|^7.0",
2118
+ "symfony/stopwatch": "^6.4|^7.0",
2119
+ "symfony/var-dumper": "^6.4|^7.0"
2120
+ },
2121
+ "type": "library",
2122
+ "autoload": {
2123
+ "psr-4": {
2124
+ "Symfony\\Component\\Console\\": ""
2125
+ },
2126
+ "exclude-from-classmap": ["/Tests/"]
2127
+ },
2128
+ "notification-url": "https://packagist.org/downloads/",
2129
+ "license": ["MIT"],
2130
+ "authors": [
2131
+ {
2132
+ "name": "Fabien Potencier",
2133
+ "email": "fabien@symfony.com"
2134
+ },
2135
+ {
2136
+ "name": "Symfony Community",
2137
+ "homepage": "https://symfony.com/contributors"
2138
+ }
2139
+ ],
2140
+ "description": "Eases the creation of beautiful and testable command line interfaces",
2141
+ "homepage": "https://symfony.com",
2142
+ "keywords": ["cli", "command-line", "console", "terminal"],
2143
+ "support": {
2144
+ "source": "https://github.com/symfony/console/tree/v7.3.0"
2145
+ },
2146
+ "funding": [
2147
+ {
2148
+ "url": "https://symfony.com/sponsor",
2149
+ "type": "custom"
2150
+ },
2151
+ {
2152
+ "url": "https://github.com/fabpot",
2153
+ "type": "github"
2154
+ },
2155
+ {
2156
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2157
+ "type": "tidelift"
2158
+ }
2159
+ ],
2160
+ "time": "2025-05-24T10:34:04+00:00"
2161
+ },
2162
+ {
2163
+ "name": "symfony/deprecation-contracts",
2164
+ "version": "v3.6.0",
2165
+ "source": {
2166
+ "type": "git",
2167
+ "url": "https://github.com/symfony/deprecation-contracts.git",
2168
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
2169
+ },
2170
+ "dist": {
2171
+ "type": "zip",
2172
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
2173
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
2174
+ "shasum": ""
2175
+ },
2176
+ "require": {
2177
+ "php": ">=8.1"
2178
+ },
2179
+ "type": "library",
2180
+ "extra": {
2181
+ "thanks": {
2182
+ "url": "https://github.com/symfony/contracts",
2183
+ "name": "symfony/contracts"
2184
+ },
2185
+ "branch-alias": {
2186
+ "dev-main": "3.6-dev"
2187
+ }
2188
+ },
2189
+ "autoload": {
2190
+ "files": ["function.php"]
2191
+ },
2192
+ "notification-url": "https://packagist.org/downloads/",
2193
+ "license": ["MIT"],
2194
+ "authors": [
2195
+ {
2196
+ "name": "Nicolas Grekas",
2197
+ "email": "p@tchwork.com"
2198
+ },
2199
+ {
2200
+ "name": "Symfony Community",
2201
+ "homepage": "https://symfony.com/contributors"
2202
+ }
2203
+ ],
2204
+ "description": "A generic function and convention to trigger deprecation notices",
2205
+ "homepage": "https://symfony.com",
2206
+ "support": {
2207
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
2208
+ },
2209
+ "funding": [
2210
+ {
2211
+ "url": "https://symfony.com/sponsor",
2212
+ "type": "custom"
2213
+ },
2214
+ {
2215
+ "url": "https://github.com/fabpot",
2216
+ "type": "github"
2217
+ },
2218
+ {
2219
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2220
+ "type": "tidelift"
2221
+ }
2222
+ ],
2223
+ "time": "2024-09-25T14:21:43+00:00"
2224
+ },
2225
+ {
2226
+ "name": "symfony/event-dispatcher",
2227
+ "version": "v7.3.0",
2228
+ "source": {
2229
+ "type": "git",
2230
+ "url": "https://github.com/symfony/event-dispatcher.git",
2231
+ "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
2232
+ },
2233
+ "dist": {
2234
+ "type": "zip",
2235
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
2236
+ "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
2237
+ "shasum": ""
2238
+ },
2239
+ "require": {
2240
+ "php": ">=8.2",
2241
+ "symfony/event-dispatcher-contracts": "^2.5|^3"
2242
+ },
2243
+ "conflict": {
2244
+ "symfony/dependency-injection": "<6.4",
2245
+ "symfony/service-contracts": "<2.5"
2246
+ },
2247
+ "provide": {
2248
+ "psr/event-dispatcher-implementation": "1.0",
2249
+ "symfony/event-dispatcher-implementation": "2.0|3.0"
2250
+ },
2251
+ "require-dev": {
2252
+ "psr/log": "^1|^2|^3",
2253
+ "symfony/config": "^6.4|^7.0",
2254
+ "symfony/dependency-injection": "^6.4|^7.0",
2255
+ "symfony/error-handler": "^6.4|^7.0",
2256
+ "symfony/expression-language": "^6.4|^7.0",
2257
+ "symfony/http-foundation": "^6.4|^7.0",
2258
+ "symfony/service-contracts": "^2.5|^3",
2259
+ "symfony/stopwatch": "^6.4|^7.0"
2260
+ },
2261
+ "type": "library",
2262
+ "autoload": {
2263
+ "psr-4": {
2264
+ "Symfony\\Component\\EventDispatcher\\": ""
2265
+ },
2266
+ "exclude-from-classmap": ["/Tests/"]
2267
+ },
2268
+ "notification-url": "https://packagist.org/downloads/",
2269
+ "license": ["MIT"],
2270
+ "authors": [
2271
+ {
2272
+ "name": "Fabien Potencier",
2273
+ "email": "fabien@symfony.com"
2274
+ },
2275
+ {
2276
+ "name": "Symfony Community",
2277
+ "homepage": "https://symfony.com/contributors"
2278
+ }
2279
+ ],
2280
+ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
2281
+ "homepage": "https://symfony.com",
2282
+ "support": {
2283
+ "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
2284
+ },
2285
+ "funding": [
2286
+ {
2287
+ "url": "https://symfony.com/sponsor",
2288
+ "type": "custom"
2289
+ },
2290
+ {
2291
+ "url": "https://github.com/fabpot",
2292
+ "type": "github"
2293
+ },
2294
+ {
2295
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2296
+ "type": "tidelift"
2297
+ }
2298
+ ],
2299
+ "time": "2025-04-22T09:11:45+00:00"
2300
+ },
2301
+ {
2302
+ "name": "symfony/event-dispatcher-contracts",
2303
+ "version": "v3.6.0",
2304
+ "source": {
2305
+ "type": "git",
2306
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
2307
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
2308
+ },
2309
+ "dist": {
2310
+ "type": "zip",
2311
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
2312
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
2313
+ "shasum": ""
2314
+ },
2315
+ "require": {
2316
+ "php": ">=8.1",
2317
+ "psr/event-dispatcher": "^1"
2318
+ },
2319
+ "type": "library",
2320
+ "extra": {
2321
+ "thanks": {
2322
+ "url": "https://github.com/symfony/contracts",
2323
+ "name": "symfony/contracts"
2324
+ },
2325
+ "branch-alias": {
2326
+ "dev-main": "3.6-dev"
2327
+ }
2328
+ },
2329
+ "autoload": {
2330
+ "psr-4": {
2331
+ "Symfony\\Contracts\\EventDispatcher\\": ""
2332
+ }
2333
+ },
2334
+ "notification-url": "https://packagist.org/downloads/",
2335
+ "license": ["MIT"],
2336
+ "authors": [
2337
+ {
2338
+ "name": "Nicolas Grekas",
2339
+ "email": "p@tchwork.com"
2340
+ },
2341
+ {
2342
+ "name": "Symfony Community",
2343
+ "homepage": "https://symfony.com/contributors"
2344
+ }
2345
+ ],
2346
+ "description": "Generic abstractions related to dispatching event",
2347
+ "homepage": "https://symfony.com",
2348
+ "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"],
2349
+ "support": {
2350
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
2351
+ },
2352
+ "funding": [
2353
+ {
2354
+ "url": "https://symfony.com/sponsor",
2355
+ "type": "custom"
2356
+ },
2357
+ {
2358
+ "url": "https://github.com/fabpot",
2359
+ "type": "github"
2360
+ },
2361
+ {
2362
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2363
+ "type": "tidelift"
2364
+ }
2365
+ ],
2366
+ "time": "2024-09-25T14:21:43+00:00"
2367
+ },
2368
+ {
2369
+ "name": "symfony/filesystem",
2370
+ "version": "v7.3.0",
2371
+ "source": {
2372
+ "type": "git",
2373
+ "url": "https://github.com/symfony/filesystem.git",
2374
+ "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
2375
+ },
2376
+ "dist": {
2377
+ "type": "zip",
2378
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
2379
+ "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
2380
+ "shasum": ""
2381
+ },
2382
+ "require": {
2383
+ "php": ">=8.2",
2384
+ "symfony/polyfill-ctype": "~1.8",
2385
+ "symfony/polyfill-mbstring": "~1.8"
2386
+ },
2387
+ "require-dev": {
2388
+ "symfony/process": "^6.4|^7.0"
2389
+ },
2390
+ "type": "library",
2391
+ "autoload": {
2392
+ "psr-4": {
2393
+ "Symfony\\Component\\Filesystem\\": ""
2394
+ },
2395
+ "exclude-from-classmap": ["/Tests/"]
2396
+ },
2397
+ "notification-url": "https://packagist.org/downloads/",
2398
+ "license": ["MIT"],
2399
+ "authors": [
2400
+ {
2401
+ "name": "Fabien Potencier",
2402
+ "email": "fabien@symfony.com"
2403
+ },
2404
+ {
2405
+ "name": "Symfony Community",
2406
+ "homepage": "https://symfony.com/contributors"
2407
+ }
2408
+ ],
2409
+ "description": "Provides basic utilities for the filesystem",
2410
+ "homepage": "https://symfony.com",
2411
+ "support": {
2412
+ "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
2413
+ },
2414
+ "funding": [
2415
+ {
2416
+ "url": "https://symfony.com/sponsor",
2417
+ "type": "custom"
2418
+ },
2419
+ {
2420
+ "url": "https://github.com/fabpot",
2421
+ "type": "github"
2422
+ },
2423
+ {
2424
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2425
+ "type": "tidelift"
2426
+ }
2427
+ ],
2428
+ "time": "2024-10-25T15:15:23+00:00"
2429
+ },
2430
+ {
2431
+ "name": "symfony/finder",
2432
+ "version": "v7.3.0",
2433
+ "source": {
2434
+ "type": "git",
2435
+ "url": "https://github.com/symfony/finder.git",
2436
+ "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
2437
+ },
2438
+ "dist": {
2439
+ "type": "zip",
2440
+ "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
2441
+ "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
2442
+ "shasum": ""
2443
+ },
2444
+ "require": {
2445
+ "php": ">=8.2"
2446
+ },
2447
+ "require-dev": {
2448
+ "symfony/filesystem": "^6.4|^7.0"
2449
+ },
2450
+ "type": "library",
2451
+ "autoload": {
2452
+ "psr-4": {
2453
+ "Symfony\\Component\\Finder\\": ""
2454
+ },
2455
+ "exclude-from-classmap": ["/Tests/"]
2456
+ },
2457
+ "notification-url": "https://packagist.org/downloads/",
2458
+ "license": ["MIT"],
2459
+ "authors": [
2460
+ {
2461
+ "name": "Fabien Potencier",
2462
+ "email": "fabien@symfony.com"
2463
+ },
2464
+ {
2465
+ "name": "Symfony Community",
2466
+ "homepage": "https://symfony.com/contributors"
2467
+ }
2468
+ ],
2469
+ "description": "Finds files and directories via an intuitive fluent interface",
2470
+ "homepage": "https://symfony.com",
2471
+ "support": {
2472
+ "source": "https://github.com/symfony/finder/tree/v7.3.0"
2473
+ },
2474
+ "funding": [
2475
+ {
2476
+ "url": "https://symfony.com/sponsor",
2477
+ "type": "custom"
2478
+ },
2479
+ {
2480
+ "url": "https://github.com/fabpot",
2481
+ "type": "github"
2482
+ },
2483
+ {
2484
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2485
+ "type": "tidelift"
2486
+ }
2487
+ ],
2488
+ "time": "2024-12-30T19:00:26+00:00"
2489
+ },
2490
+ {
2491
+ "name": "symfony/options-resolver",
2492
+ "version": "v7.3.0",
2493
+ "source": {
2494
+ "type": "git",
2495
+ "url": "https://github.com/symfony/options-resolver.git",
2496
+ "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
2497
+ },
2498
+ "dist": {
2499
+ "type": "zip",
2500
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
2501
+ "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
2502
+ "shasum": ""
2503
+ },
2504
+ "require": {
2505
+ "php": ">=8.2",
2506
+ "symfony/deprecation-contracts": "^2.5|^3"
2507
+ },
2508
+ "type": "library",
2509
+ "autoload": {
2510
+ "psr-4": {
2511
+ "Symfony\\Component\\OptionsResolver\\": ""
2512
+ },
2513
+ "exclude-from-classmap": ["/Tests/"]
2514
+ },
2515
+ "notification-url": "https://packagist.org/downloads/",
2516
+ "license": ["MIT"],
2517
+ "authors": [
2518
+ {
2519
+ "name": "Fabien Potencier",
2520
+ "email": "fabien@symfony.com"
2521
+ },
2522
+ {
2523
+ "name": "Symfony Community",
2524
+ "homepage": "https://symfony.com/contributors"
2525
+ }
2526
+ ],
2527
+ "description": "Provides an improved replacement for the array_replace PHP function",
2528
+ "homepage": "https://symfony.com",
2529
+ "keywords": ["config", "configuration", "options"],
2530
+ "support": {
2531
+ "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
2532
+ },
2533
+ "funding": [
2534
+ {
2535
+ "url": "https://symfony.com/sponsor",
2536
+ "type": "custom"
2537
+ },
2538
+ {
2539
+ "url": "https://github.com/fabpot",
2540
+ "type": "github"
2541
+ },
2542
+ {
2543
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2544
+ "type": "tidelift"
2545
+ }
2546
+ ],
2547
+ "time": "2025-04-04T13:12:05+00:00"
2548
+ },
2549
+ {
2550
+ "name": "symfony/polyfill-ctype",
2551
+ "version": "v1.32.0",
2552
+ "source": {
2553
+ "type": "git",
2554
+ "url": "https://github.com/symfony/polyfill-ctype.git",
2555
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
2556
+ },
2557
+ "dist": {
2558
+ "type": "zip",
2559
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
2560
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
2561
+ "shasum": ""
2562
+ },
2563
+ "require": {
2564
+ "php": ">=7.2"
2565
+ },
2566
+ "provide": {
2567
+ "ext-ctype": "*"
2568
+ },
2569
+ "suggest": {
2570
+ "ext-ctype": "For best performance"
2571
+ },
2572
+ "type": "library",
2573
+ "extra": {
2574
+ "thanks": {
2575
+ "url": "https://github.com/symfony/polyfill",
2576
+ "name": "symfony/polyfill"
2577
+ }
2578
+ },
2579
+ "autoload": {
2580
+ "files": ["bootstrap.php"],
2581
+ "psr-4": {
2582
+ "Symfony\\Polyfill\\Ctype\\": ""
2583
+ }
2584
+ },
2585
+ "notification-url": "https://packagist.org/downloads/",
2586
+ "license": ["MIT"],
2587
+ "authors": [
2588
+ {
2589
+ "name": "Gert de Pagter",
2590
+ "email": "BackEndTea@gmail.com"
2591
+ },
2592
+ {
2593
+ "name": "Symfony Community",
2594
+ "homepage": "https://symfony.com/contributors"
2595
+ }
2596
+ ],
2597
+ "description": "Symfony polyfill for ctype functions",
2598
+ "homepage": "https://symfony.com",
2599
+ "keywords": ["compatibility", "ctype", "polyfill", "portable"],
2600
+ "support": {
2601
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
2602
+ },
2603
+ "funding": [
2604
+ {
2605
+ "url": "https://symfony.com/sponsor",
2606
+ "type": "custom"
2607
+ },
2608
+ {
2609
+ "url": "https://github.com/fabpot",
2610
+ "type": "github"
2611
+ },
2612
+ {
2613
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2614
+ "type": "tidelift"
2615
+ }
2616
+ ],
2617
+ "time": "2024-09-09T11:45:10+00:00"
2618
+ },
2619
+ {
2620
+ "name": "symfony/polyfill-intl-grapheme",
2621
+ "version": "v1.32.0",
2622
+ "source": {
2623
+ "type": "git",
2624
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
2625
+ "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
2626
+ },
2627
+ "dist": {
2628
+ "type": "zip",
2629
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
2630
+ "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
2631
+ "shasum": ""
2632
+ },
2633
+ "require": {
2634
+ "php": ">=7.2"
2635
+ },
2636
+ "suggest": {
2637
+ "ext-intl": "For best performance"
2638
+ },
2639
+ "type": "library",
2640
+ "extra": {
2641
+ "thanks": {
2642
+ "url": "https://github.com/symfony/polyfill",
2643
+ "name": "symfony/polyfill"
2644
+ }
2645
+ },
2646
+ "autoload": {
2647
+ "files": ["bootstrap.php"],
2648
+ "psr-4": {
2649
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
2650
+ }
2651
+ },
2652
+ "notification-url": "https://packagist.org/downloads/",
2653
+ "license": ["MIT"],
2654
+ "authors": [
2655
+ {
2656
+ "name": "Nicolas Grekas",
2657
+ "email": "p@tchwork.com"
2658
+ },
2659
+ {
2660
+ "name": "Symfony Community",
2661
+ "homepage": "https://symfony.com/contributors"
2662
+ }
2663
+ ],
2664
+ "description": "Symfony polyfill for intl's grapheme_* functions",
2665
+ "homepage": "https://symfony.com",
2666
+ "keywords": ["compatibility", "grapheme", "intl", "polyfill", "portable", "shim"],
2667
+ "support": {
2668
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
2669
+ },
2670
+ "funding": [
2671
+ {
2672
+ "url": "https://symfony.com/sponsor",
2673
+ "type": "custom"
2674
+ },
2675
+ {
2676
+ "url": "https://github.com/fabpot",
2677
+ "type": "github"
2678
+ },
2679
+ {
2680
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2681
+ "type": "tidelift"
2682
+ }
2683
+ ],
2684
+ "time": "2024-09-09T11:45:10+00:00"
2685
+ },
2686
+ {
2687
+ "name": "symfony/polyfill-intl-normalizer",
2688
+ "version": "v1.32.0",
2689
+ "source": {
2690
+ "type": "git",
2691
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
2692
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c"
2693
+ },
2694
+ "dist": {
2695
+ "type": "zip",
2696
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
2697
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c",
2698
+ "shasum": ""
2699
+ },
2700
+ "require": {
2701
+ "php": ">=7.2"
2702
+ },
2703
+ "suggest": {
2704
+ "ext-intl": "For best performance"
2705
+ },
2706
+ "type": "library",
2707
+ "extra": {
2708
+ "thanks": {
2709
+ "url": "https://github.com/symfony/polyfill",
2710
+ "name": "symfony/polyfill"
2711
+ }
2712
+ },
2713
+ "autoload": {
2714
+ "files": ["bootstrap.php"],
2715
+ "psr-4": {
2716
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
2717
+ },
2718
+ "classmap": ["Resources/stubs"]
2719
+ },
2720
+ "notification-url": "https://packagist.org/downloads/",
2721
+ "license": ["MIT"],
2722
+ "authors": [
2723
+ {
2724
+ "name": "Nicolas Grekas",
2725
+ "email": "p@tchwork.com"
2726
+ },
2727
+ {
2728
+ "name": "Symfony Community",
2729
+ "homepage": "https://symfony.com/contributors"
2730
+ }
2731
+ ],
2732
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
2733
+ "homepage": "https://symfony.com",
2734
+ "keywords": ["compatibility", "intl", "normalizer", "polyfill", "portable", "shim"],
2735
+ "support": {
2736
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
2737
+ },
2738
+ "funding": [
2739
+ {
2740
+ "url": "https://symfony.com/sponsor",
2741
+ "type": "custom"
2742
+ },
2743
+ {
2744
+ "url": "https://github.com/fabpot",
2745
+ "type": "github"
2746
+ },
2747
+ {
2748
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2749
+ "type": "tidelift"
2750
+ }
2751
+ ],
2752
+ "time": "2024-09-09T11:45:10+00:00"
2753
+ },
2754
+ {
2755
+ "name": "symfony/polyfill-mbstring",
2756
+ "version": "v1.32.0",
2757
+ "source": {
2758
+ "type": "git",
2759
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
2760
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
2761
+ },
2762
+ "dist": {
2763
+ "type": "zip",
2764
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
2765
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
2766
+ "shasum": ""
2767
+ },
2768
+ "require": {
2769
+ "ext-iconv": "*",
2770
+ "php": ">=7.2"
2771
+ },
2772
+ "provide": {
2773
+ "ext-mbstring": "*"
2774
+ },
2775
+ "suggest": {
2776
+ "ext-mbstring": "For best performance"
2777
+ },
2778
+ "type": "library",
2779
+ "extra": {
2780
+ "thanks": {
2781
+ "url": "https://github.com/symfony/polyfill",
2782
+ "name": "symfony/polyfill"
2783
+ }
2784
+ },
2785
+ "autoload": {
2786
+ "files": ["bootstrap.php"],
2787
+ "psr-4": {
2788
+ "Symfony\\Polyfill\\Mbstring\\": ""
2789
+ }
2790
+ },
2791
+ "notification-url": "https://packagist.org/downloads/",
2792
+ "license": ["MIT"],
2793
+ "authors": [
2794
+ {
2795
+ "name": "Nicolas Grekas",
2796
+ "email": "p@tchwork.com"
2797
+ },
2798
+ {
2799
+ "name": "Symfony Community",
2800
+ "homepage": "https://symfony.com/contributors"
2801
+ }
2802
+ ],
2803
+ "description": "Symfony polyfill for the Mbstring extension",
2804
+ "homepage": "https://symfony.com",
2805
+ "keywords": ["compatibility", "mbstring", "polyfill", "portable", "shim"],
2806
+ "support": {
2807
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
2808
+ },
2809
+ "funding": [
2810
+ {
2811
+ "url": "https://symfony.com/sponsor",
2812
+ "type": "custom"
2813
+ },
2814
+ {
2815
+ "url": "https://github.com/fabpot",
2816
+ "type": "github"
2817
+ },
2818
+ {
2819
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2820
+ "type": "tidelift"
2821
+ }
2822
+ ],
2823
+ "time": "2024-12-23T08:48:59+00:00"
2824
+ },
2825
+ {
2826
+ "name": "symfony/polyfill-php80",
2827
+ "version": "v1.32.0",
2828
+ "source": {
2829
+ "type": "git",
2830
+ "url": "https://github.com/symfony/polyfill-php80.git",
2831
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
2832
+ },
2833
+ "dist": {
2834
+ "type": "zip",
2835
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2836
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2837
+ "shasum": ""
2838
+ },
2839
+ "require": {
2840
+ "php": ">=7.2"
2841
+ },
2842
+ "type": "library",
2843
+ "extra": {
2844
+ "thanks": {
2845
+ "url": "https://github.com/symfony/polyfill",
2846
+ "name": "symfony/polyfill"
2847
+ }
2848
+ },
2849
+ "autoload": {
2850
+ "files": ["bootstrap.php"],
2851
+ "psr-4": {
2852
+ "Symfony\\Polyfill\\Php80\\": ""
2853
+ },
2854
+ "classmap": ["Resources/stubs"]
2855
+ },
2856
+ "notification-url": "https://packagist.org/downloads/",
2857
+ "license": ["MIT"],
2858
+ "authors": [
2859
+ {
2860
+ "name": "Ion Bazan",
2861
+ "email": "ion.bazan@gmail.com"
2862
+ },
2863
+ {
2864
+ "name": "Nicolas Grekas",
2865
+ "email": "p@tchwork.com"
2866
+ },
2867
+ {
2868
+ "name": "Symfony Community",
2869
+ "homepage": "https://symfony.com/contributors"
2870
+ }
2871
+ ],
2872
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
2873
+ "homepage": "https://symfony.com",
2874
+ "keywords": ["compatibility", "polyfill", "portable", "shim"],
2875
+ "support": {
2876
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
2877
+ },
2878
+ "funding": [
2879
+ {
2880
+ "url": "https://symfony.com/sponsor",
2881
+ "type": "custom"
2882
+ },
2883
+ {
2884
+ "url": "https://github.com/fabpot",
2885
+ "type": "github"
2886
+ },
2887
+ {
2888
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2889
+ "type": "tidelift"
2890
+ }
2891
+ ],
2892
+ "time": "2025-01-02T08:10:11+00:00"
2893
+ },
2894
+ {
2895
+ "name": "symfony/polyfill-php81",
2896
+ "version": "v1.32.0",
2897
+ "source": {
2898
+ "type": "git",
2899
+ "url": "https://github.com/symfony/polyfill-php81.git",
2900
+ "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
2901
+ },
2902
+ "dist": {
2903
+ "type": "zip",
2904
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
2905
+ "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
2906
+ "shasum": ""
2907
+ },
2908
+ "require": {
2909
+ "php": ">=7.2"
2910
+ },
2911
+ "type": "library",
2912
+ "extra": {
2913
+ "thanks": {
2914
+ "url": "https://github.com/symfony/polyfill",
2915
+ "name": "symfony/polyfill"
2916
+ }
2917
+ },
2918
+ "autoload": {
2919
+ "files": ["bootstrap.php"],
2920
+ "psr-4": {
2921
+ "Symfony\\Polyfill\\Php81\\": ""
2922
+ },
2923
+ "classmap": ["Resources/stubs"]
2924
+ },
2925
+ "notification-url": "https://packagist.org/downloads/",
2926
+ "license": ["MIT"],
2927
+ "authors": [
2928
+ {
2929
+ "name": "Nicolas Grekas",
2930
+ "email": "p@tchwork.com"
2931
+ },
2932
+ {
2933
+ "name": "Symfony Community",
2934
+ "homepage": "https://symfony.com/contributors"
2935
+ }
2936
+ ],
2937
+ "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
2938
+ "homepage": "https://symfony.com",
2939
+ "keywords": ["compatibility", "polyfill", "portable", "shim"],
2940
+ "support": {
2941
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
2942
+ },
2943
+ "funding": [
2944
+ {
2945
+ "url": "https://symfony.com/sponsor",
2946
+ "type": "custom"
2947
+ },
2948
+ {
2949
+ "url": "https://github.com/fabpot",
2950
+ "type": "github"
2951
+ },
2952
+ {
2953
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2954
+ "type": "tidelift"
2955
+ }
2956
+ ],
2957
+ "time": "2024-09-09T11:45:10+00:00"
2958
+ },
2959
+ {
2960
+ "name": "symfony/process",
2961
+ "version": "v7.3.0",
2962
+ "source": {
2963
+ "type": "git",
2964
+ "url": "https://github.com/symfony/process.git",
2965
+ "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
2966
+ },
2967
+ "dist": {
2968
+ "type": "zip",
2969
+ "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
2970
+ "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
2971
+ "shasum": ""
2972
+ },
2973
+ "require": {
2974
+ "php": ">=8.2"
2975
+ },
2976
+ "type": "library",
2977
+ "autoload": {
2978
+ "psr-4": {
2979
+ "Symfony\\Component\\Process\\": ""
2980
+ },
2981
+ "exclude-from-classmap": ["/Tests/"]
2982
+ },
2983
+ "notification-url": "https://packagist.org/downloads/",
2984
+ "license": ["MIT"],
2985
+ "authors": [
2986
+ {
2987
+ "name": "Fabien Potencier",
2988
+ "email": "fabien@symfony.com"
2989
+ },
2990
+ {
2991
+ "name": "Symfony Community",
2992
+ "homepage": "https://symfony.com/contributors"
2993
+ }
2994
+ ],
2995
+ "description": "Executes commands in sub-processes",
2996
+ "homepage": "https://symfony.com",
2997
+ "support": {
2998
+ "source": "https://github.com/symfony/process/tree/v7.3.0"
2999
+ },
3000
+ "funding": [
3001
+ {
3002
+ "url": "https://symfony.com/sponsor",
3003
+ "type": "custom"
3004
+ },
3005
+ {
3006
+ "url": "https://github.com/fabpot",
3007
+ "type": "github"
3008
+ },
3009
+ {
3010
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3011
+ "type": "tidelift"
3012
+ }
3013
+ ],
3014
+ "time": "2025-04-17T09:11:12+00:00"
3015
+ },
3016
+ {
3017
+ "name": "symfony/service-contracts",
3018
+ "version": "v3.6.0",
3019
+ "source": {
3020
+ "type": "git",
3021
+ "url": "https://github.com/symfony/service-contracts.git",
3022
+ "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
3023
+ },
3024
+ "dist": {
3025
+ "type": "zip",
3026
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
3027
+ "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
3028
+ "shasum": ""
3029
+ },
3030
+ "require": {
3031
+ "php": ">=8.1",
3032
+ "psr/container": "^1.1|^2.0",
3033
+ "symfony/deprecation-contracts": "^2.5|^3"
3034
+ },
3035
+ "conflict": {
3036
+ "ext-psr": "<1.1|>=2"
3037
+ },
3038
+ "type": "library",
3039
+ "extra": {
3040
+ "thanks": {
3041
+ "url": "https://github.com/symfony/contracts",
3042
+ "name": "symfony/contracts"
3043
+ },
3044
+ "branch-alias": {
3045
+ "dev-main": "3.6-dev"
3046
+ }
3047
+ },
3048
+ "autoload": {
3049
+ "psr-4": {
3050
+ "Symfony\\Contracts\\Service\\": ""
3051
+ },
3052
+ "exclude-from-classmap": ["/Test/"]
3053
+ },
3054
+ "notification-url": "https://packagist.org/downloads/",
3055
+ "license": ["MIT"],
3056
+ "authors": [
3057
+ {
3058
+ "name": "Nicolas Grekas",
3059
+ "email": "p@tchwork.com"
3060
+ },
3061
+ {
3062
+ "name": "Symfony Community",
3063
+ "homepage": "https://symfony.com/contributors"
3064
+ }
3065
+ ],
3066
+ "description": "Generic abstractions related to writing services",
3067
+ "homepage": "https://symfony.com",
3068
+ "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"],
3069
+ "support": {
3070
+ "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
3071
+ },
3072
+ "funding": [
3073
+ {
3074
+ "url": "https://symfony.com/sponsor",
3075
+ "type": "custom"
3076
+ },
3077
+ {
3078
+ "url": "https://github.com/fabpot",
3079
+ "type": "github"
3080
+ },
3081
+ {
3082
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3083
+ "type": "tidelift"
3084
+ }
3085
+ ],
3086
+ "time": "2025-04-25T09:37:31+00:00"
3087
+ },
3088
+ {
3089
+ "name": "symfony/stopwatch",
3090
+ "version": "v7.3.0",
3091
+ "source": {
3092
+ "type": "git",
3093
+ "url": "https://github.com/symfony/stopwatch.git",
3094
+ "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
3095
+ },
3096
+ "dist": {
3097
+ "type": "zip",
3098
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
3099
+ "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
3100
+ "shasum": ""
3101
+ },
3102
+ "require": {
3103
+ "php": ">=8.2",
3104
+ "symfony/service-contracts": "^2.5|^3"
3105
+ },
3106
+ "type": "library",
3107
+ "autoload": {
3108
+ "psr-4": {
3109
+ "Symfony\\Component\\Stopwatch\\": ""
3110
+ },
3111
+ "exclude-from-classmap": ["/Tests/"]
3112
+ },
3113
+ "notification-url": "https://packagist.org/downloads/",
3114
+ "license": ["MIT"],
3115
+ "authors": [
3116
+ {
3117
+ "name": "Fabien Potencier",
3118
+ "email": "fabien@symfony.com"
3119
+ },
3120
+ {
3121
+ "name": "Symfony Community",
3122
+ "homepage": "https://symfony.com/contributors"
3123
+ }
3124
+ ],
3125
+ "description": "Provides a way to profile code",
3126
+ "homepage": "https://symfony.com",
3127
+ "support": {
3128
+ "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
3129
+ },
3130
+ "funding": [
3131
+ {
3132
+ "url": "https://symfony.com/sponsor",
3133
+ "type": "custom"
3134
+ },
3135
+ {
3136
+ "url": "https://github.com/fabpot",
3137
+ "type": "github"
3138
+ },
3139
+ {
3140
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3141
+ "type": "tidelift"
3142
+ }
3143
+ ],
3144
+ "time": "2025-02-24T10:49:57+00:00"
3145
+ },
3146
+ {
3147
+ "name": "symfony/string",
3148
+ "version": "v7.3.0",
3149
+ "source": {
3150
+ "type": "git",
3151
+ "url": "https://github.com/symfony/string.git",
3152
+ "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
3153
+ },
3154
+ "dist": {
3155
+ "type": "zip",
3156
+ "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
3157
+ "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
3158
+ "shasum": ""
3159
+ },
3160
+ "require": {
3161
+ "php": ">=8.2",
3162
+ "symfony/polyfill-ctype": "~1.8",
3163
+ "symfony/polyfill-intl-grapheme": "~1.0",
3164
+ "symfony/polyfill-intl-normalizer": "~1.0",
3165
+ "symfony/polyfill-mbstring": "~1.0"
3166
+ },
3167
+ "conflict": {
3168
+ "symfony/translation-contracts": "<2.5"
3169
+ },
3170
+ "require-dev": {
3171
+ "symfony/emoji": "^7.1",
3172
+ "symfony/error-handler": "^6.4|^7.0",
3173
+ "symfony/http-client": "^6.4|^7.0",
3174
+ "symfony/intl": "^6.4|^7.0",
3175
+ "symfony/translation-contracts": "^2.5|^3.0",
3176
+ "symfony/var-exporter": "^6.4|^7.0"
3177
+ },
3178
+ "type": "library",
3179
+ "autoload": {
3180
+ "files": ["Resources/functions.php"],
3181
+ "psr-4": {
3182
+ "Symfony\\Component\\String\\": ""
3183
+ },
3184
+ "exclude-from-classmap": ["/Tests/"]
3185
+ },
3186
+ "notification-url": "https://packagist.org/downloads/",
3187
+ "license": ["MIT"],
3188
+ "authors": [
3189
+ {
3190
+ "name": "Nicolas Grekas",
3191
+ "email": "p@tchwork.com"
3192
+ },
3193
+ {
3194
+ "name": "Symfony Community",
3195
+ "homepage": "https://symfony.com/contributors"
3196
+ }
3197
+ ],
3198
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
3199
+ "homepage": "https://symfony.com",
3200
+ "keywords": ["grapheme", "i18n", "string", "unicode", "utf-8", "utf8"],
3201
+ "support": {
3202
+ "source": "https://github.com/symfony/string/tree/v7.3.0"
3203
+ },
3204
+ "funding": [
3205
+ {
3206
+ "url": "https://symfony.com/sponsor",
3207
+ "type": "custom"
3208
+ },
3209
+ {
3210
+ "url": "https://github.com/fabpot",
3211
+ "type": "github"
3212
+ },
3213
+ {
3214
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3215
+ "type": "tidelift"
3216
+ }
3217
+ ],
3218
+ "time": "2025-04-20T20:19:01+00:00"
3219
+ }
3220
+ ],
3221
+ "aliases": [],
3222
+ "minimum-stability": "stable",
3223
+ "stability-flags": {
3224
+ "roave/security-advisories": 20
3225
+ },
3226
+ "prefer-stable": false,
3227
+ "prefer-lowest": false,
3228
+ "platform": {},
3229
+ "platform-dev": {},
3230
+ "plugin-api-version": "2.6.0"
3231
+ }