@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,176 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of composer/pcre.
5
+ *
6
+ * (c) Composer <https://github.com/composer>
7
+ *
8
+ * For the full copyright and license information, please view
9
+ * the LICENSE file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Composer\Pcre;
13
+
14
+ class Regex
15
+ {
16
+ /**
17
+ * @param non-empty-string $pattern
18
+ */
19
+ public static function isMatch(string $pattern, string $subject, int $offset = 0): bool
20
+ {
21
+ return (bool) Preg::match($pattern, $subject, $matches, 0, $offset);
22
+ }
23
+
24
+ /**
25
+ * @param non-empty-string $pattern
26
+ * @param int-mask<PREG_UNMATCHED_AS_NULL> $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported
27
+ */
28
+ public static function match(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchResult
29
+ {
30
+ self::checkOffsetCapture($flags, 'matchWithOffsets');
31
+
32
+ $count = Preg::match($pattern, $subject, $matches, $flags, $offset);
33
+
34
+ return new MatchResult($count, $matches);
35
+ }
36
+
37
+ /**
38
+ * Variant of `match()` which returns non-null matches (or throws)
39
+ *
40
+ * @param non-empty-string $pattern
41
+ * @param int-mask<PREG_UNMATCHED_AS_NULL> $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported
42
+ * @throws UnexpectedNullMatchException
43
+ */
44
+ public static function matchStrictGroups(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchStrictGroupsResult
45
+ {
46
+ // @phpstan-ignore composerPcre.maybeUnsafeStrictGroups
47
+ $count = Preg::matchStrictGroups($pattern, $subject, $matches, $flags, $offset);
48
+
49
+ return new MatchStrictGroupsResult($count, $matches);
50
+ }
51
+
52
+ /**
53
+ * Runs preg_match with PREG_OFFSET_CAPTURE
54
+ *
55
+ * @param non-empty-string $pattern
56
+ * @param int-mask<PREG_UNMATCHED_AS_NULL|PREG_OFFSET_CAPTURE> $flags PREG_UNMATCHED_AS_NULL and PREG_MATCH_OFFSET are always set, no other flags are supported
57
+ */
58
+ public static function matchWithOffsets(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchWithOffsetsResult
59
+ {
60
+ $count = Preg::matchWithOffsets($pattern, $subject, $matches, $flags, $offset);
61
+
62
+ return new MatchWithOffsetsResult($count, $matches);
63
+ }
64
+
65
+ /**
66
+ * @param non-empty-string $pattern
67
+ * @param int-mask<PREG_UNMATCHED_AS_NULL> $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported
68
+ */
69
+ public static function matchAll(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchAllResult
70
+ {
71
+ self::checkOffsetCapture($flags, 'matchAllWithOffsets');
72
+ self::checkSetOrder($flags);
73
+
74
+ $count = Preg::matchAll($pattern, $subject, $matches, $flags, $offset);
75
+
76
+ return new MatchAllResult($count, $matches);
77
+ }
78
+
79
+ /**
80
+ * Variant of `matchAll()` which returns non-null matches (or throws)
81
+ *
82
+ * @param non-empty-string $pattern
83
+ * @param int-mask<PREG_UNMATCHED_AS_NULL> $flags PREG_UNMATCHED_AS_NULL is always set, no other flags are supported
84
+ * @throws UnexpectedNullMatchException
85
+ */
86
+ public static function matchAllStrictGroups(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchAllStrictGroupsResult
87
+ {
88
+ self::checkOffsetCapture($flags, 'matchAllWithOffsets');
89
+ self::checkSetOrder($flags);
90
+
91
+ // @phpstan-ignore composerPcre.maybeUnsafeStrictGroups
92
+ $count = Preg::matchAllStrictGroups($pattern, $subject, $matches, $flags, $offset);
93
+
94
+ return new MatchAllStrictGroupsResult($count, $matches);
95
+ }
96
+
97
+ /**
98
+ * Runs preg_match_all with PREG_OFFSET_CAPTURE
99
+ *
100
+ * @param non-empty-string $pattern
101
+ * @param int-mask<PREG_UNMATCHED_AS_NULL|PREG_OFFSET_CAPTURE> $flags PREG_UNMATCHED_AS_NULL and PREG_MATCH_OFFSET are always set, no other flags are supported
102
+ */
103
+ public static function matchAllWithOffsets(string $pattern, string $subject, int $flags = 0, int $offset = 0): MatchAllWithOffsetsResult
104
+ {
105
+ self::checkSetOrder($flags);
106
+
107
+ $count = Preg::matchAllWithOffsets($pattern, $subject, $matches, $flags, $offset);
108
+
109
+ return new MatchAllWithOffsetsResult($count, $matches);
110
+ }
111
+ /**
112
+ * @param string|string[] $pattern
113
+ * @param string|string[] $replacement
114
+ * @param string $subject
115
+ */
116
+ public static function replace($pattern, $replacement, $subject, int $limit = -1): ReplaceResult
117
+ {
118
+ $result = Preg::replace($pattern, $replacement, $subject, $limit, $count);
119
+
120
+ return new ReplaceResult($count, $result);
121
+ }
122
+
123
+ /**
124
+ * @param string|string[] $pattern
125
+ * @param ($flags is PREG_OFFSET_CAPTURE ? (callable(array<int|string, array{string|null, int<-1, max>}>): string) : callable(array<int|string, string|null>): string) $replacement
126
+ * @param string $subject
127
+ * @param int-mask<PREG_UNMATCHED_AS_NULL|PREG_OFFSET_CAPTURE> $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set
128
+ */
129
+ public static function replaceCallback($pattern, callable $replacement, $subject, int $limit = -1, int $flags = 0): ReplaceResult
130
+ {
131
+ $result = Preg::replaceCallback($pattern, $replacement, $subject, $limit, $count, $flags);
132
+
133
+ return new ReplaceResult($count, $result);
134
+ }
135
+
136
+ /**
137
+ * Variant of `replaceCallback()` which outputs non-null matches (or throws)
138
+ *
139
+ * @param string $pattern
140
+ * @param ($flags is PREG_OFFSET_CAPTURE ? (callable(array<int|string, array{string, int<0, max>}>): string) : callable(array<int|string, string>): string) $replacement
141
+ * @param string $subject
142
+ * @param int-mask<PREG_UNMATCHED_AS_NULL|PREG_OFFSET_CAPTURE> $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set
143
+ */
144
+ public static function replaceCallbackStrictGroups($pattern, callable $replacement, $subject, int $limit = -1, int $flags = 0): ReplaceResult
145
+ {
146
+ $result = Preg::replaceCallbackStrictGroups($pattern, $replacement, $subject, $limit, $count, $flags);
147
+
148
+ return new ReplaceResult($count, $result);
149
+ }
150
+
151
+ /**
152
+ * @param ($flags is PREG_OFFSET_CAPTURE ? (array<string, callable(array<int|string, array{string|null, int<-1, max>}>): string>) : array<string, callable(array<int|string, string|null>): string>) $pattern
153
+ * @param string $subject
154
+ * @param int-mask<PREG_UNMATCHED_AS_NULL|PREG_OFFSET_CAPTURE> $flags PREG_OFFSET_CAPTURE is supported, PREG_UNMATCHED_AS_NULL is always set
155
+ */
156
+ public static function replaceCallbackArray(array $pattern, $subject, int $limit = -1, int $flags = 0): ReplaceResult
157
+ {
158
+ $result = Preg::replaceCallbackArray($pattern, $subject, $limit, $count, $flags);
159
+
160
+ return new ReplaceResult($count, $result);
161
+ }
162
+
163
+ private static function checkOffsetCapture(int $flags, string $useFunctionName): void
164
+ {
165
+ if (($flags & PREG_OFFSET_CAPTURE) !== 0) {
166
+ throw new \InvalidArgumentException('PREG_OFFSET_CAPTURE is not supported as it changes the return type, use '.$useFunctionName.'() instead');
167
+ }
168
+ }
169
+
170
+ private static function checkSetOrder(int $flags): void
171
+ {
172
+ if (($flags & PREG_SET_ORDER) !== 0) {
173
+ throw new \InvalidArgumentException('PREG_SET_ORDER is not supported as it changes the return type');
174
+ }
175
+ }
176
+ }
@@ -0,0 +1,43 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of composer/pcre.
5
+ *
6
+ * (c) Composer <https://github.com/composer>
7
+ *
8
+ * For the full copyright and license information, please view
9
+ * the LICENSE file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Composer\Pcre;
13
+
14
+ final class ReplaceResult
15
+ {
16
+ /**
17
+ * @readonly
18
+ * @var string
19
+ */
20
+ public $result;
21
+
22
+ /**
23
+ * @readonly
24
+ * @var 0|positive-int
25
+ */
26
+ public $count;
27
+
28
+ /**
29
+ * @readonly
30
+ * @var bool
31
+ */
32
+ public $matched;
33
+
34
+ /**
35
+ * @param 0|positive-int $count
36
+ */
37
+ public function __construct(int $count, string $result)
38
+ {
39
+ $this->count = $count;
40
+ $this->matched = (bool) $count;
41
+ $this->result = $result;
42
+ }
43
+ }
@@ -0,0 +1,20 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of composer/pcre.
5
+ *
6
+ * (c) Composer <https://github.com/composer>
7
+ *
8
+ * For the full copyright and license information, please view
9
+ * the LICENSE file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Composer\Pcre;
13
+
14
+ class UnexpectedNullMatchException extends PcreException
15
+ {
16
+ public static function fromFunction($function, $pattern)
17
+ {
18
+ throw new \LogicException('fromFunction should not be called on '.self::class.', use '.PcreException::class);
19
+ }
20
+ }
@@ -0,0 +1,229 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ This project adheres to [Semantic Versioning](http://semver.org/).
5
+
6
+ ### [3.4.3] 2024-09-19
7
+
8
+ * Fixed some type annotations
9
+
10
+ ### [3.4.2] 2024-07-12
11
+
12
+ * Fixed PHP 5.3 syntax error
13
+
14
+ ### [3.4.1] 2024-07-12
15
+
16
+ * Fixed normalizeStability's return type to enforce valid stabilities
17
+
18
+ ### [3.4.0] 2023-08-31
19
+
20
+ * Support larger major version numbers (#149)
21
+
22
+ ### [3.3.2] 2022-04-01
23
+
24
+ * Fixed handling of non-string values (#134)
25
+
26
+ ### [3.3.1] 2022-03-16
27
+
28
+ * Fixed possible cache key clash in the CompilingMatcher memoization (#132)
29
+
30
+ ### [3.3.0] 2022-03-15
31
+
32
+ * Improved performance of CompilingMatcher by memoizing more (#131)
33
+ * Added CompilingMatcher::clear to clear all memoization caches
34
+
35
+ ### [3.2.9] 2022-02-04
36
+
37
+ * Revert #129 (Fixed MultiConstraint with MatchAllConstraint) which caused regressions
38
+
39
+ ### [3.2.8] 2022-02-04
40
+
41
+ * Updates to latest phpstan / CI by @Seldaek in https://github.com/composer/semver/pull/130
42
+ * Fixed MultiConstraint with MatchAllConstraint by @Toflar in https://github.com/composer/semver/pull/129
43
+
44
+ ### [3.2.7] 2022-01-04
45
+
46
+ * Fixed: typo in type definition of Intervals class causing issues with Psalm scanning vendors
47
+
48
+ ### [3.2.6] 2021-10-25
49
+
50
+ * Fixed: type improvements to parseStability
51
+
52
+ ### [3.2.5] 2021-05-24
53
+
54
+ * Fixed: issue comparing disjunctive MultiConstraints to conjunctive ones (#127)
55
+ * Fixed: added complete type information using phpstan annotations
56
+
57
+ ### [3.2.4] 2020-11-13
58
+
59
+ * Fixed: code clean-up
60
+
61
+ ### [3.2.3] 2020-11-12
62
+
63
+ * Fixed: constraints in the form of `X || Y, >=Y.1` and other such complex constructs were in some cases being optimized into a more restrictive constraint
64
+
65
+ ### [3.2.2] 2020-10-14
66
+
67
+ * Fixed: internal code cleanups
68
+
69
+ ### [3.2.1] 2020-09-27
70
+
71
+ * Fixed: accidental validation of broken constraints combining ^/~ and wildcards, and -dev suffix allowing weird cases
72
+ * Fixed: normalization of beta0 and such which was dropping the 0
73
+
74
+ ### [3.2.0] 2020-09-09
75
+
76
+ * Added: support for `x || @dev`, not very useful but seen in the wild and failed to validate with 1.5.2/1.6.0
77
+ * Added: support for `foobar-dev` being equal to `dev-foobar`, dev-foobar is the official way to write it but we need to support the other for BC and convenience
78
+
79
+ ### [3.1.0] 2020-09-08
80
+
81
+ * Added: support for constraints like `^2.x-dev` and `~2.x-dev`, not very useful but seen in the wild and failed to validate with 3.0.1
82
+ * Fixed: invalid aliases will no longer throw, unless explicitly validated by Composer in the root package
83
+
84
+ ### [3.0.1] 2020-09-08
85
+
86
+ * Fixed: handling of some invalid -dev versions which were seen as valid
87
+
88
+ ### [3.0.0] 2020-05-26
89
+
90
+ * Break: Renamed `EmptyConstraint`, replace it with `MatchAllConstraint`
91
+ * Break: Unlikely to affect anyone but strictly speaking a breaking change, `*.*` and such variants will not match all `dev-*` versions anymore, only `*` does
92
+ * Break: ConstraintInterface is now considered internal/private and not meant to be implemented by third parties anymore
93
+ * Added `Intervals` class to check if a constraint is a subsets of another one, and allow compacting complex MultiConstraints into simpler ones
94
+ * Added `CompilingMatcher` class to speed up constraint matching against simple Constraint instances
95
+ * Added `MatchAllConstraint` and `MatchNoneConstraint` which match everything and nothing
96
+ * Added more advanced optimization of contiguous constraints inside MultiConstraint
97
+ * Added tentative support for PHP 8
98
+ * Fixed ConstraintInterface::matches to be commutative in all cases
99
+
100
+ ### [2.0.0] 2020-04-21
101
+
102
+ * Break: `dev-master`, `dev-trunk` and `dev-default` now normalize to `dev-master`, `dev-trunk` and `dev-default` instead of `9999999-dev` in 1.x
103
+ * Break: Removed the deprecated `AbstractConstraint`
104
+ * Added `getUpperBound` and `getLowerBound` to ConstraintInterface. They return `Composer\Semver\Constraint\Bound` instances
105
+ * Added `MultiConstraint::create` to create the most-optimal form of ConstraintInterface from an array of constraint strings
106
+
107
+ ### [1.7.2] 2020-12-03
108
+
109
+ * Fixed: Allow installing on php 8
110
+
111
+ ### [1.7.1] 2020-09-27
112
+
113
+ * Fixed: accidental validation of broken constraints combining ^/~ and wildcards, and -dev suffix allowing weird cases
114
+ * Fixed: normalization of beta0 and such which was dropping the 0
115
+
116
+ ### [1.7.0] 2020-09-09
117
+
118
+ * Added: support for `x || @dev`, not very useful but seen in the wild and failed to validate with 1.5.2/1.6.0
119
+ * Added: support for `foobar-dev` being equal to `dev-foobar`, dev-foobar is the official way to write it but we need to support the other for BC and convenience
120
+
121
+ ### [1.6.0] 2020-09-08
122
+
123
+ * Added: support for constraints like `^2.x-dev` and `~2.x-dev`, not very useful but seen in the wild and failed to validate with 1.5.2
124
+ * Fixed: invalid aliases will no longer throw, unless explicitly validated by Composer in the root package
125
+
126
+ ### [1.5.2] 2020-09-08
127
+
128
+ * Fixed: handling of some invalid -dev versions which were seen as valid
129
+ * Fixed: some doctypes
130
+
131
+ ### [1.5.1] 2020-01-13
132
+
133
+ * Fixed: Parsing of aliased version was not validating the alias to be a valid version
134
+
135
+ ### [1.5.0] 2019-03-19
136
+
137
+ * Added: some support for date versions (e.g. 201903) in `~` operator
138
+ * Fixed: support for stabilities in `~` operator was inconsistent
139
+
140
+ ### [1.4.2] 2016-08-30
141
+
142
+ * Fixed: collapsing of complex constraints lead to buggy constraints
143
+
144
+ ### [1.4.1] 2016-06-02
145
+
146
+ * Changed: branch-like requirements no longer strip build metadata - [composer/semver#38](https://github.com/composer/semver/pull/38).
147
+
148
+ ### [1.4.0] 2016-03-30
149
+
150
+ * Added: getters on MultiConstraint - [composer/semver#35](https://github.com/composer/semver/pull/35).
151
+
152
+ ### [1.3.0] 2016-02-25
153
+
154
+ * Fixed: stability parsing - [composer/composer#1234](https://github.com/composer/composer/issues/4889).
155
+ * Changed: collapse contiguous constraints when possible.
156
+
157
+ ### [1.2.0] 2015-11-10
158
+
159
+ * Changed: allow multiple numerical identifiers in 'pre-release' version part.
160
+ * Changed: add more 'v' prefix support.
161
+
162
+ ### [1.1.0] 2015-11-03
163
+
164
+ * Changed: dropped redundant `test` namespace.
165
+ * Changed: minor adjustment in datetime parsing normalization.
166
+ * Changed: `ConstraintInterface` relaxed, setPrettyString is not required anymore.
167
+ * Changed: `AbstractConstraint` marked deprecated, will be removed in 2.0.
168
+ * Changed: `Constraint` is now extensible.
169
+
170
+ ### [1.0.0] 2015-09-21
171
+
172
+ * Break: `VersionConstraint` renamed to `Constraint`.
173
+ * Break: `SpecificConstraint` renamed to `AbstractConstraint`.
174
+ * Break: `LinkConstraintInterface` renamed to `ConstraintInterface`.
175
+ * Break: `VersionParser::parseNameVersionPairs` was removed.
176
+ * Changed: `VersionParser::parseConstraints` allows (but ignores) build metadata now.
177
+ * Changed: `VersionParser::parseConstraints` allows (but ignores) prefixing numeric versions with a 'v' now.
178
+ * Changed: Fixed namespace(s) of test files.
179
+ * Changed: `Comparator::compare` no longer throws `InvalidArgumentException`.
180
+ * Changed: `Constraint` now throws `InvalidArgumentException`.
181
+
182
+ ### [0.1.0] 2015-07-23
183
+
184
+ * Added: `Composer\Semver\Comparator`, various methods to compare versions.
185
+ * Added: various documents such as README.md, LICENSE, etc.
186
+ * Added: configuration files for Git, Travis, php-cs-fixer, phpunit.
187
+ * Break: the following namespaces were renamed:
188
+ - Namespace: `Composer\Package\Version` -> `Composer\Semver`
189
+ - Namespace: `Composer\Package\LinkConstraint` -> `Composer\Semver\Constraint`
190
+ - Namespace: `Composer\Test\Package\Version` -> `Composer\Test\Semver`
191
+ - Namespace: `Composer\Test\Package\LinkConstraint` -> `Composer\Test\Semver\Constraint`
192
+ * Changed: code style using php-cs-fixer.
193
+
194
+ [3.4.3]: https://github.com/composer/semver/compare/3.4.2...3.4.3
195
+ [3.4.2]: https://github.com/composer/semver/compare/3.4.1...3.4.2
196
+ [3.4.1]: https://github.com/composer/semver/compare/3.4.0...3.4.1
197
+ [3.4.0]: https://github.com/composer/semver/compare/3.3.2...3.4.0
198
+ [3.3.2]: https://github.com/composer/semver/compare/3.3.1...3.3.2
199
+ [3.3.1]: https://github.com/composer/semver/compare/3.3.0...3.3.1
200
+ [3.3.0]: https://github.com/composer/semver/compare/3.2.9...3.3.0
201
+ [3.2.9]: https://github.com/composer/semver/compare/3.2.8...3.2.9
202
+ [3.2.8]: https://github.com/composer/semver/compare/3.2.7...3.2.8
203
+ [3.2.7]: https://github.com/composer/semver/compare/3.2.6...3.2.7
204
+ [3.2.6]: https://github.com/composer/semver/compare/3.2.5...3.2.6
205
+ [3.2.5]: https://github.com/composer/semver/compare/3.2.4...3.2.5
206
+ [3.2.4]: https://github.com/composer/semver/compare/3.2.3...3.2.4
207
+ [3.2.3]: https://github.com/composer/semver/compare/3.2.2...3.2.3
208
+ [3.2.2]: https://github.com/composer/semver/compare/3.2.1...3.2.2
209
+ [3.2.1]: https://github.com/composer/semver/compare/3.2.0...3.2.1
210
+ [3.2.0]: https://github.com/composer/semver/compare/3.1.0...3.2.0
211
+ [3.1.0]: https://github.com/composer/semver/compare/3.0.1...3.1.0
212
+ [3.0.1]: https://github.com/composer/semver/compare/3.0.0...3.0.1
213
+ [3.0.0]: https://github.com/composer/semver/compare/2.0.0...3.0.0
214
+ [2.0.0]: https://github.com/composer/semver/compare/1.5.1...2.0.0
215
+ [1.7.2]: https://github.com/composer/semver/compare/1.7.1...1.7.2
216
+ [1.7.1]: https://github.com/composer/semver/compare/1.7.0...1.7.1
217
+ [1.7.0]: https://github.com/composer/semver/compare/1.6.0...1.7.0
218
+ [1.6.0]: https://github.com/composer/semver/compare/1.5.2...1.6.0
219
+ [1.5.2]: https://github.com/composer/semver/compare/1.5.1...1.5.2
220
+ [1.5.1]: https://github.com/composer/semver/compare/1.5.0...1.5.1
221
+ [1.5.0]: https://github.com/composer/semver/compare/1.4.2...1.5.0
222
+ [1.4.2]: https://github.com/composer/semver/compare/1.4.1...1.4.2
223
+ [1.4.1]: https://github.com/composer/semver/compare/1.4.0...1.4.1
224
+ [1.4.0]: https://github.com/composer/semver/compare/1.3.0...1.4.0
225
+ [1.3.0]: https://github.com/composer/semver/compare/1.2.0...1.3.0
226
+ [1.2.0]: https://github.com/composer/semver/compare/1.1.0...1.2.0
227
+ [1.1.0]: https://github.com/composer/semver/compare/1.0.0...1.1.0
228
+ [1.0.0]: https://github.com/composer/semver/compare/0.1.0...1.0.0
229
+ [0.1.0]: https://github.com/composer/semver/compare/5e0b9a4da...0.1.0
@@ -0,0 +1,19 @@
1
+ Copyright (C) 2015 Composer
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,99 @@
1
+ composer/semver
2
+ ===============
3
+
4
+ Semver (Semantic Versioning) library that offers utilities, version constraint parsing and validation.
5
+
6
+ Originally written as part of [composer/composer](https://github.com/composer/composer),
7
+ now extracted and made available as a stand-alone library.
8
+
9
+ [![Continuous Integration](https://github.com/composer/semver/actions/workflows/continuous-integration.yml/badge.svg?branch=main)](https://github.com/composer/semver/actions/workflows/continuous-integration.yml)
10
+ [![PHP Lint](https://github.com/composer/semver/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/composer/semver/actions/workflows/lint.yml)
11
+ [![PHPStan](https://github.com/composer/semver/actions/workflows/phpstan.yml/badge.svg?branch=main)](https://github.com/composer/semver/actions/workflows/phpstan.yml)
12
+
13
+ Installation
14
+ ------------
15
+
16
+ Install the latest version with:
17
+
18
+ ```bash
19
+ composer require composer/semver
20
+ ```
21
+
22
+
23
+ Requirements
24
+ ------------
25
+
26
+ * PHP 5.3.2 is required but using the latest version of PHP is highly recommended.
27
+
28
+
29
+ Version Comparison
30
+ ------------------
31
+
32
+ For details on how versions are compared, refer to the [Versions](https://getcomposer.org/doc/articles/versions.md)
33
+ article in the documentation section of the [getcomposer.org](https://getcomposer.org) website.
34
+
35
+
36
+ Basic usage
37
+ -----------
38
+
39
+ ### Comparator
40
+
41
+ The [`Composer\Semver\Comparator`](https://github.com/composer/semver/blob/main/src/Comparator.php) class provides the following methods for comparing versions:
42
+
43
+ * greaterThan($v1, $v2)
44
+ * greaterThanOrEqualTo($v1, $v2)
45
+ * lessThan($v1, $v2)
46
+ * lessThanOrEqualTo($v1, $v2)
47
+ * equalTo($v1, $v2)
48
+ * notEqualTo($v1, $v2)
49
+
50
+ Each function takes two version strings as arguments and returns a boolean. For example:
51
+
52
+ ```php
53
+ use Composer\Semver\Comparator;
54
+
55
+ Comparator::greaterThan('1.25.0', '1.24.0'); // 1.25.0 > 1.24.0
56
+ ```
57
+
58
+ ### Semver
59
+
60
+ The [`Composer\Semver\Semver`](https://github.com/composer/semver/blob/main/src/Semver.php) class provides the following methods:
61
+
62
+ * satisfies($version, $constraints)
63
+ * satisfiedBy(array $versions, $constraint)
64
+ * sort($versions)
65
+ * rsort($versions)
66
+
67
+ ### Intervals
68
+
69
+ The [`Composer\Semver\Intervals`](https://github.com/composer/semver/blob/main/src/Intervals.php) static class provides
70
+ a few utilities to work with complex constraints or read version intervals from a constraint:
71
+
72
+ ```php
73
+ use Composer\Semver\Intervals;
74
+
75
+ // Checks whether $candidate is a subset of $constraint
76
+ Intervals::isSubsetOf(ConstraintInterface $candidate, ConstraintInterface $constraint);
77
+
78
+ // Checks whether $a and $b have any intersection, equivalent to $a->matches($b)
79
+ Intervals::haveIntersections(ConstraintInterface $a, ConstraintInterface $b);
80
+
81
+ // Optimizes a complex multi constraint by merging all intervals down to the smallest
82
+ // possible multi constraint. The drawbacks are this is not very fast, and the resulting
83
+ // multi constraint will have no human readable prettyConstraint configured on it
84
+ Intervals::compactConstraint(ConstraintInterface $constraint);
85
+
86
+ // Creates an array of numeric intervals and branch constraints representing a given constraint
87
+ Intervals::get(ConstraintInterface $constraint);
88
+
89
+ // Clears the memoization cache when you are done processing constraints
90
+ Intervals::clear()
91
+ ```
92
+
93
+ See the class docblocks for more details.
94
+
95
+
96
+ License
97
+ -------
98
+
99
+ composer/semver is licensed under the MIT License, see the LICENSE file for details.
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "composer/semver",
3
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
4
+ "type": "library",
5
+ "license": "MIT",
6
+ "keywords": [
7
+ "semver",
8
+ "semantic",
9
+ "versioning",
10
+ "validation"
11
+ ],
12
+ "authors": [
13
+ {
14
+ "name": "Nils Adermann",
15
+ "email": "naderman@naderman.de",
16
+ "homepage": "http://www.naderman.de"
17
+ },
18
+ {
19
+ "name": "Jordi Boggiano",
20
+ "email": "j.boggiano@seld.be",
21
+ "homepage": "http://seld.be"
22
+ },
23
+ {
24
+ "name": "Rob Bast",
25
+ "email": "rob.bast@gmail.com",
26
+ "homepage": "http://robbast.nl"
27
+ }
28
+ ],
29
+ "support": {
30
+ "irc": "ircs://irc.libera.chat:6697/composer",
31
+ "issues": "https://github.com/composer/semver/issues"
32
+ },
33
+ "require": {
34
+ "php": "^5.3.2 || ^7.0 || ^8.0"
35
+ },
36
+ "require-dev": {
37
+ "symfony/phpunit-bridge": "^3 || ^7",
38
+ "phpstan/phpstan": "^1.11"
39
+ },
40
+ "autoload": {
41
+ "psr-4": {
42
+ "Composer\\Semver\\": "src"
43
+ }
44
+ },
45
+ "autoload-dev": {
46
+ "psr-4": {
47
+ "Composer\\Semver\\": "tests"
48
+ }
49
+ },
50
+ "extra": {
51
+ "branch-alias": {
52
+ "dev-main": "3.x-dev"
53
+ }
54
+ },
55
+ "scripts": {
56
+ "test": "SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 vendor/bin/simple-phpunit",
57
+ "phpstan": "@php vendor/bin/phpstan analyse"
58
+ }
59
+ }