@averay/codeformat 0.2.1 → 0.2.3

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