dependabot-composer 0.118.13 → 0.119.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1558) hide show
  1. checksums.yaml +4 -4
  2. data/helpers/.php_cs.cache +1 -0
  3. data/helpers/vendor/autoload.php +7 -0
  4. data/helpers/vendor/bin/composer +1 -0
  5. data/helpers/vendor/bin/jsonlint +1 -0
  6. data/helpers/vendor/bin/php-cs-fixer +1 -0
  7. data/helpers/vendor/bin/phpstan +1 -0
  8. data/helpers/vendor/bin/phpstan.phar +1 -0
  9. data/helpers/vendor/bin/validate-json +1 -0
  10. data/helpers/vendor/composer/ClassLoader.php +445 -0
  11. data/helpers/vendor/composer/LICENSE +21 -0
  12. data/helpers/vendor/composer/autoload_classmap.php +66 -0
  13. data/helpers/vendor/composer/autoload_files.php +14 -0
  14. data/helpers/vendor/composer/autoload_namespaces.php +9 -0
  15. data/helpers/vendor/composer/autoload_psr4.php +34 -0
  16. data/helpers/vendor/composer/autoload_real.php +73 -0
  17. data/helpers/vendor/composer/autoload_static.php +232 -0
  18. data/helpers/vendor/composer/ca-bundle/LICENSE +19 -0
  19. data/helpers/vendor/composer/ca-bundle/README.md +85 -0
  20. data/helpers/vendor/composer/ca-bundle/composer.json +54 -0
  21. data/helpers/vendor/composer/ca-bundle/res/cacert.pem +3466 -0
  22. data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +325 -0
  23. data/helpers/vendor/composer/composer/.editorconfig +11 -0
  24. data/helpers/vendor/composer/composer/.gitattributes +17 -0
  25. data/helpers/vendor/composer/composer/.gitignore +11 -0
  26. data/helpers/vendor/composer/composer/CHANGELOG.md +952 -0
  27. data/helpers/vendor/composer/composer/LICENSE +19 -0
  28. data/helpers/vendor/composer/composer/PORTING_INFO +39 -0
  29. data/helpers/vendor/composer/composer/README.md +63 -0
  30. data/helpers/vendor/composer/composer/bin/compile +31 -0
  31. data/helpers/vendor/composer/composer/bin/composer +62 -0
  32. data/helpers/vendor/composer/composer/composer.json +86 -0
  33. data/helpers/vendor/composer/composer/composer.lock +1425 -0
  34. data/helpers/vendor/composer/composer/doc/00-intro.md +166 -0
  35. data/helpers/vendor/composer/composer/doc/01-basic-usage.md +273 -0
  36. data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
  37. data/helpers/vendor/composer/composer/doc/03-cli.md +957 -0
  38. data/helpers/vendor/composer/composer/doc/04-schema.md +958 -0
  39. data/helpers/vendor/composer/composer/doc/05-repositories.md +719 -0
  40. data/helpers/vendor/composer/composer/doc/06-config.md +310 -0
  41. data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
  42. data/helpers/vendor/composer/composer/doc/articles/aliases.md +111 -0
  43. data/helpers/vendor/composer/composer/doc/articles/autoloader-optimization.md +111 -0
  44. data/helpers/vendor/composer/composer/doc/articles/custom-installers.md +204 -0
  45. data/helpers/vendor/composer/composer/doc/articles/handling-private-packages-with-satis.md +356 -0
  46. data/helpers/vendor/composer/composer/doc/articles/http-basic-authentication.md +59 -0
  47. data/helpers/vendor/composer/composer/doc/articles/plugins.md +290 -0
  48. data/helpers/vendor/composer/composer/doc/articles/scripts.md +372 -0
  49. data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +322 -0
  50. data/helpers/vendor/composer/composer/doc/articles/vendor-binaries.md +110 -0
  51. data/helpers/vendor/composer/composer/doc/articles/versions.md +230 -0
  52. data/helpers/vendor/composer/composer/doc/dev/DefaultPolicy.md +55 -0
  53. data/helpers/vendor/composer/composer/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md +55 -0
  54. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-composer-programmatically.md +42 -0
  55. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-untrusted-packages-safely.md +19 -0
  56. data/helpers/vendor/composer/composer/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md +32 -0
  57. data/helpers/vendor/composer/composer/doc/faqs/which-version-numbering-system-does-composer-itself-use.md +4 -0
  58. data/helpers/vendor/composer/composer/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md +21 -0
  59. data/helpers/vendor/composer/composer/doc/faqs/why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md +21 -0
  60. data/helpers/vendor/composer/composer/doc/faqs/why-can't-composer-load-repositories-recursively.md +35 -0
  61. data/helpers/vendor/composer/composer/doc/fixtures/fixtures.md +22 -0
  62. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-plain/packages.json +158 -0
  63. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/bar/baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json +50 -0
  64. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/foo/bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json +77 -0
  65. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/gar/nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json +50 -0
  66. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json +16 -0
  67. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/qux/quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json +22 -0
  68. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/packages.json +9 -0
  69. data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
  70. data/helpers/vendor/composer/composer/res/composer-schema.json +880 -0
  71. data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1070 -0
  72. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
  73. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +312 -0
  74. data/helpers/vendor/composer/composer/src/Composer/Cache.php +257 -0
  75. data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +48 -0
  76. data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +172 -0
  77. data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
  78. data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +259 -0
  79. data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +166 -0
  80. data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +76 -0
  81. data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +803 -0
  82. data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +423 -0
  83. data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +57 -0
  84. data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +747 -0
  85. data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +90 -0
  86. data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +108 -0
  87. data/helpers/vendor/composer/composer/src/Composer/Command/FundCommand.php +107 -0
  88. data/helpers/vendor/composer/composer/src/Composer/Command/GlobalCommand.php +111 -0
  89. data/helpers/vendor/composer/composer/src/Composer/Command/HomeCommand.php +168 -0
  90. data/helpers/vendor/composer/composer/src/Composer/Command/InitCommand.php +854 -0
  91. data/helpers/vendor/composer/composer/src/Composer/Command/InstallCommand.php +124 -0
  92. data/helpers/vendor/composer/composer/src/Composer/Command/LicensesCommand.php +165 -0
  93. data/helpers/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php +95 -0
  94. data/helpers/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php +57 -0
  95. data/helpers/vendor/composer/composer/src/Composer/Command/RemoveCommand.php +163 -0
  96. data/helpers/vendor/composer/composer/src/Composer/Command/RequireCommand.php +297 -0
  97. data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +146 -0
  98. data/helpers/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php +66 -0
  99. data/helpers/vendor/composer/composer/src/Composer/Command/SearchCommand.php +85 -0
  100. data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +556 -0
  101. data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1211 -0
  102. data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +228 -0
  103. data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +154 -0
  104. data/helpers/vendor/composer/composer/src/Composer/Command/UpdateCommand.php +228 -0
  105. data/helpers/vendor/composer/composer/src/Composer/Command/ValidateCommand.php +178 -0
  106. data/helpers/vendor/composer/composer/src/Composer/Compiler.php +287 -0
  107. data/helpers/vendor/composer/composer/src/Composer/Composer.php +294 -0
  108. data/helpers/vendor/composer/composer/src/Composer/Config.php +483 -0
  109. data/helpers/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php +91 -0
  110. data/helpers/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php +277 -0
  111. data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +519 -0
  112. data/helpers/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php +90 -0
  113. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php +211 -0
  114. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php +285 -0
  115. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php +91 -0
  116. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php +66 -0
  117. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php +67 -0
  118. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php +67 -0
  119. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php +42 -0
  120. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php +50 -0
  121. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php +66 -0
  122. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php +83 -0
  123. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php +27 -0
  124. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php +387 -0
  125. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php +257 -0
  126. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Request.php +78 -0
  127. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php +268 -0
  128. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php +113 -0
  129. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSet.php +176 -0
  130. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php +394 -0
  131. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php +94 -0
  132. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php +52 -0
  133. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php +144 -0
  134. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php +113 -0
  135. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Solver.php +872 -0
  136. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverBugException.php +27 -0
  137. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php +88 -0
  138. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Transaction.php +244 -0
  139. data/helpers/vendor/composer/composer/src/Composer/Downloader/ArchiveDownloader.php +135 -0
  140. data/helpers/vendor/composer/composer/src/Composer/Downloader/ChangeReportInterface.php +32 -0
  141. data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloadManager.php +325 -0
  142. data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloaderInterface.php +64 -0
  143. data/helpers/vendor/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php +32 -0
  144. data/helpers/vendor/composer/composer/src/Composer/Downloader/FileDownloader.php +322 -0
  145. data/helpers/vendor/composer/composer/src/Composer/Downloader/FilesystemException.php +26 -0
  146. data/helpers/vendor/composer/composer/src/Composer/Downloader/FossilDownloader.php +116 -0
  147. data/helpers/vendor/composer/composer/src/Composer/Downloader/GitDownloader.php +528 -0
  148. data/helpers/vendor/composer/composer/src/Composer/Downloader/GzipDownloader.php +84 -0
  149. data/helpers/vendor/composer/composer/src/Composer/Downloader/HgDownloader.php +100 -0
  150. data/helpers/vendor/composer/composer/src/Composer/Downloader/PathDownloader.php +228 -0
  151. data/helpers/vendor/composer/composer/src/Composer/Downloader/PearPackageExtractor.php +266 -0
  152. data/helpers/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php +112 -0
  153. data/helpers/vendor/composer/composer/src/Composer/Downloader/PharDownloader.php +36 -0
  154. data/helpers/vendor/composer/composer/src/Composer/Downloader/RarDownloader.php +91 -0
  155. data/helpers/vendor/composer/composer/src/Composer/Downloader/SvnDownloader.php +225 -0
  156. data/helpers/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php +31 -0
  157. data/helpers/vendor/composer/composer/src/Composer/Downloader/TransportException.php +53 -0
  158. data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php +32 -0
  159. data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsDownloader.php +293 -0
  160. data/helpers/vendor/composer/composer/src/Composer/Downloader/XzDownloader.php +60 -0
  161. data/helpers/vendor/composer/composer/src/Composer/Downloader/ZipDownloader.php +230 -0
  162. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/Event.php +103 -0
  163. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php +571 -0
  164. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php +48 -0
  165. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php +20 -0
  166. data/helpers/vendor/composer/composer/src/Composer/Exception/NoSslException.php +20 -0
  167. data/helpers/vendor/composer/composer/src/Composer/Factory.php +653 -0
  168. data/helpers/vendor/composer/composer/src/Composer/IO/BaseIO.php +284 -0
  169. data/helpers/vendor/composer/composer/src/Composer/IO/BufferIO.php +86 -0
  170. data/helpers/vendor/composer/composer/src/Composer/IO/ConsoleIO.php +346 -0
  171. data/helpers/vendor/composer/composer/src/Composer/IO/IOInterface.php +207 -0
  172. data/helpers/vendor/composer/composer/src/Composer/IO/NullIO.php +129 -0
  173. data/helpers/vendor/composer/composer/src/Composer/Installer.php +1876 -0
  174. data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php +214 -0
  175. data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php +30 -0
  176. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallationManager.php +326 -0
  177. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvent.php +161 -0
  178. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvents.php +43 -0
  179. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerInterface.php +79 -0
  180. data/helpers/vendor/composer/composer/src/Composer/Installer/LibraryInstaller.php +232 -0
  181. data/helpers/vendor/composer/composer/src/Composer/Installer/MetapackageInstaller.php +100 -0
  182. data/helpers/vendor/composer/composer/src/Composer/Installer/NoopInstaller.php +88 -0
  183. data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvent.php +65 -0
  184. data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvents.php +75 -0
  185. data/helpers/vendor/composer/composer/src/Composer/Installer/PearBinaryInstaller.php +144 -0
  186. data/helpers/vendor/composer/composer/src/Composer/Installer/PearInstaller.php +84 -0
  187. data/helpers/vendor/composer/composer/src/Composer/Installer/PluginInstaller.php +84 -0
  188. data/helpers/vendor/composer/composer/src/Composer/Installer/ProjectInstaller.php +99 -0
  189. data/helpers/vendor/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php +151 -0
  190. data/helpers/vendor/composer/composer/src/Composer/Json/JsonFile.php +319 -0
  191. data/helpers/vendor/composer/composer/src/Composer/Json/JsonFormatter.php +134 -0
  192. data/helpers/vendor/composer/composer/src/Composer/Json/JsonManipulator.php +530 -0
  193. data/helpers/vendor/composer/composer/src/Composer/Json/JsonValidationException.php +34 -0
  194. data/helpers/vendor/composer/composer/src/Composer/Package/AliasPackage.php +419 -0
  195. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php +44 -0
  196. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php +105 -0
  197. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php +183 -0
  198. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php +43 -0
  199. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php +148 -0
  200. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php +31 -0
  201. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php +79 -0
  202. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php +107 -0
  203. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php +97 -0
  204. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php +86 -0
  205. data/helpers/vendor/composer/composer/src/Composer/Package/BasePackage.php +251 -0
  206. data/helpers/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php +129 -0
  207. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackage.php +218 -0
  208. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +104 -0
  209. data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +152 -0
  210. data/helpers/vendor/composer/composer/src/Composer/Package/Link.php +128 -0
  211. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php +24 -0
  212. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php +24 -0
  213. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php +24 -0
  214. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php +24 -0
  215. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php +24 -0
  216. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php +294 -0
  217. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php +46 -0
  218. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php +45 -0
  219. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php +30 -0
  220. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php +264 -0
  221. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php +525 -0
  222. data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +440 -0
  223. data/helpers/vendor/composer/composer/src/Composer/Package/Package.php +612 -0
  224. data/helpers/vendor/composer/composer/src/Composer/Package/PackageInterface.php +389 -0
  225. data/helpers/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php +173 -0
  226. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackage.php +136 -0
  227. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php +142 -0
  228. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php +326 -0
  229. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php +81 -0
  230. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php +182 -0
  231. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php +23 -0
  232. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php +33 -0
  233. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capable.php +43 -0
  234. data/helpers/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php +88 -0
  235. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php +61 -0
  236. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php +39 -0
  237. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginManager.php +406 -0
  238. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php +68 -0
  239. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php +78 -0
  240. data/helpers/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php +94 -0
  241. data/helpers/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php +218 -0
  242. data/helpers/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php +107 -0
  243. data/helpers/vendor/composer/composer/src/Composer/Repository/BaseRepository.php +178 -0
  244. data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +841 -0
  245. data/helpers/vendor/composer/composer/src/Composer/Repository/CompositeRepository.php +164 -0
  246. data/helpers/vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php +23 -0
  247. data/helpers/vendor/composer/composer/src/Composer/Repository/FilesystemRepository.php +97 -0
  248. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php +24 -0
  249. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php +22 -0
  250. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php +24 -0
  251. data/helpers/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php +22 -0
  252. data/helpers/vendor/composer/composer/src/Composer/Repository/PackageRepository.php +61 -0
  253. data/helpers/vendor/composer/composer/src/Composer/Repository/PathRepository.php +224 -0
  254. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php +82 -0
  255. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php +67 -0
  256. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelReader.php +101 -0
  257. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php +164 -0
  258. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php +139 -0
  259. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php +60 -0
  260. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php +50 -0
  261. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php +317 -0
  262. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageInfo.php +94 -0
  263. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php +50 -0
  264. data/helpers/vendor/composer/composer/src/Composer/Repository/PearRepository.php +198 -0
  265. data/helpers/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php +349 -0
  266. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +177 -0
  267. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php +74 -0
  268. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php +189 -0
  269. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php +22 -0
  270. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php +452 -0
  271. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php +243 -0
  272. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php +91 -0
  273. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitDriver.php +235 -0
  274. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +567 -0
  275. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +579 -0
  276. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php +91 -0
  277. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgDriver.php +236 -0
  278. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php +186 -0
  279. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php +397 -0
  280. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php +175 -0
  281. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php +117 -0
  282. data/helpers/vendor/composer/composer/src/Composer/Repository/VcsRepository.php +430 -0
  283. data/helpers/vendor/composer/composer/src/Composer/Repository/VersionCacheInterface.php +23 -0
  284. data/helpers/vendor/composer/composer/src/Composer/Repository/WritableArrayRepository.php +66 -0
  285. data/helpers/vendor/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php +54 -0
  286. data/helpers/vendor/composer/composer/src/Composer/Script/CommandEvent.php +22 -0
  287. data/helpers/vendor/composer/composer/src/Composer/Script/Event.php +133 -0
  288. data/helpers/vendor/composer/composer/src/Composer/Script/PackageEvent.php +24 -0
  289. data/helpers/vendor/composer/composer/src/Composer/Script/ScriptEvents.php +193 -0
  290. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php +36 -0
  291. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php +82 -0
  292. data/helpers/vendor/composer/composer/src/Composer/Util/AuthHelper.php +63 -0
  293. data/helpers/vendor/composer/composer/src/Composer/Util/Bitbucket.php +245 -0
  294. data/helpers/vendor/composer/composer/src/Composer/Util/ComposerMirror.php +57 -0
  295. data/helpers/vendor/composer/composer/src/Composer/Util/ConfigValidator.php +191 -0
  296. data/helpers/vendor/composer/composer/src/Composer/Util/ErrorHandler.php +82 -0
  297. data/helpers/vendor/composer/composer/src/Composer/Util/Filesystem.php +719 -0
  298. data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +425 -0
  299. data/helpers/vendor/composer/composer/src/Composer/Util/GitHub.php +180 -0
  300. data/helpers/vendor/composer/composer/src/Composer/Util/GitLab.php +177 -0
  301. data/helpers/vendor/composer/composer/src/Composer/Util/Hg.php +94 -0
  302. data/helpers/vendor/composer/composer/src/Composer/Util/IniHelper.php +64 -0
  303. data/helpers/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php +435 -0
  304. data/helpers/vendor/composer/composer/src/Composer/Util/PackageSorter.php +92 -0
  305. data/helpers/vendor/composer/composer/src/Composer/Util/Perforce.php +579 -0
  306. data/helpers/vendor/composer/composer/src/Composer/Util/Platform.php +92 -0
  307. data/helpers/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php +201 -0
  308. data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1147 -0
  309. data/helpers/vendor/composer/composer/src/Composer/Util/Silencer.php +78 -0
  310. data/helpers/vendor/composer/composer/src/Composer/Util/SpdxLicense.php +24 -0
  311. data/helpers/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php +177 -0
  312. data/helpers/vendor/composer/composer/src/Composer/Util/Svn.php +381 -0
  313. data/helpers/vendor/composer/composer/src/Composer/Util/TlsHelper.php +202 -0
  314. data/helpers/vendor/composer/composer/src/Composer/Util/Url.php +55 -0
  315. data/helpers/vendor/composer/composer/src/Composer/Util/Zip.php +107 -0
  316. data/helpers/vendor/composer/composer/src/Composer/XdebugHandler.php +31 -0
  317. data/helpers/vendor/composer/composer/src/bootstrap.php +24 -0
  318. data/helpers/vendor/composer/installed.json +1860 -0
  319. data/helpers/vendor/composer/semver/CHANGELOG.md +78 -0
  320. data/helpers/vendor/composer/semver/LICENSE +19 -0
  321. data/helpers/vendor/composer/semver/README.md +70 -0
  322. data/helpers/vendor/composer/semver/composer.json +57 -0
  323. data/helpers/vendor/composer/semver/src/Comparator.php +111 -0
  324. data/helpers/vendor/composer/semver/src/Constraint/AbstractConstraint.php +63 -0
  325. data/helpers/vendor/composer/semver/src/Constraint/Constraint.php +215 -0
  326. data/helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php +32 -0
  327. data/helpers/vendor/composer/semver/src/Constraint/EmptyConstraint.php +59 -0
  328. data/helpers/vendor/composer/semver/src/Constraint/MultiConstraint.php +120 -0
  329. data/helpers/vendor/composer/semver/src/Semver.php +127 -0
  330. data/helpers/vendor/composer/semver/src/VersionParser.php +545 -0
  331. data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +104 -0
  332. data/helpers/vendor/composer/spdx-licenses/LICENSE +19 -0
  333. data/helpers/vendor/composer/spdx-licenses/README.md +69 -0
  334. data/helpers/vendor/composer/spdx-licenses/composer.json +56 -0
  335. data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +125 -0
  336. data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +2112 -0
  337. data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
  338. data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +74 -0
  339. data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
  340. data/helpers/vendor/composer/xdebug-handler/README.md +289 -0
  341. data/helpers/vendor/composer/xdebug-handler/composer.json +40 -0
  342. data/helpers/vendor/composer/xdebug-handler/src/PhpConfig.php +73 -0
  343. data/helpers/vendor/composer/xdebug-handler/src/Process.php +181 -0
  344. data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
  345. data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +572 -0
  346. data/helpers/vendor/doctrine/annotations/.doctrine-project.json +40 -0
  347. data/helpers/vendor/doctrine/annotations/CHANGELOG.md +162 -0
  348. data/helpers/vendor/doctrine/annotations/LICENSE +19 -0
  349. data/helpers/vendor/doctrine/annotations/README.md +17 -0
  350. data/helpers/vendor/doctrine/annotations/composer.json +44 -0
  351. data/helpers/vendor/doctrine/annotations/docs/en/annotations.rst +271 -0
  352. data/helpers/vendor/doctrine/annotations/docs/en/custom.rst +353 -0
  353. data/helpers/vendor/doctrine/annotations/docs/en/index.rst +97 -0
  354. data/helpers/vendor/doctrine/annotations/docs/en/sidebar.rst +6 -0
  355. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php +79 -0
  356. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attribute.php +47 -0
  357. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php +37 -0
  358. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php +84 -0
  359. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php +54 -0
  360. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Required.php +33 -0
  361. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php +107 -0
  362. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php +197 -0
  363. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php +418 -0
  364. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php +180 -0
  365. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php +278 -0
  366. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php +147 -0
  367. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php +1221 -0
  368. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php +290 -0
  369. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php +119 -0
  370. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/PhpParser.php +91 -0
  371. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php +89 -0
  372. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php +127 -0
  373. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php +194 -0
  374. data/helpers/vendor/doctrine/annotations/phpbench.json.dist +4 -0
  375. data/helpers/vendor/doctrine/annotations/phpstan.neon +14 -0
  376. data/helpers/vendor/doctrine/lexer/.doctrine-project.json +17 -0
  377. data/helpers/vendor/doctrine/lexer/.github/FUNDING.yml +3 -0
  378. data/helpers/vendor/doctrine/lexer/.gitignore +2 -0
  379. data/helpers/vendor/doctrine/lexer/LICENSE +19 -0
  380. data/helpers/vendor/doctrine/lexer/README.md +7 -0
  381. data/helpers/vendor/doctrine/lexer/composer.json +36 -0
  382. data/helpers/vendor/doctrine/lexer/docs/en/dql-parser.rst +294 -0
  383. data/helpers/vendor/doctrine/lexer/docs/en/index.rst +53 -0
  384. data/helpers/vendor/doctrine/lexer/docs/en/sidebar.rst +6 -0
  385. data/helpers/vendor/doctrine/lexer/docs/en/simple-parser-example.rst +102 -0
  386. data/helpers/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php +332 -0
  387. data/helpers/vendor/doctrine/lexer/phpunit.xml.dist +26 -0
  388. data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/AbstractLexerTest.php +268 -0
  389. data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/ConcreteLexer.php +49 -0
  390. data/helpers/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +3249 -0
  391. data/helpers/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +43 -0
  392. data/helpers/vendor/friendsofphp/php-cs-fixer/LICENSE +20 -0
  393. data/helpers/vendor/friendsofphp/php-cs-fixer/README.rst +2203 -0
  394. data/helpers/vendor/friendsofphp/php-cs-fixer/UPGRADE.md +184 -0
  395. data/helpers/vendor/friendsofphp/php-cs-fixer/ci-integration.sh +8 -0
  396. data/helpers/vendor/friendsofphp/php-cs-fixer/composer.json +83 -0
  397. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/COOKBOOK-FIXERS.md +530 -0
  398. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/checkstyle.xsd +44 -0
  399. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/junit-10.xsd +135 -0
  400. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/schema.json +47 -0
  401. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/xml.xsd +83 -0
  402. data/helpers/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +99 -0
  403. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractAlignFixerHelper.php +122 -0
  404. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +221 -0
  405. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +227 -0
  406. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +127 -0
  407. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +67 -0
  408. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractLinesBeforeNamespaceFixer.php +110 -0
  409. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +207 -0
  410. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +135 -0
  411. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +122 -0
  412. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPsrAutoloadingFixer.php +87 -0
  413. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +138 -0
  414. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +56 -0
  415. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +35 -0
  416. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +53 -0
  417. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +26 -0
  418. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +122 -0
  419. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +99 -0
  420. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +33 -0
  421. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +30 -0
  422. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +110 -0
  423. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +53 -0
  424. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Config.php +280 -0
  425. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +194 -0
  426. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +40 -0
  427. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +54 -0
  428. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
  429. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
  430. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +122 -0
  431. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +415 -0
  432. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +59 -0
  433. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +270 -0
  434. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +58 -0
  435. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +637 -0
  436. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ReadmeCommand.php +279 -0
  437. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +177 -0
  438. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +941 -0
  439. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +154 -0
  440. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/NullOutput.php +23 -0
  441. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutput.php +145 -0
  442. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutputInterface.php +21 -0
  443. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +52 -0
  444. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +24 -0
  445. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +114 -0
  446. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +46 -0
  447. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +74 -0
  448. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +102 -0
  449. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +31 -0
  450. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +48 -0
  451. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +27 -0
  452. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannDiffer.php +39 -0
  453. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannShortDiffer.php +39 -0
  454. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +43 -0
  455. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +323 -0
  456. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +269 -0
  457. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +144 -0
  458. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +65 -0
  459. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +111 -0
  460. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +57 -0
  461. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +99 -0
  462. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +377 -0
  463. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +118 -0
  464. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +79 -0
  465. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Event/Event.php +29 -0
  466. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +87 -0
  467. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +80 -0
  468. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Finder.php +35 -0
  469. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +145 -0
  470. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +184 -0
  471. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +130 -0
  472. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +227 -0
  473. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +162 -0
  474. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +211 -0
  475. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +167 -0
  476. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +249 -0
  477. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +149 -0
  478. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +86 -0
  479. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +89 -0
  480. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +152 -0
  481. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +59 -0
  482. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrailingCommaInMultilineArrayFixer.php +147 -0
  483. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +103 -0
  484. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +104 -0
  485. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +1070 -0
  486. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +94 -0
  487. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +180 -0
  488. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr0Fixer.php +171 -0
  489. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr4Fixer.php +100 -0
  490. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ConstantCaseFixer.php +146 -0
  491. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseConstantsFixer.php +60 -0
  492. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +75 -0
  493. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +105 -0
  494. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +98 -0
  495. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +228 -0
  496. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +117 -0
  497. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +177 -0
  498. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +129 -0
  499. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +95 -0
  500. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +159 -0
  501. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +106 -0
  502. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +90 -0
  503. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +86 -0
  504. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +392 -0
  505. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +436 -0
  506. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +60 -0
  507. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +214 -0
  508. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalPublicMethodForAbstractClassFixer.php +168 -0
  509. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalStaticAccessFixer.php +154 -0
  510. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/MethodSeparationFixer.php +84 -0
  511. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +101 -0
  512. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +98 -0
  513. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +390 -0
  514. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +143 -0
  515. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +500 -0
  516. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +231 -0
  517. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +140 -0
  518. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +191 -0
  519. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfStaticAccessorFixer.php +206 -0
  520. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +242 -0
  521. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +119 -0
  522. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +202 -0
  523. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +162 -0
  524. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +232 -0
  525. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HashToSlashCommentFixer.php +58 -0
  526. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +452 -0
  527. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +95 -0
  528. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +173 -0
  529. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +85 -0
  530. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +168 -0
  531. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +51 -0
  532. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurationDefinitionFixerInterface.php +28 -0
  533. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +284 -0
  534. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +102 -0
  535. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +153 -0
  536. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +227 -0
  537. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +369 -0
  538. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +113 -0
  539. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +74 -0
  540. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +189 -0
  541. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +177 -0
  542. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +127 -0
  543. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +113 -0
  544. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +92 -0
  545. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +750 -0
  546. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DefinedFixerInterface.php +29 -0
  547. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +26 -0
  548. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +104 -0
  549. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +123 -0
  550. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +199 -0
  551. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +349 -0
  552. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +77 -0
  553. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +234 -0
  554. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +130 -0
  555. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +114 -0
  556. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +217 -0
  557. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +94 -0
  558. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +150 -0
  559. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +511 -0
  560. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +424 -0
  561. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +184 -0
  562. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +218 -0
  563. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NullableTypeDeclarationForDefaultNullValueFixer.php +151 -0
  564. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToParamTypeFixer.php +420 -0
  565. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +378 -0
  566. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +133 -0
  567. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/SingleLineThrowFixer.php +149 -0
  568. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +149 -0
  569. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +259 -0
  570. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +178 -0
  571. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GlobalNamespaceImportFixer.php +751 -0
  572. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +99 -0
  573. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +277 -0
  574. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +534 -0
  575. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +252 -0
  576. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +158 -0
  577. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +248 -0
  578. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +172 -0
  579. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +191 -0
  580. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +140 -0
  581. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +131 -0
  582. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +175 -0
  583. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +91 -0
  584. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +320 -0
  585. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +203 -0
  586. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +231 -0
  587. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SilencedDeprecationErrorFixer.php +55 -0
  588. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +149 -0
  589. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +144 -0
  590. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +73 -0
  591. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +101 -0
  592. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +70 -0
  593. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +244 -0
  594. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignDoubleArrowFixerHelper.php +151 -0
  595. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignEqualsFixerHelper.php +78 -0
  596. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +833 -0
  597. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +161 -0
  598. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +217 -0
  599. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +76 -0
  600. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +150 -0
  601. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +81 -0
  602. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +79 -0
  603. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +67 -0
  604. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/PreIncrementFixer.php +56 -0
  605. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +167 -0
  606. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +66 -0
  607. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +121 -0
  608. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +215 -0
  609. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +78 -0
  610. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +98 -0
  611. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +131 -0
  612. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +73 -0
  613. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +69 -0
  614. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoShortEchoTagFixer.php +80 -0
  615. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +218 -0
  616. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +443 -0
  617. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +200 -0
  618. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +282 -0
  619. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +104 -0
  620. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +234 -0
  621. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +278 -0
  622. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +150 -0
  623. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +145 -0
  624. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +225 -0
  625. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +302 -0
  626. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitOrderedCoversFixer.php +107 -0
  627. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +140 -0
  628. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +270 -0
  629. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +154 -0
  630. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +61 -0
  631. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +533 -0
  632. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +474 -0
  633. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +150 -0
  634. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +171 -0
  635. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +130 -0
  636. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +113 -0
  637. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +71 -0
  638. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +506 -0
  639. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +278 -0
  640. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +434 -0
  641. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +132 -0
  642. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +139 -0
  643. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagFixer.php +107 -0
  644. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocLineSpanFixer.php +168 -0
  645. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +70 -0
  646. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +178 -0
  647. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +123 -0
  648. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +70 -0
  649. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +190 -0
  650. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +171 -0
  651. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +228 -0
  652. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +125 -0
  653. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +172 -0
  654. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +108 -0
  655. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +104 -0
  656. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +97 -0
  657. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +217 -0
  658. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +129 -0
  659. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +163 -0
  660. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +223 -0
  661. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +78 -0
  662. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +151 -0
  663. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/BlankLineBeforeReturnFixer.php +71 -0
  664. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +112 -0
  665. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +374 -0
  666. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +170 -0
  667. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +304 -0
  668. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +162 -0
  669. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoMultilineWhitespaceBeforeSemicolonsFixer.php +68 -0
  670. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +75 -0
  671. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +63 -0
  672. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +145 -0
  673. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +152 -0
  674. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +86 -0
  675. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +164 -0
  676. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +167 -0
  677. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +172 -0
  678. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +115 -0
  679. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +65 -0
  680. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +113 -0
  681. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +116 -0
  682. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +85 -0
  683. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +400 -0
  684. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +367 -0
  685. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +79 -0
  686. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +167 -0
  687. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +163 -0
  688. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +102 -0
  689. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +202 -0
  690. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +484 -0
  691. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraConsecutiveBlankLinesFixer.php +73 -0
  692. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +107 -0
  693. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +110 -0
  694. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +114 -0
  695. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +103 -0
  696. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +73 -0
  697. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +23 -0
  698. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +103 -0
  699. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +94 -0
  700. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +53 -0
  701. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +99 -0
  702. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +21 -0
  703. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +128 -0
  704. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +28 -0
  705. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverRootless.php +99 -0
  706. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +172 -0
  707. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +145 -0
  708. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +53 -0
  709. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
  710. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +54 -0
  711. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +29 -0
  712. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +67 -0
  713. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +26 -0
  714. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +93 -0
  715. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +55 -0
  716. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +65 -0
  717. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +26 -0
  718. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +75 -0
  719. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +26 -0
  720. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +254 -0
  721. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFileProcessedEvent.php +59 -0
  722. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +36 -0
  723. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +75 -0
  724. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +72 -0
  725. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +64 -0
  726. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +44 -0
  727. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +20 -0
  728. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +24 -0
  729. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
  730. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +50 -0
  731. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +59 -0
  732. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +70 -0
  733. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +45 -0
  734. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +22 -0
  735. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +39 -0
  736. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
  737. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Preg.php +233 -0
  738. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
  739. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/CheckstyleReporter.php +74 -0
  740. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/GitlabReporter.php +60 -0
  741. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JsonReporter.php +71 -0
  742. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JunitReporter.php +141 -0
  743. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReportSummary.php +122 -0
  744. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterFactory.php +100 -0
  745. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterInterface.php +31 -0
  746. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/TextReporter.php +108 -0
  747. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/XmlReporter.php +140 -0
  748. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSet.php +534 -0
  749. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSetInterface.php +59 -0
  750. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingIterator.php +80 -0
  751. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +122 -0
  752. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileLintingIterator.php +68 -0
  753. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +307 -0
  754. data/helpers/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +172 -0
  755. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractFixerTestCase.php +36 -0
  756. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractIntegrationTestCase.php +36 -0
  757. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AccessibleObject.php +93 -0
  758. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/IntegrationCase.php +136 -0
  759. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +42 -0
  760. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +108 -0
  761. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +127 -0
  762. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +147 -0
  763. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +30 -0
  764. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +125 -0
  765. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +140 -0
  766. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/BlocksAnalyzer.php +67 -0
  767. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ClassyAnalyzer.php +82 -0
  768. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +314 -0
  769. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +262 -0
  770. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +105 -0
  771. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +71 -0
  772. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +95 -0
  773. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CodeHasher.php +38 -0
  774. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Generator/NamespacedStringTokenGenerator.php +43 -0
  775. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Resolver/TypeShortNameResolver.php +94 -0
  776. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +618 -0
  777. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1453 -0
  778. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +743 -0
  779. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +61 -0
  780. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +88 -0
  781. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +64 -0
  782. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/CurlyBraceTransformer.php +221 -0
  783. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +67 -0
  784. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +61 -0
  785. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +70 -0
  786. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +62 -0
  787. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +196 -0
  788. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +86 -0
  789. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +88 -0
  790. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +110 -0
  791. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +71 -0
  792. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +72 -0
  793. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +113 -0
  794. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +111 -0
  795. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +31 -0
  796. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Utils.php +185 -0
  797. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +56 -0
  798. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +57 -0
  799. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractFixerTestCase.php +259 -0
  800. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationCaseFactory.php +254 -0
  801. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationTestCase.php +402 -0
  802. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/Assert/AssertTokensTrait.php +48 -0
  803. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCase.php +153 -0
  804. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactory.php +22 -0
  805. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactoryInterface.php +28 -0
  806. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/InternalIntegrationCaseFactory.php +35 -0
  807. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IsIdenticalConstraint.php +56 -0
  808. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/TestCase.php +49 -0
  809. data/helpers/vendor/justinrainbow/json-schema/.php_cs.dist +33 -0
  810. data/helpers/vendor/justinrainbow/json-schema/LICENSE +21 -0
  811. data/helpers/vendor/justinrainbow/json-schema/README.md +206 -0
  812. data/helpers/vendor/justinrainbow/json-schema/bin/validate-json +251 -0
  813. data/helpers/vendor/justinrainbow/json-schema/composer.json +76 -0
  814. data/helpers/vendor/justinrainbow/json-schema/demo/README.md +14 -0
  815. data/helpers/vendor/justinrainbow/json-schema/demo/data.json +3 -0
  816. data/helpers/vendor/justinrainbow/json-schema/demo/demo.php +18 -0
  817. data/helpers/vendor/justinrainbow/json-schema/demo/schema.json +3 -0
  818. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json +174 -0
  819. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json +150 -0
  820. data/helpers/vendor/justinrainbow/json-schema/phpunit.xml.dist +26 -0
  821. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php +148 -0
  822. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php +121 -0
  823. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php +213 -0
  824. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php +65 -0
  825. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php +54 -0
  826. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php +220 -0
  827. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php +214 -0
  828. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php +81 -0
  829. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php +192 -0
  830. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php +94 -0
  831. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php +60 -0
  832. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php +68 -0
  833. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php +40 -0
  834. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php +18 -0
  835. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php +261 -0
  836. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php +419 -0
  837. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php +161 -0
  838. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php +7 -0
  839. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php +17 -0
  840. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php +17 -0
  841. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php +17 -0
  842. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php +17 -0
  843. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php +17 -0
  844. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php +40 -0
  845. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php +17 -0
  846. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php +17 -0
  847. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php +19 -0
  848. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php +17 -0
  849. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php +14 -0
  850. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php +149 -0
  851. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php +30 -0
  852. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php +169 -0
  853. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php +41 -0
  854. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +34 -0
  855. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php +83 -0
  856. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php +93 -0
  857. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php +56 -0
  858. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php +36 -0
  859. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php +175 -0
  860. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php +349 -0
  861. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php +26 -0
  862. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php +26 -0
  863. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php +88 -0
  864. data/helpers/vendor/paragonie/random_compat/LICENSE +22 -0
  865. data/helpers/vendor/paragonie/random_compat/build-phar.sh +5 -0
  866. data/helpers/vendor/paragonie/random_compat/composer.json +34 -0
  867. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey +5 -0
  868. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc +11 -0
  869. data/helpers/vendor/paragonie/random_compat/lib/random.php +32 -0
  870. data/helpers/vendor/paragonie/random_compat/other/build_phar.php +57 -0
  871. data/helpers/vendor/paragonie/random_compat/psalm-autoload.php +9 -0
  872. data/helpers/vendor/paragonie/random_compat/psalm.xml +19 -0
  873. data/helpers/vendor/php-cs-fixer/diff/ChangeLog.md +7 -0
  874. data/helpers/vendor/php-cs-fixer/diff/LICENSE +5 -0
  875. data/helpers/vendor/php-cs-fixer/diff/LICENSE_DIFF +31 -0
  876. data/helpers/vendor/php-cs-fixer/diff/LICENSE_GECKO +19 -0
  877. data/helpers/vendor/php-cs-fixer/diff/README.md +13 -0
  878. data/helpers/vendor/php-cs-fixer/diff/composer.json +41 -0
  879. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/ConfigurationException.php +36 -0
  880. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/UnifiedDiffOutputBuilder.php +295 -0
  881. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Chunk.php +103 -0
  882. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Diff.php +73 -0
  883. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Differ.php +399 -0
  884. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/LongestCommonSubsequence.php +27 -0
  885. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php +95 -0
  886. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php +74 -0
  887. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Line.php +54 -0
  888. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Parser.php +110 -0
  889. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Chunk.php +78 -0
  890. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Diff.php +67 -0
  891. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Differ.php +321 -0
  892. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/Exception.php +15 -0
  893. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/InvalidArgumentException.php +15 -0
  894. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Line.php +44 -0
  895. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/LongestCommonSubsequenceCalculator.php +24 -0
  896. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  897. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/AbstractChunkOutputBuilder.php +56 -0
  898. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOnlyOutputBuilder.php +63 -0
  899. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOutputBuilderInterface.php +19 -0
  900. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/UnifiedDiffOutputBuilder.php +165 -0
  901. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Parser.php +106 -0
  902. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  903. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Chunk.php +78 -0
  904. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Diff.php +67 -0
  905. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Differ.php +329 -0
  906. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/ConfigurationException.php +40 -0
  907. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/Exception.php +15 -0
  908. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/InvalidArgumentException.php +15 -0
  909. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Line.php +44 -0
  910. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/LongestCommonSubsequenceCalculator.php +24 -0
  911. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  912. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/AbstractChunkOutputBuilder.php +56 -0
  913. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOnlyOutputBuilder.php +66 -0
  914. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOutputBuilderInterface.php +20 -0
  915. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/StrictUnifiedDiffOutputBuilder.php +315 -0
  916. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/UnifiedDiffOutputBuilder.php +259 -0
  917. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Parser.php +106 -0
  918. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  919. data/helpers/vendor/phpstan/phpstan/.gitattributes +10 -0
  920. data/helpers/vendor/phpstan/phpstan/.gitignore +9 -0
  921. data/helpers/vendor/phpstan/phpstan/LICENSE +21 -0
  922. data/helpers/vendor/phpstan/phpstan/README.md +64 -0
  923. data/helpers/vendor/phpstan/phpstan/bootstrap.php +43 -0
  924. data/helpers/vendor/phpstan/phpstan/composer.json +23 -0
  925. data/helpers/vendor/phpstan/phpstan/conf/bleedingEdge.neon +2 -0
  926. data/helpers/vendor/phpstan/phpstan/phpstan +0 -0
  927. data/helpers/vendor/phpstan/phpstan/phpstan.phar +0 -0
  928. data/helpers/vendor/phpstan/phpstan/phpstan.phar.asc +17 -0
  929. data/helpers/vendor/psr/log/LICENSE +19 -0
  930. data/helpers/vendor/psr/log/Psr/Log/AbstractLogger.php +128 -0
  931. data/helpers/vendor/psr/log/Psr/Log/InvalidArgumentException.php +7 -0
  932. data/helpers/vendor/psr/log/Psr/Log/LogLevel.php +18 -0
  933. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +18 -0
  934. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +26 -0
  935. data/helpers/vendor/psr/log/Psr/Log/LoggerInterface.php +125 -0
  936. data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +142 -0
  937. data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +30 -0
  938. data/helpers/vendor/psr/log/Psr/Log/Test/DummyTest.php +18 -0
  939. data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +138 -0
  940. data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +147 -0
  941. data/helpers/vendor/psr/log/README.md +58 -0
  942. data/helpers/vendor/psr/log/composer.json +26 -0
  943. data/helpers/vendor/seld/jsonlint/.github/FUNDING.yml +2 -0
  944. data/helpers/vendor/seld/jsonlint/.github/SECURITY.md +6 -0
  945. data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
  946. data/helpers/vendor/seld/jsonlint/.travis.yml +31 -0
  947. data/helpers/vendor/seld/jsonlint/CHANGELOG.md +76 -0
  948. data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
  949. data/helpers/vendor/seld/jsonlint/README.md +94 -0
  950. data/helpers/vendor/seld/jsonlint/bin/jsonlint +117 -0
  951. data/helpers/vendor/seld/jsonlint/composer.json +24 -0
  952. data/helpers/vendor/seld/jsonlint/phpunit.xml.dist +25 -0
  953. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php +26 -0
  954. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php +502 -0
  955. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php +231 -0
  956. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php +28 -0
  957. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php +16 -0
  958. data/helpers/vendor/seld/jsonlint/tests/JsonParserTest.php +272 -0
  959. data/helpers/vendor/seld/jsonlint/tests/bom.json +6 -0
  960. data/helpers/vendor/seld/jsonlint/tests/bootstrap.php +13 -0
  961. data/helpers/vendor/seld/phar-utils/.gitignore +1 -0
  962. data/helpers/vendor/seld/phar-utils/LICENSE +19 -0
  963. data/helpers/vendor/seld/phar-utils/README.md +45 -0
  964. data/helpers/vendor/seld/phar-utils/composer.json +26 -0
  965. data/helpers/vendor/seld/phar-utils/composer.lock +19 -0
  966. data/helpers/vendor/seld/phar-utils/src/Linter.php +110 -0
  967. data/helpers/vendor/seld/phar-utils/src/Timestamps.php +192 -0
  968. data/helpers/vendor/symfony/console/.gitignore +3 -0
  969. data/helpers/vendor/symfony/console/Application.php +1271 -0
  970. data/helpers/vendor/symfony/console/CHANGELOG.md +112 -0
  971. data/helpers/vendor/symfony/console/Command/Command.php +668 -0
  972. data/helpers/vendor/symfony/console/Command/HelpCommand.php +81 -0
  973. data/helpers/vendor/symfony/console/Command/ListCommand.php +90 -0
  974. data/helpers/vendor/symfony/console/Command/LockableTrait.php +72 -0
  975. data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +46 -0
  976. data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +64 -0
  977. data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
  978. data/helpers/vendor/symfony/console/ConsoleEvents.php +60 -0
  979. data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +106 -0
  980. data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +157 -0
  981. data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
  982. data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +29 -0
  983. data/helpers/vendor/symfony/console/Descriptor/JsonDescriptor.php +168 -0
  984. data/helpers/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +182 -0
  985. data/helpers/vendor/symfony/console/Descriptor/TextDescriptor.php +342 -0
  986. data/helpers/vendor/symfony/console/Descriptor/XmlDescriptor.php +248 -0
  987. data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
  988. data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +83 -0
  989. data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
  990. data/helpers/vendor/symfony/console/Event/ConsoleExceptionEvent.php +71 -0
  991. data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +58 -0
  992. data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +95 -0
  993. data/helpers/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
  994. data/helpers/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
  995. data/helpers/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
  996. data/helpers/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
  997. data/helpers/vendor/symfony/console/Exception/LogicException.php +19 -0
  998. data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
  999. data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +243 -0
  1000. data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
  1001. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +183 -0
  1002. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
  1003. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +109 -0
  1004. data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
  1005. data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
  1006. data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +102 -0
  1007. data/helpers/vendor/symfony/console/Helper/Helper.php +138 -0
  1008. data/helpers/vendor/symfony/console/Helper/HelperInterface.php +39 -0
  1009. data/helpers/vendor/symfony/console/Helper/HelperSet.php +108 -0
  1010. data/helpers/vendor/symfony/console/Helper/InputAwareHelper.php +33 -0
  1011. data/helpers/vendor/symfony/console/Helper/ProcessHelper.php +145 -0
  1012. data/helpers/vendor/symfony/console/Helper/ProgressBar.php +614 -0
  1013. data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +270 -0
  1014. data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +513 -0
  1015. data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +124 -0
  1016. data/helpers/vendor/symfony/console/Helper/Table.php +698 -0
  1017. data/helpers/vendor/symfony/console/Helper/TableCell.php +75 -0
  1018. data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
  1019. data/helpers/vendor/symfony/console/Helper/TableStyle.php +258 -0
  1020. data/helpers/vendor/symfony/console/Input/ArgvInput.php +372 -0
  1021. data/helpers/vendor/symfony/console/Input/ArrayInput.php +208 -0
  1022. data/helpers/vendor/symfony/console/Input/Input.php +203 -0
  1023. data/helpers/vendor/symfony/console/Input/InputArgument.php +129 -0
  1024. data/helpers/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
  1025. data/helpers/vendor/symfony/console/Input/InputDefinition.php +404 -0
  1026. data/helpers/vendor/symfony/console/Input/InputInterface.php +163 -0
  1027. data/helpers/vendor/symfony/console/Input/InputOption.php +208 -0
  1028. data/helpers/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
  1029. data/helpers/vendor/symfony/console/Input/StringInput.php +72 -0
  1030. data/helpers/vendor/symfony/console/LICENSE +19 -0
  1031. data/helpers/vendor/symfony/console/Logger/ConsoleLogger.php +128 -0
  1032. data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
  1033. data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +152 -0
  1034. data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
  1035. data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
  1036. data/helpers/vendor/symfony/console/Output/Output.php +175 -0
  1037. data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
  1038. data/helpers/vendor/symfony/console/Output/StreamOutput.php +120 -0
  1039. data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +187 -0
  1040. data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
  1041. data/helpers/vendor/symfony/console/Question/Question.php +242 -0
  1042. data/helpers/vendor/symfony/console/README.md +20 -0
  1043. data/helpers/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
  1044. data/helpers/vendor/symfony/console/Style/OutputStyle.php +155 -0
  1045. data/helpers/vendor/symfony/console/Style/StyleInterface.php +153 -0
  1046. data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +431 -0
  1047. data/helpers/vendor/symfony/console/Terminal.php +176 -0
  1048. data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +176 -0
  1049. data/helpers/vendor/symfony/console/Tester/CommandTester.php +162 -0
  1050. data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1772 -0
  1051. data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +430 -0
  1052. data/helpers/vendor/symfony/console/Tests/Command/HelpCommandTest.php +71 -0
  1053. data/helpers/vendor/symfony/console/Tests/Command/ListCommandTest.php +113 -0
  1054. data/helpers/vendor/symfony/console/Tests/Command/LockableTraitTest.php +67 -0
  1055. data/helpers/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +59 -0
  1056. data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +58 -0
  1057. data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +256 -0
  1058. data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -0
  1059. data/helpers/vendor/symfony/console/Tests/Descriptor/ApplicationDescriptionTest.php +53 -0
  1060. data/helpers/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +35 -0
  1061. data/helpers/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +45 -0
  1062. data/helpers/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +82 -0
  1063. data/helpers/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +53 -0
  1064. data/helpers/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +27 -0
  1065. data/helpers/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +156 -0
  1066. data/helpers/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +11 -0
  1067. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +18 -0
  1068. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +26 -0
  1069. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +24 -0
  1070. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +27 -0
  1071. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +32 -0
  1072. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +27 -0
  1073. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +25 -0
  1074. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +32 -0
  1075. data/helpers/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +36 -0
  1076. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +26 -0
  1077. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +21 -0
  1078. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +29 -0
  1079. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +11 -0
  1080. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +10 -0
  1081. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +11 -0
  1082. data/helpers/vendor/symfony/console/Tests/Fixtures/FooCommand.php +33 -0
  1083. data/helpers/vendor/symfony/console/Tests/Fixtures/FooHiddenCommand.php +21 -0
  1084. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +28 -0
  1085. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +27 -0
  1086. data/helpers/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +36 -0
  1087. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +11 -0
  1088. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +11 -0
  1089. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +26 -0
  1090. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +26 -0
  1091. data/helpers/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +25 -0
  1092. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +11 -0
  1093. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +13 -0
  1094. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +17 -0
  1095. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +12 -0
  1096. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +13 -0
  1097. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +14 -0
  1098. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +17 -0
  1099. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +14 -0
  1100. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +15 -0
  1101. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +13 -0
  1102. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +16 -0
  1103. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +12 -0
  1104. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +34 -0
  1105. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +37 -0
  1106. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +16 -0
  1107. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +15 -0
  1108. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +26 -0
  1109. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +11 -0
  1110. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +19 -0
  1111. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +7 -0
  1112. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +3 -0
  1113. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +9 -0
  1114. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +7 -0
  1115. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +4 -0
  1116. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +6 -0
  1117. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +7 -0
  1118. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +6 -0
  1119. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +7 -0
  1120. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +8 -0
  1121. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +7 -0
  1122. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +13 -0
  1123. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +7 -0
  1124. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +32 -0
  1125. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +18 -0
  1126. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +6 -0
  1127. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +5 -0
  1128. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +9 -0
  1129. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +5 -0
  1130. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering.php +22 -0
  1131. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering2.php +21 -0
  1132. data/helpers/vendor/symfony/console/Tests/Fixtures/TestCommand.php +28 -0
  1133. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.json +156 -0
  1134. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.md +172 -0
  1135. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.txt +17 -0
  1136. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.xml +104 -0
  1137. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.json +509 -0
  1138. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.md +431 -0
  1139. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.txt +21 -0
  1140. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.xml +254 -0
  1141. data/helpers/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +16 -0
  1142. data/helpers/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +1 -0
  1143. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +269 -0
  1144. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +19 -0
  1145. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +5 -0
  1146. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +7 -0
  1147. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +18 -0
  1148. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +18 -0
  1149. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +6 -0
  1150. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +8 -0
  1151. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +8 -0
  1152. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +9 -0
  1153. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +9 -0
  1154. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +11 -0
  1155. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run1.txt +17 -0
  1156. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run2.txt +26 -0
  1157. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +26 -0
  1158. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run4.txt +1 -0
  1159. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.json +15 -0
  1160. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.md +12 -0
  1161. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.txt +7 -0
  1162. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.xml +12 -0
  1163. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.json +33 -0
  1164. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.md +29 -0
  1165. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.txt +13 -0
  1166. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.xml +21 -0
  1167. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +29 -0
  1168. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +13 -0
  1169. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +7 -0
  1170. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +5 -0
  1171. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +1 -0
  1172. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +5 -0
  1173. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +7 -0
  1174. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +7 -0
  1175. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +1 -0
  1176. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +5 -0
  1177. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +7 -0
  1178. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +7 -0
  1179. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +1 -0
  1180. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +7 -0
  1181. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +7 -0
  1182. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +8 -0
  1183. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +2 -0
  1184. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +6 -0
  1185. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +7 -0
  1186. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +7 -0
  1187. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +1 -0
  1188. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +7 -0
  1189. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +7 -0
  1190. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +7 -0
  1191. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +1 -0
  1192. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +7 -0
  1193. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +4 -0
  1194. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +0 -0
  1195. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +0 -0
  1196. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +5 -0
  1197. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +12 -0
  1198. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +7 -0
  1199. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +2 -0
  1200. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +10 -0
  1201. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +14 -0
  1202. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +8 -0
  1203. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +2 -0
  1204. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +9 -0
  1205. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +22 -0
  1206. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +16 -0
  1207. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +5 -0
  1208. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +14 -0
  1209. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.json +9 -0
  1210. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.md +6 -0
  1211. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +1 -0
  1212. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +4 -0
  1213. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.json +9 -0
  1214. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.md +8 -0
  1215. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +1 -0
  1216. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +7 -0
  1217. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.json +9 -0
  1218. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.md +8 -0
  1219. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +1 -0
  1220. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +5 -0
  1221. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.json +9 -0
  1222. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.md +8 -0
  1223. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +1 -0
  1224. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +5 -0
  1225. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.json +9 -0
  1226. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.md +9 -0
  1227. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +2 -0
  1228. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +6 -0
  1229. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.json +9 -0
  1230. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.md +8 -0
  1231. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +1 -0
  1232. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +5 -0
  1233. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +9 -0
  1234. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +8 -0
  1235. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +1 -0
  1236. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +7 -0
  1237. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +9 -0
  1238. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +8 -0
  1239. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +1 -0
  1240. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +7 -0
  1241. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +12 -0
  1242. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +8 -0
  1243. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +1 -0
  1244. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +8 -0
  1245. data/helpers/vendor/symfony/console/Tests/Fixtures/stream_output_file.txt +0 -0
  1246. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +69 -0
  1247. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
  1248. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +344 -0
  1249. data/helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +34 -0
  1250. data/helpers/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +129 -0
  1251. data/helpers/vendor/symfony/console/Tests/Helper/HelperSetTest.php +127 -0
  1252. data/helpers/vendor/symfony/console/Tests/Helper/HelperTest.php +55 -0
  1253. data/helpers/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +118 -0
  1254. data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +805 -0
  1255. data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +175 -0
  1256. data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +1115 -0
  1257. data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +214 -0
  1258. data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +26 -0
  1259. data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +868 -0
  1260. data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +462 -0
  1261. data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +173 -0
  1262. data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +109 -0
  1263. data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +389 -0
  1264. data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +194 -0
  1265. data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +137 -0
  1266. data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
  1267. data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +213 -0
  1268. data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
  1269. data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
  1270. data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +176 -0
  1271. data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +67 -0
  1272. data/helpers/vendor/symfony/console/Tests/Question/ChoiceQuestionTest.php +64 -0
  1273. data/helpers/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php +62 -0
  1274. data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +118 -0
  1275. data/helpers/vendor/symfony/console/Tests/TerminalTest.php +97 -0
  1276. data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +70 -0
  1277. data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +212 -0
  1278. data/helpers/vendor/symfony/console/composer.json +56 -0
  1279. data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
  1280. data/helpers/vendor/symfony/debug/.gitignore +3 -0
  1281. data/helpers/vendor/symfony/debug/BufferingLogger.php +37 -0
  1282. data/helpers/vendor/symfony/debug/CHANGELOG.md +64 -0
  1283. data/helpers/vendor/symfony/debug/Debug.php +60 -0
  1284. data/helpers/vendor/symfony/debug/DebugClassLoader.php +455 -0
  1285. data/helpers/vendor/symfony/debug/ErrorHandler.php +787 -0
  1286. data/helpers/vendor/symfony/debug/Exception/ClassNotFoundException.php +36 -0
  1287. data/helpers/vendor/symfony/debug/Exception/ContextErrorException.php +40 -0
  1288. data/helpers/vendor/symfony/debug/Exception/FatalErrorException.php +82 -0
  1289. data/helpers/vendor/symfony/debug/Exception/FatalThrowableError.php +45 -0
  1290. data/helpers/vendor/symfony/debug/Exception/FlattenException.php +263 -0
  1291. data/helpers/vendor/symfony/debug/Exception/OutOfMemoryException.php +21 -0
  1292. data/helpers/vendor/symfony/debug/Exception/SilencedErrorContext.php +67 -0
  1293. data/helpers/vendor/symfony/debug/Exception/UndefinedFunctionException.php +36 -0
  1294. data/helpers/vendor/symfony/debug/Exception/UndefinedMethodException.php +36 -0
  1295. data/helpers/vendor/symfony/debug/ExceptionHandler.php +444 -0
  1296. data/helpers/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +214 -0
  1297. data/helpers/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +32 -0
  1298. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +84 -0
  1299. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +66 -0
  1300. data/helpers/vendor/symfony/debug/LICENSE +19 -0
  1301. data/helpers/vendor/symfony/debug/README.md +25 -0
  1302. data/helpers/vendor/symfony/debug/Resources/ext/README.md +134 -0
  1303. data/helpers/vendor/symfony/debug/Resources/ext/config.m4 +63 -0
  1304. data/helpers/vendor/symfony/debug/Resources/ext/config.w32 +13 -0
  1305. data/helpers/vendor/symfony/debug/Resources/ext/php_symfony_debug.h +60 -0
  1306. data/helpers/vendor/symfony/debug/Resources/ext/symfony_debug.c +283 -0
  1307. data/helpers/vendor/symfony/debug/Resources/ext/tests/001.phpt +155 -0
  1308. data/helpers/vendor/symfony/debug/Resources/ext/tests/002.phpt +65 -0
  1309. data/helpers/vendor/symfony/debug/Resources/ext/tests/002_1.phpt +48 -0
  1310. data/helpers/vendor/symfony/debug/Resources/ext/tests/003.phpt +87 -0
  1311. data/helpers/vendor/symfony/debug/Tests/DebugClassLoaderTest.php +448 -0
  1312. data/helpers/vendor/symfony/debug/Tests/ErrorHandlerTest.php +660 -0
  1313. data/helpers/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php +314 -0
  1314. data/helpers/vendor/symfony/debug/Tests/ExceptionHandlerTest.php +163 -0
  1315. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php +184 -0
  1316. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php +81 -0
  1317. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +76 -0
  1318. data/helpers/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php +13 -0
  1319. data/helpers/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php +3 -0
  1320. data/helpers/vendor/symfony/debug/Tests/Fixtures/DefinitionInEvaluatedCode.php +11 -0
  1321. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php +12 -0
  1322. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +12 -0
  1323. data/helpers/vendor/symfony/debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +22 -0
  1324. data/helpers/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +19 -0
  1325. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php +85 -0
  1326. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php +26 -0
  1327. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php +10 -0
  1328. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalClass.php +15 -0
  1329. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php +10 -0
  1330. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php +10 -0
  1331. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php +23 -0
  1332. data/helpers/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php +15 -0
  1333. data/helpers/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php +7 -0
  1334. data/helpers/vendor/symfony/debug/Tests/Fixtures/PEARClass.php +5 -0
  1335. data/helpers/vendor/symfony/debug/Tests/Fixtures/Throwing.php +3 -0
  1336. data/helpers/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php +24 -0
  1337. data/helpers/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php +13 -0
  1338. data/helpers/vendor/symfony/debug/Tests/Fixtures/casemismatch.php +7 -0
  1339. data/helpers/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php +7 -0
  1340. data/helpers/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php +7 -0
  1341. data/helpers/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php +7 -0
  1342. data/helpers/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php +7 -0
  1343. data/helpers/vendor/symfony/debug/Tests/HeaderMock.php +38 -0
  1344. data/helpers/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt +27 -0
  1345. data/helpers/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +47 -0
  1346. data/helpers/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt +35 -0
  1347. data/helpers/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt +42 -0
  1348. data/helpers/vendor/symfony/debug/composer.json +40 -0
  1349. data/helpers/vendor/symfony/debug/phpunit.xml.dist +33 -0
  1350. data/helpers/vendor/symfony/event-dispatcher/.gitignore +3 -0
  1351. data/helpers/vendor/symfony/event-dispatcher/CHANGELOG.md +42 -0
  1352. data/helpers/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php +198 -0
  1353. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +332 -0
  1354. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php +36 -0
  1355. data/helpers/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +125 -0
  1356. data/helpers/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +137 -0
  1357. data/helpers/vendor/symfony/event-dispatcher/Event.php +58 -0
  1358. data/helpers/vendor/symfony/event-dispatcher/EventDispatcher.php +238 -0
  1359. data/helpers/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +93 -0
  1360. data/helpers/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +49 -0
  1361. data/helpers/vendor/symfony/event-dispatcher/GenericEvent.php +175 -0
  1362. data/helpers/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +91 -0
  1363. data/helpers/vendor/symfony/event-dispatcher/LICENSE +19 -0
  1364. data/helpers/vendor/symfony/event-dispatcher/README.md +15 -0
  1365. data/helpers/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php +442 -0
  1366. data/helpers/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php +210 -0
  1367. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php +269 -0
  1368. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php +64 -0
  1369. data/helpers/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php +143 -0
  1370. data/helpers/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php +22 -0
  1371. data/helpers/vendor/symfony/event-dispatcher/Tests/EventTest.php +55 -0
  1372. data/helpers/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php +134 -0
  1373. data/helpers/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php +100 -0
  1374. data/helpers/vendor/symfony/event-dispatcher/composer.json +47 -0
  1375. data/helpers/vendor/symfony/event-dispatcher/phpunit.xml.dist +31 -0
  1376. data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
  1377. data/helpers/vendor/symfony/filesystem/CHANGELOG.md +53 -0
  1378. data/helpers/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
  1379. data/helpers/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
  1380. data/helpers/vendor/symfony/filesystem/Exception/IOException.php +39 -0
  1381. data/helpers/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +27 -0
  1382. data/helpers/vendor/symfony/filesystem/Filesystem.php +774 -0
  1383. data/helpers/vendor/symfony/filesystem/LICENSE +19 -0
  1384. data/helpers/vendor/symfony/filesystem/LockHandler.php +121 -0
  1385. data/helpers/vendor/symfony/filesystem/README.md +13 -0
  1386. data/helpers/vendor/symfony/filesystem/Tests/ExceptionTest.php +47 -0
  1387. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTest.php +1660 -0
  1388. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +165 -0
  1389. data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -0
  1390. data/helpers/vendor/symfony/filesystem/Tests/LockHandlerTest.php +144 -0
  1391. data/helpers/vendor/symfony/filesystem/composer.json +34 -0
  1392. data/helpers/vendor/symfony/filesystem/phpunit.xml.dist +30 -0
  1393. data/helpers/vendor/symfony/finder/.gitignore +3 -0
  1394. data/helpers/vendor/symfony/finder/CHANGELOG.md +55 -0
  1395. data/helpers/vendor/symfony/finder/Comparator/Comparator.php +98 -0
  1396. data/helpers/vendor/symfony/finder/Comparator/DateComparator.php +51 -0
  1397. data/helpers/vendor/symfony/finder/Comparator/NumberComparator.php +79 -0
  1398. data/helpers/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
  1399. data/helpers/vendor/symfony/finder/Exception/ExceptionInterface.php +25 -0
  1400. data/helpers/vendor/symfony/finder/Finder.php +759 -0
  1401. data/helpers/vendor/symfony/finder/Glob.php +116 -0
  1402. data/helpers/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
  1403. data/helpers/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
  1404. data/helpers/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +45 -0
  1405. data/helpers/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +84 -0
  1406. data/helpers/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +53 -0
  1407. data/helpers/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
  1408. data/helpers/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +47 -0
  1409. data/helpers/vendor/symfony/finder/Iterator/FilterIterator.php +60 -0
  1410. data/helpers/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +112 -0
  1411. data/helpers/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
  1412. data/helpers/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +158 -0
  1413. data/helpers/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
  1414. data/helpers/vendor/symfony/finder/Iterator/SortableIterator.php +80 -0
  1415. data/helpers/vendor/symfony/finder/LICENSE +19 -0
  1416. data/helpers/vendor/symfony/finder/README.md +14 -0
  1417. data/helpers/vendor/symfony/finder/SplFileInfo.php +78 -0
  1418. data/helpers/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php +65 -0
  1419. data/helpers/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php +64 -0
  1420. data/helpers/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php +108 -0
  1421. data/helpers/vendor/symfony/finder/Tests/FinderTest.php +752 -0
  1422. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/a +0 -0
  1423. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon +0 -0
  1424. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon +0 -0
  1425. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat +0 -0
  1426. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat +0 -0
  1427. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/a.dat +0 -0
  1428. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy +0 -0
  1429. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy +0 -0
  1430. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy +0 -0
  1431. data/helpers/vendor/symfony/finder/Tests/Fixtures/dolor.txt +2 -0
  1432. data/helpers/vendor/symfony/finder/Tests/Fixtures/ipsum.txt +2 -0
  1433. data/helpers/vendor/symfony/finder/Tests/Fixtures/lorem.txt +2 -0
  1434. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/.dot +1 -0
  1435. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/a +0 -0
  1436. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon +0 -0
  1437. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon +0 -0
  1438. data/helpers/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat +0 -0
  1439. data/helpers/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt b/data/helpers/vendor/symfony/finder/Tests/Fixtures/with → space/foo.txt +0 -0
  1440. data/helpers/vendor/symfony/finder/Tests/GlobTest.php +95 -0
  1441. data/helpers/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php +44 -0
  1442. data/helpers/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php +74 -0
  1443. data/helpers/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php +83 -0
  1444. data/helpers/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php +80 -0
  1445. data/helpers/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php +73 -0
  1446. data/helpers/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php +86 -0
  1447. data/helpers/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php +54 -0
  1448. data/helpers/vendor/symfony/finder/Tests/Iterator/FilterIteratorTest.php +53 -0
  1449. data/helpers/vendor/symfony/finder/Tests/Iterator/Iterator.php +55 -0
  1450. data/helpers/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php +93 -0
  1451. data/helpers/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php +21 -0
  1452. data/helpers/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php +132 -0
  1453. data/helpers/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php +71 -0
  1454. data/helpers/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php +82 -0
  1455. data/helpers/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php +119 -0
  1456. data/helpers/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php +59 -0
  1457. data/helpers/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php +69 -0
  1458. data/helpers/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php +179 -0
  1459. data/helpers/vendor/symfony/finder/composer.json +33 -0
  1460. data/helpers/vendor/symfony/finder/phpunit.xml.dist +30 -0
  1461. data/helpers/vendor/symfony/options-resolver/.gitignore +3 -0
  1462. data/helpers/vendor/symfony/options-resolver/CHANGELOG.md +52 -0
  1463. data/helpers/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +102 -0
  1464. data/helpers/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
  1465. data/helpers/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
  1466. data/helpers/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
  1467. data/helpers/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
  1468. data/helpers/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
  1469. data/helpers/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
  1470. data/helpers/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
  1471. data/helpers/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
  1472. data/helpers/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
  1473. data/helpers/vendor/symfony/options-resolver/LICENSE +19 -0
  1474. data/helpers/vendor/symfony/options-resolver/Options.php +22 -0
  1475. data/helpers/vendor/symfony/options-resolver/OptionsResolver.php +1085 -0
  1476. data/helpers/vendor/symfony/options-resolver/README.md +15 -0
  1477. data/helpers/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php +183 -0
  1478. data/helpers/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php +1626 -0
  1479. data/helpers/vendor/symfony/options-resolver/composer.json +33 -0
  1480. data/helpers/vendor/symfony/options-resolver/phpunit.xml.dist +31 -0
  1481. data/helpers/vendor/symfony/polyfill-ctype/Ctype.php +227 -0
  1482. data/helpers/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  1483. data/helpers/vendor/symfony/polyfill-ctype/README.md +12 -0
  1484. data/helpers/vendor/symfony/polyfill-ctype/bootstrap.php +46 -0
  1485. data/helpers/vendor/symfony/polyfill-ctype/composer.json +38 -0
  1486. data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  1487. data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +847 -0
  1488. data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
  1489. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
  1490. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  1491. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1414 -0
  1492. data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +141 -0
  1493. data/helpers/vendor/symfony/polyfill-mbstring/composer.json +38 -0
  1494. data/helpers/vendor/symfony/polyfill-php70/LICENSE +19 -0
  1495. data/helpers/vendor/symfony/polyfill-php70/Php70.php +74 -0
  1496. data/helpers/vendor/symfony/polyfill-php70/README.md +28 -0
  1497. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php +5 -0
  1498. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php +5 -0
  1499. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php +5 -0
  1500. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/Error.php +5 -0
  1501. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php +5 -0
  1502. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php +23 -0
  1503. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php +5 -0
  1504. data/helpers/vendor/symfony/polyfill-php70/bootstrap.php +30 -0
  1505. data/helpers/vendor/symfony/polyfill-php70/composer.json +37 -0
  1506. data/helpers/vendor/symfony/polyfill-php72/LICENSE +19 -0
  1507. data/helpers/vendor/symfony/polyfill-php72/Php72.php +217 -0
  1508. data/helpers/vendor/symfony/polyfill-php72/README.md +28 -0
  1509. data/helpers/vendor/symfony/polyfill-php72/bootstrap.php +57 -0
  1510. data/helpers/vendor/symfony/polyfill-php72/composer.json +35 -0
  1511. data/helpers/vendor/symfony/process/.gitignore +3 -0
  1512. data/helpers/vendor/symfony/process/CHANGELOG.md +57 -0
  1513. data/helpers/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
  1514. data/helpers/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
  1515. data/helpers/vendor/symfony/process/Exception/LogicException.php +21 -0
  1516. data/helpers/vendor/symfony/process/Exception/ProcessFailedException.php +54 -0
  1517. data/helpers/vendor/symfony/process/Exception/ProcessTimedOutException.php +69 -0
  1518. data/helpers/vendor/symfony/process/Exception/RuntimeException.php +21 -0
  1519. data/helpers/vendor/symfony/process/ExecutableFinder.php +88 -0
  1520. data/helpers/vendor/symfony/process/InputStream.php +92 -0
  1521. data/helpers/vendor/symfony/process/LICENSE +19 -0
  1522. data/helpers/vendor/symfony/process/PhpExecutableFinder.php +94 -0
  1523. data/helpers/vendor/symfony/process/PhpProcess.php +76 -0
  1524. data/helpers/vendor/symfony/process/Pipes/AbstractPipes.php +182 -0
  1525. data/helpers/vendor/symfony/process/Pipes/PipesInterface.php +67 -0
  1526. data/helpers/vendor/symfony/process/Pipes/UnixPipes.php +153 -0
  1527. data/helpers/vendor/symfony/process/Pipes/WindowsPipes.php +191 -0
  1528. data/helpers/vendor/symfony/process/Process.php +1746 -0
  1529. data/helpers/vendor/symfony/process/ProcessBuilder.php +280 -0
  1530. data/helpers/vendor/symfony/process/ProcessUtils.php +123 -0
  1531. data/helpers/vendor/symfony/process/README.md +13 -0
  1532. data/helpers/vendor/symfony/process/Tests/ErrorProcessInitiator.php +36 -0
  1533. data/helpers/vendor/symfony/process/Tests/ExecutableFinderTest.php +175 -0
  1534. data/helpers/vendor/symfony/process/Tests/NonStopableProcess.php +47 -0
  1535. data/helpers/vendor/symfony/process/Tests/PhpExecutableFinderTest.php +72 -0
  1536. data/helpers/vendor/symfony/process/Tests/PhpProcessTest.php +48 -0
  1537. data/helpers/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php +72 -0
  1538. data/helpers/vendor/symfony/process/Tests/ProcessBuilderTest.php +220 -0
  1539. data/helpers/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php +133 -0
  1540. data/helpers/vendor/symfony/process/Tests/ProcessTest.php +1596 -0
  1541. data/helpers/vendor/symfony/process/Tests/ProcessUtilsTest.php +53 -0
  1542. data/helpers/vendor/symfony/process/Tests/SignalListener.php +21 -0
  1543. data/helpers/vendor/symfony/process/composer.json +33 -0
  1544. data/helpers/vendor/symfony/process/phpunit.xml.dist +30 -0
  1545. data/helpers/vendor/symfony/stopwatch/.gitignore +3 -0
  1546. data/helpers/vendor/symfony/stopwatch/CHANGELOG.md +9 -0
  1547. data/helpers/vendor/symfony/stopwatch/LICENSE +19 -0
  1548. data/helpers/vendor/symfony/stopwatch/README.md +13 -0
  1549. data/helpers/vendor/symfony/stopwatch/Section.php +200 -0
  1550. data/helpers/vendor/symfony/stopwatch/Stopwatch.php +176 -0
  1551. data/helpers/vendor/symfony/stopwatch/StopwatchEvent.php +254 -0
  1552. data/helpers/vendor/symfony/stopwatch/StopwatchPeriod.php +76 -0
  1553. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchEventTest.php +210 -0
  1554. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchPeriodTest.php +67 -0
  1555. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchTest.php +182 -0
  1556. data/helpers/vendor/symfony/stopwatch/composer.json +33 -0
  1557. data/helpers/vendor/symfony/stopwatch/phpunit.xml.dist +30 -0
  1558. metadata +1564 -8
@@ -0,0 +1,202 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer\Util;
14
+
15
+ use Composer\CaBundle\CaBundle;
16
+
17
+ /**
18
+ * @author Chris Smith <chris@cs278.org>
19
+ */
20
+ final class TlsHelper
21
+ {
22
+ /**
23
+ * Match hostname against a certificate.
24
+ *
25
+ * @param mixed $certificate X.509 certificate
26
+ * @param string $hostname Hostname in the URL
27
+ * @param string $cn Set to the common name of the certificate iff match found
28
+ *
29
+ * @return bool
30
+ */
31
+ public static function checkCertificateHost($certificate, $hostname, &$cn = null)
32
+ {
33
+ $names = self::getCertificateNames($certificate);
34
+
35
+ if (empty($names)) {
36
+ return false;
37
+ }
38
+
39
+ $combinedNames = array_merge($names['san'], array($names['cn']));
40
+ $hostname = strtolower($hostname);
41
+
42
+ foreach ($combinedNames as $certName) {
43
+ $matcher = self::certNameMatcher($certName);
44
+
45
+ if ($matcher && $matcher($hostname)) {
46
+ $cn = $names['cn'];
47
+
48
+ return true;
49
+ }
50
+ }
51
+
52
+ return false;
53
+ }
54
+
55
+ /**
56
+ * Extract DNS names out of an X.509 certificate.
57
+ *
58
+ * @param mixed $certificate X.509 certificate
59
+ *
60
+ * @return array|null
61
+ */
62
+ public static function getCertificateNames($certificate)
63
+ {
64
+ if (is_array($certificate)) {
65
+ $info = $certificate;
66
+ } elseif (CaBundle::isOpensslParseSafe()) {
67
+ $info = openssl_x509_parse($certificate, false);
68
+ }
69
+
70
+ if (!isset($info['subject']['commonName'])) {
71
+ return null;
72
+ }
73
+
74
+ $commonName = strtolower($info['subject']['commonName']);
75
+ $subjectAltNames = array();
76
+
77
+ if (isset($info['extensions']['subjectAltName'])) {
78
+ $subjectAltNames = preg_split('{\s*,\s*}', $info['extensions']['subjectAltName']);
79
+ $subjectAltNames = array_filter(array_map(function ($name) {
80
+ if (0 === strpos($name, 'DNS:')) {
81
+ return strtolower(ltrim(substr($name, 4)));
82
+ }
83
+
84
+ return null;
85
+ }, $subjectAltNames));
86
+ $subjectAltNames = array_values($subjectAltNames);
87
+ }
88
+
89
+ return array(
90
+ 'cn' => $commonName,
91
+ 'san' => $subjectAltNames,
92
+ );
93
+ }
94
+
95
+ /**
96
+ * Get the certificate pin.
97
+ *
98
+ * By Kevin McArthur of StormTide Digital Studios Inc.
99
+ * @KevinSMcArthur / https://github.com/StormTide
100
+ *
101
+ * See http://tools.ietf.org/html/draft-ietf-websec-key-pinning-02
102
+ *
103
+ * This method was adapted from Sslurp.
104
+ * https://github.com/EvanDotPro/Sslurp
105
+ *
106
+ * (c) Evan Coury <me@evancoury.com>
107
+ *
108
+ * For the full copyright and license information, please see below:
109
+ *
110
+ * Copyright (c) 2013, Evan Coury
111
+ * All rights reserved.
112
+ *
113
+ * Redistribution and use in source and binary forms, with or without modification,
114
+ * are permitted provided that the following conditions are met:
115
+ *
116
+ * * Redistributions of source code must retain the above copyright notice,
117
+ * this list of conditions and the following disclaimer.
118
+ *
119
+ * * Redistributions in binary form must reproduce the above copyright notice,
120
+ * this list of conditions and the following disclaimer in the documentation
121
+ * and/or other materials provided with the distribution.
122
+ *
123
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
124
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
125
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
126
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
127
+ * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
128
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
129
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
130
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
131
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
132
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
133
+ */
134
+ public static function getCertificateFingerprint($certificate)
135
+ {
136
+ $pubkeydetails = openssl_pkey_get_details(openssl_get_publickey($certificate));
137
+ $pubkeypem = $pubkeydetails['key'];
138
+ //Convert PEM to DER before SHA1'ing
139
+ $start = '-----BEGIN PUBLIC KEY-----';
140
+ $end = '-----END PUBLIC KEY-----';
141
+ $pemtrim = substr($pubkeypem, strpos($pubkeypem, $start) + strlen($start), (strlen($pubkeypem) - strpos($pubkeypem, $end)) * (-1));
142
+ $der = base64_decode($pemtrim);
143
+
144
+ return sha1($der);
145
+ }
146
+
147
+ /**
148
+ * Test if it is safe to use the PHP function openssl_x509_parse().
149
+ *
150
+ * This checks if OpenSSL extensions is vulnerable to remote code execution
151
+ * via the exploit documented as CVE-2013-6420.
152
+ *
153
+ * @return bool
154
+ */
155
+ public static function isOpensslParseSafe()
156
+ {
157
+ return CaBundle::isOpensslParseSafe();
158
+ }
159
+
160
+ /**
161
+ * Convert certificate name into matching function.
162
+ *
163
+ * @param string $certName CN/SAN
164
+ *
165
+ * @return callable|void
166
+ */
167
+ private static function certNameMatcher($certName)
168
+ {
169
+ $wildcards = substr_count($certName, '*');
170
+
171
+ if (0 === $wildcards) {
172
+ // Literal match.
173
+ return function ($hostname) use ($certName) {
174
+ return $hostname === $certName;
175
+ };
176
+ }
177
+
178
+ if (1 === $wildcards) {
179
+ $components = explode('.', $certName);
180
+
181
+ if (3 > count($components)) {
182
+ // Must have 3+ components
183
+ return;
184
+ }
185
+
186
+ $firstComponent = $components[0];
187
+
188
+ // Wildcard must be the last character.
189
+ if ('*' !== $firstComponent[strlen($firstComponent) - 1]) {
190
+ return;
191
+ }
192
+
193
+ $wildcardRegex = preg_quote($certName);
194
+ $wildcardRegex = str_replace('\\*', '[a-z0-9-]+', $wildcardRegex);
195
+ $wildcardRegex = "{^{$wildcardRegex}$}";
196
+
197
+ return function ($hostname) use ($wildcardRegex) {
198
+ return 1 === preg_match($wildcardRegex, $hostname);
199
+ };
200
+ }
201
+ }
202
+ }
@@ -0,0 +1,55 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer\Util;
14
+
15
+ use Composer\Config;
16
+
17
+ /**
18
+ * @author Jordi Boggiano <j.boggiano@seld.be>
19
+ */
20
+ class Url
21
+ {
22
+ public static function updateDistReference(Config $config, $url, $ref)
23
+ {
24
+ $host = parse_url($url, PHP_URL_HOST);
25
+
26
+ if ($host === 'api.github.com' || $host === 'github.com' || $host === 'www.github.com') {
27
+ if (preg_match('{^https?://(?:www\.)?github\.com/([^/]+)/([^/]+)/(zip|tar)ball/(.+)$}i', $url, $match)) {
28
+ // update legacy github archives to API calls with the proper reference
29
+ $url = 'https://api.github.com/repos/' . $match[1] . '/'. $match[2] . '/' . $match[3] . 'ball/' . $ref;
30
+ } elseif (preg_match('{^https?://(?:www\.)?github\.com/([^/]+)/([^/]+)/archive/.+\.(zip|tar)(?:\.gz)?$}i', $url, $match)) {
31
+ // update current github web archives to API calls with the proper reference
32
+ $url = 'https://api.github.com/repos/' . $match[1] . '/'. $match[2] . '/' . $match[3] . 'ball/' . $ref;
33
+ } elseif (preg_match('{^https?://api\.github\.com/repos/([^/]+)/([^/]+)/(zip|tar)ball(?:/.+)?$}i', $url, $match)) {
34
+ // update api archives to the proper reference
35
+ $url = 'https://api.github.com/repos/' . $match[1] . '/'. $match[2] . '/' . $match[3] . 'ball/' . $ref;
36
+ }
37
+ } elseif ($host === 'bitbucket.org' || $host === 'www.bitbucket.org') {
38
+ if (preg_match('{^https?://(?:www\.)?bitbucket\.org/([^/]+)/([^/]+)/get/(.+)\.(zip|tar\.gz|tar\.bz2)$}i', $url, $match)) {
39
+ // update Bitbucket archives to the proper reference
40
+ $url = 'https://bitbucket.org/' . $match[1] . '/'. $match[2] . '/get/' . $ref . '.' . $match[4];
41
+ }
42
+ } elseif ($host === 'gitlab.com' || $host === 'www.gitlab.com') {
43
+ if (preg_match('{^https?://(?:www\.)?gitlab\.com/api/v[34]/projects/([^/]+)/repository/archive\.(zip|tar\.gz|tar\.bz2|tar)\?sha=.+$}i', $url, $match)) {
44
+ // update Gitlab archives to the proper reference
45
+ $url = 'https://gitlab.com/api/v4/projects/' . $match[1] . '/repository/archive.' . $match[2] . '?sha=' . $ref;
46
+ }
47
+ } elseif (in_array($host, $config->get('github-domains'), true)) {
48
+ $url = preg_replace('{(/repos/[^/]+/[^/]+/(zip|tar)ball)(?:/.+)?$}i', '$1/'.$ref, $url);
49
+ } elseif (in_array($host, $config->get('gitlab-domains'), true)) {
50
+ $url = preg_replace('{(/api/v[34]/projects/[^/]+/repository/archive\.(?:zip|tar\.gz|tar\.bz2|tar)\?sha=).+$}i', '${1}'.$ref, $url);
51
+ }
52
+
53
+ return $url;
54
+ }
55
+ }
@@ -0,0 +1,107 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer\Util;
14
+
15
+ /**
16
+ * @author Andreas Schempp <andreas.schempp@terminal42.ch>
17
+ */
18
+ class Zip
19
+ {
20
+ /**
21
+ * Gets content of the root composer.json inside a ZIP archive.
22
+ *
23
+ * @param string $pathToZip
24
+ *
25
+ * @return string|null
26
+ */
27
+ public static function getComposerJson($pathToZip)
28
+ {
29
+ if (!extension_loaded('zip')) {
30
+ throw new \RuntimeException('The Zip Util requires PHP\'s zip extension');
31
+ }
32
+
33
+ $zip = new \ZipArchive();
34
+ if ($zip->open($pathToZip) !== true) {
35
+ return null;
36
+ }
37
+
38
+ if (0 == $zip->numFiles) {
39
+ $zip->close();
40
+
41
+ return null;
42
+ }
43
+
44
+ $foundFileIndex = self::locateFile($zip, 'composer.json');
45
+ if (false === $foundFileIndex) {
46
+ $zip->close();
47
+
48
+ return null;
49
+ }
50
+
51
+ $content = null;
52
+ $configurationFileName = $zip->getNameIndex($foundFileIndex);
53
+ $stream = $zip->getStream($configurationFileName);
54
+
55
+ if (false !== $stream) {
56
+ $content = stream_get_contents($stream);
57
+ }
58
+
59
+ $zip->close();
60
+
61
+ return $content;
62
+ }
63
+
64
+ /**
65
+ * Find a file by name, returning the one that has the shortest path.
66
+ *
67
+ * @param \ZipArchive $zip
68
+ * @param string $filename
69
+ *
70
+ * @return bool|int
71
+ */
72
+ private static function locateFile(\ZipArchive $zip, $filename)
73
+ {
74
+ $indexOfShortestMatch = false;
75
+ $lengthOfShortestMatch = -1;
76
+
77
+ for ($i = 0; $i < $zip->numFiles; $i++) {
78
+ $stat = $zip->statIndex($i);
79
+ if (strcmp(basename($stat['name']), $filename) === 0) {
80
+ $directoryName = dirname($stat['name']);
81
+ if ($directoryName === '.') {
82
+ //if composer.json is in root directory
83
+ //it has to be the one to use.
84
+ return $i;
85
+ }
86
+
87
+ if (strpos($directoryName, '\\') !== false ||
88
+ strpos($directoryName, '/') !== false) {
89
+ //composer.json files below first directory are rejected
90
+ continue;
91
+ }
92
+
93
+ $length = strlen($stat['name']);
94
+ if ($indexOfShortestMatch === false || $length < $lengthOfShortestMatch) {
95
+ //Check it's not a directory.
96
+ $contents = $zip->getFromIndex($i);
97
+ if ($contents !== false) {
98
+ $indexOfShortestMatch = $i;
99
+ $lengthOfShortestMatch = $length;
100
+ }
101
+ }
102
+ }
103
+ }
104
+
105
+ return $indexOfShortestMatch;
106
+ }
107
+ }
@@ -0,0 +1,31 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer;
14
+
15
+ use Symfony\Component\Console\Output\OutputInterface;
16
+
17
+ trigger_error('The ' . __NAMESPACE__ . '\XdebugHandler class is deprecated, use Composer\XdebugHandler\XdebugHandler instead,', E_USER_DEPRECATED);
18
+
19
+ /**
20
+ * @deprecated use Composer\XdebugHandler\XdebugHandler instead
21
+ */
22
+ class XdebugHandler extends XdebugHandler\XdebugHandler
23
+ {
24
+ const ENV_ALLOW = 'COMPOSER_ALLOW_XDEBUG';
25
+ const ENV_VERSION = 'COMPOSER_XDEBUG_VERSION';
26
+
27
+ public function __construct(OutputInterface $output)
28
+ {
29
+ parent::__construct('composer', '--ansi');
30
+ }
31
+ }
@@ -0,0 +1,24 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ function includeIfExists($file)
14
+ {
15
+ return file_exists($file) ? include $file : false;
16
+ }
17
+
18
+ if ((!$loader = includeIfExists(__DIR__.'/../vendor/autoload.php')) && (!$loader = includeIfExists(__DIR__.'/../../../autoload.php'))) {
19
+ echo 'You must set up the project dependencies using `composer install`'.PHP_EOL.
20
+ 'See https://getcomposer.org/download/ for instructions on installing Composer'.PHP_EOL;
21
+ exit(1);
22
+ }
23
+
24
+ return $loader;
@@ -0,0 +1,1860 @@
1
+ [
2
+ {
3
+ "name": "composer/ca-bundle",
4
+ "version": "1.2.7",
5
+ "version_normalized": "1.2.7.0",
6
+ "source": {
7
+ "type": "git",
8
+ "url": "https://github.com/composer/ca-bundle.git",
9
+ "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd"
10
+ },
11
+ "dist": {
12
+ "type": "zip",
13
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/95c63ab2117a72f48f5a55da9740a3273d45b7fd",
14
+ "reference": "95c63ab2117a72f48f5a55da9740a3273d45b7fd",
15
+ "shasum": ""
16
+ },
17
+ "require": {
18
+ "ext-openssl": "*",
19
+ "ext-pcre": "*",
20
+ "php": "^5.3.2 || ^7.0 || ^8.0"
21
+ },
22
+ "require-dev": {
23
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
24
+ "psr/log": "^1.0",
25
+ "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
26
+ },
27
+ "time": "2020-04-08T08:27:21+00:00",
28
+ "type": "library",
29
+ "extra": {
30
+ "branch-alias": {
31
+ "dev-master": "1.x-dev"
32
+ }
33
+ },
34
+ "installation-source": "dist",
35
+ "autoload": {
36
+ "psr-4": {
37
+ "Composer\\CaBundle\\": "src"
38
+ }
39
+ },
40
+ "notification-url": "https://packagist.org/downloads/",
41
+ "license": [
42
+ "MIT"
43
+ ],
44
+ "authors": [
45
+ {
46
+ "name": "Jordi Boggiano",
47
+ "email": "j.boggiano@seld.be",
48
+ "homepage": "http://seld.be"
49
+ }
50
+ ],
51
+ "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
52
+ "keywords": [
53
+ "cabundle",
54
+ "cacert",
55
+ "certificate",
56
+ "ssl",
57
+ "tls"
58
+ ],
59
+ "funding": [
60
+ {
61
+ "url": "https://packagist.com",
62
+ "type": "custom"
63
+ },
64
+ {
65
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
66
+ "type": "tidelift"
67
+ }
68
+ ]
69
+ },
70
+ {
71
+ "name": "composer/composer",
72
+ "version": "1.10.9",
73
+ "version_normalized": "1.10.9.0",
74
+ "source": {
75
+ "type": "git",
76
+ "url": "https://github.com/composer/composer.git",
77
+ "reference": "83c3250093d5491600a822e176b107a945baf95a"
78
+ },
79
+ "dist": {
80
+ "type": "zip",
81
+ "url": "https://api.github.com/repos/composer/composer/zipball/83c3250093d5491600a822e176b107a945baf95a",
82
+ "reference": "83c3250093d5491600a822e176b107a945baf95a",
83
+ "shasum": ""
84
+ },
85
+ "require": {
86
+ "composer/ca-bundle": "^1.0",
87
+ "composer/semver": "^1.0",
88
+ "composer/spdx-licenses": "^1.2",
89
+ "composer/xdebug-handler": "^1.1",
90
+ "justinrainbow/json-schema": "^5.2.10",
91
+ "php": "^5.3.2 || ^7.0",
92
+ "psr/log": "^1.0",
93
+ "seld/jsonlint": "^1.4",
94
+ "seld/phar-utils": "^1.0",
95
+ "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
96
+ "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
97
+ "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
98
+ "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
99
+ },
100
+ "conflict": {
101
+ "symfony/console": "2.8.38"
102
+ },
103
+ "require-dev": {
104
+ "phpspec/prophecy": "^1.10",
105
+ "symfony/phpunit-bridge": "^4.2"
106
+ },
107
+ "suggest": {
108
+ "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
109
+ "ext-zip": "Enabling the zip extension allows you to unzip archives",
110
+ "ext-zlib": "Allow gzip compression of HTTP requests"
111
+ },
112
+ "time": "2020-07-16T10:57:00+00:00",
113
+ "bin": [
114
+ "bin/composer"
115
+ ],
116
+ "type": "library",
117
+ "extra": {
118
+ "branch-alias": {
119
+ "dev-master": "1.10-dev"
120
+ }
121
+ },
122
+ "installation-source": "dist",
123
+ "autoload": {
124
+ "psr-4": {
125
+ "Composer\\": "src/Composer"
126
+ }
127
+ },
128
+ "notification-url": "https://packagist.org/downloads/",
129
+ "license": [
130
+ "MIT"
131
+ ],
132
+ "authors": [
133
+ {
134
+ "name": "Nils Adermann",
135
+ "email": "naderman@naderman.de",
136
+ "homepage": "http://www.naderman.de"
137
+ },
138
+ {
139
+ "name": "Jordi Boggiano",
140
+ "email": "j.boggiano@seld.be",
141
+ "homepage": "http://seld.be"
142
+ }
143
+ ],
144
+ "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
145
+ "homepage": "https://getcomposer.org/",
146
+ "keywords": [
147
+ "autoload",
148
+ "dependency",
149
+ "package"
150
+ ],
151
+ "funding": [
152
+ {
153
+ "url": "https://packagist.com",
154
+ "type": "custom"
155
+ },
156
+ {
157
+ "url": "https://github.com/composer",
158
+ "type": "github"
159
+ },
160
+ {
161
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
162
+ "type": "tidelift"
163
+ }
164
+ ]
165
+ },
166
+ {
167
+ "name": "composer/semver",
168
+ "version": "1.5.1",
169
+ "version_normalized": "1.5.1.0",
170
+ "source": {
171
+ "type": "git",
172
+ "url": "https://github.com/composer/semver.git",
173
+ "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
174
+ },
175
+ "dist": {
176
+ "type": "zip",
177
+ "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
178
+ "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
179
+ "shasum": ""
180
+ },
181
+ "require": {
182
+ "php": "^5.3.2 || ^7.0"
183
+ },
184
+ "require-dev": {
185
+ "phpunit/phpunit": "^4.5 || ^5.0.5"
186
+ },
187
+ "time": "2020-01-13T12:06:48+00:00",
188
+ "type": "library",
189
+ "extra": {
190
+ "branch-alias": {
191
+ "dev-master": "1.x-dev"
192
+ }
193
+ },
194
+ "installation-source": "dist",
195
+ "autoload": {
196
+ "psr-4": {
197
+ "Composer\\Semver\\": "src"
198
+ }
199
+ },
200
+ "notification-url": "https://packagist.org/downloads/",
201
+ "license": [
202
+ "MIT"
203
+ ],
204
+ "authors": [
205
+ {
206
+ "name": "Nils Adermann",
207
+ "email": "naderman@naderman.de",
208
+ "homepage": "http://www.naderman.de"
209
+ },
210
+ {
211
+ "name": "Jordi Boggiano",
212
+ "email": "j.boggiano@seld.be",
213
+ "homepage": "http://seld.be"
214
+ },
215
+ {
216
+ "name": "Rob Bast",
217
+ "email": "rob.bast@gmail.com",
218
+ "homepage": "http://robbast.nl"
219
+ }
220
+ ],
221
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
222
+ "keywords": [
223
+ "semantic",
224
+ "semver",
225
+ "validation",
226
+ "versioning"
227
+ ]
228
+ },
229
+ {
230
+ "name": "composer/spdx-licenses",
231
+ "version": "1.5.4",
232
+ "version_normalized": "1.5.4.0",
233
+ "source": {
234
+ "type": "git",
235
+ "url": "https://github.com/composer/spdx-licenses.git",
236
+ "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
237
+ },
238
+ "dist": {
239
+ "type": "zip",
240
+ "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
241
+ "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
242
+ "shasum": ""
243
+ },
244
+ "require": {
245
+ "php": "^5.3.2 || ^7.0 || ^8.0"
246
+ },
247
+ "require-dev": {
248
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
249
+ },
250
+ "time": "2020-07-15T15:35:07+00:00",
251
+ "type": "library",
252
+ "extra": {
253
+ "branch-alias": {
254
+ "dev-master": "1.x-dev"
255
+ }
256
+ },
257
+ "installation-source": "dist",
258
+ "autoload": {
259
+ "psr-4": {
260
+ "Composer\\Spdx\\": "src"
261
+ }
262
+ },
263
+ "notification-url": "https://packagist.org/downloads/",
264
+ "license": [
265
+ "MIT"
266
+ ],
267
+ "authors": [
268
+ {
269
+ "name": "Nils Adermann",
270
+ "email": "naderman@naderman.de",
271
+ "homepage": "http://www.naderman.de"
272
+ },
273
+ {
274
+ "name": "Jordi Boggiano",
275
+ "email": "j.boggiano@seld.be",
276
+ "homepage": "http://seld.be"
277
+ },
278
+ {
279
+ "name": "Rob Bast",
280
+ "email": "rob.bast@gmail.com",
281
+ "homepage": "http://robbast.nl"
282
+ }
283
+ ],
284
+ "description": "SPDX licenses list and validation library.",
285
+ "keywords": [
286
+ "license",
287
+ "spdx",
288
+ "validator"
289
+ ],
290
+ "funding": [
291
+ {
292
+ "url": "https://packagist.com",
293
+ "type": "custom"
294
+ },
295
+ {
296
+ "url": "https://github.com/composer",
297
+ "type": "github"
298
+ },
299
+ {
300
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
301
+ "type": "tidelift"
302
+ }
303
+ ]
304
+ },
305
+ {
306
+ "name": "composer/xdebug-handler",
307
+ "version": "1.4.2",
308
+ "version_normalized": "1.4.2.0",
309
+ "source": {
310
+ "type": "git",
311
+ "url": "https://github.com/composer/xdebug-handler.git",
312
+ "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51"
313
+ },
314
+ "dist": {
315
+ "type": "zip",
316
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51",
317
+ "reference": "fa2aaf99e2087f013a14f7432c1cd2dd7d8f1f51",
318
+ "shasum": ""
319
+ },
320
+ "require": {
321
+ "php": "^5.3.2 || ^7.0 || ^8.0",
322
+ "psr/log": "^1.0"
323
+ },
324
+ "require-dev": {
325
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
326
+ },
327
+ "time": "2020-06-04T11:16:35+00:00",
328
+ "type": "library",
329
+ "installation-source": "dist",
330
+ "autoload": {
331
+ "psr-4": {
332
+ "Composer\\XdebugHandler\\": "src"
333
+ }
334
+ },
335
+ "notification-url": "https://packagist.org/downloads/",
336
+ "license": [
337
+ "MIT"
338
+ ],
339
+ "authors": [
340
+ {
341
+ "name": "John Stevenson",
342
+ "email": "john-stevenson@blueyonder.co.uk"
343
+ }
344
+ ],
345
+ "description": "Restarts a process without Xdebug.",
346
+ "keywords": [
347
+ "Xdebug",
348
+ "performance"
349
+ ],
350
+ "funding": [
351
+ {
352
+ "url": "https://packagist.com",
353
+ "type": "custom"
354
+ },
355
+ {
356
+ "url": "https://github.com/composer",
357
+ "type": "github"
358
+ },
359
+ {
360
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
361
+ "type": "tidelift"
362
+ }
363
+ ]
364
+ },
365
+ {
366
+ "name": "doctrine/annotations",
367
+ "version": "1.10.3",
368
+ "version_normalized": "1.10.3.0",
369
+ "source": {
370
+ "type": "git",
371
+ "url": "https://github.com/doctrine/annotations.git",
372
+ "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d"
373
+ },
374
+ "dist": {
375
+ "type": "zip",
376
+ "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d",
377
+ "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d",
378
+ "shasum": ""
379
+ },
380
+ "require": {
381
+ "doctrine/lexer": "1.*",
382
+ "ext-tokenizer": "*",
383
+ "php": "^7.1 || ^8.0"
384
+ },
385
+ "require-dev": {
386
+ "doctrine/cache": "1.*",
387
+ "phpunit/phpunit": "^7.5"
388
+ },
389
+ "time": "2020-05-25T17:24:27+00:00",
390
+ "type": "library",
391
+ "extra": {
392
+ "branch-alias": {
393
+ "dev-master": "1.9.x-dev"
394
+ }
395
+ },
396
+ "installation-source": "dist",
397
+ "autoload": {
398
+ "psr-4": {
399
+ "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
400
+ }
401
+ },
402
+ "notification-url": "https://packagist.org/downloads/",
403
+ "license": [
404
+ "MIT"
405
+ ],
406
+ "authors": [
407
+ {
408
+ "name": "Guilherme Blanco",
409
+ "email": "guilhermeblanco@gmail.com"
410
+ },
411
+ {
412
+ "name": "Roman Borschel",
413
+ "email": "roman@code-factory.org"
414
+ },
415
+ {
416
+ "name": "Benjamin Eberlei",
417
+ "email": "kontakt@beberlei.de"
418
+ },
419
+ {
420
+ "name": "Jonathan Wage",
421
+ "email": "jonwage@gmail.com"
422
+ },
423
+ {
424
+ "name": "Johannes Schmitt",
425
+ "email": "schmittjoh@gmail.com"
426
+ }
427
+ ],
428
+ "description": "Docblock Annotations Parser",
429
+ "homepage": "http://www.doctrine-project.org",
430
+ "keywords": [
431
+ "annotations",
432
+ "docblock",
433
+ "parser"
434
+ ]
435
+ },
436
+ {
437
+ "name": "doctrine/lexer",
438
+ "version": "1.0.2",
439
+ "version_normalized": "1.0.2.0",
440
+ "source": {
441
+ "type": "git",
442
+ "url": "https://github.com/doctrine/lexer.git",
443
+ "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
444
+ },
445
+ "dist": {
446
+ "type": "zip",
447
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
448
+ "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
449
+ "shasum": ""
450
+ },
451
+ "require": {
452
+ "php": ">=5.3.2"
453
+ },
454
+ "require-dev": {
455
+ "phpunit/phpunit": "^4.5"
456
+ },
457
+ "time": "2019-06-08T11:03:04+00:00",
458
+ "type": "library",
459
+ "extra": {
460
+ "branch-alias": {
461
+ "dev-master": "1.0.x-dev"
462
+ }
463
+ },
464
+ "installation-source": "dist",
465
+ "autoload": {
466
+ "psr-4": {
467
+ "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
468
+ }
469
+ },
470
+ "notification-url": "https://packagist.org/downloads/",
471
+ "license": [
472
+ "MIT"
473
+ ],
474
+ "authors": [
475
+ {
476
+ "name": "Roman Borschel",
477
+ "email": "roman@code-factory.org"
478
+ },
479
+ {
480
+ "name": "Guilherme Blanco",
481
+ "email": "guilhermeblanco@gmail.com"
482
+ },
483
+ {
484
+ "name": "Johannes Schmitt",
485
+ "email": "schmittjoh@gmail.com"
486
+ }
487
+ ],
488
+ "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
489
+ "homepage": "https://www.doctrine-project.org/projects/lexer.html",
490
+ "keywords": [
491
+ "annotations",
492
+ "docblock",
493
+ "lexer",
494
+ "parser",
495
+ "php"
496
+ ]
497
+ },
498
+ {
499
+ "name": "friendsofphp/php-cs-fixer",
500
+ "version": "v2.16.4",
501
+ "version_normalized": "2.16.4.0",
502
+ "source": {
503
+ "type": "git",
504
+ "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
505
+ "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13"
506
+ },
507
+ "dist": {
508
+ "type": "zip",
509
+ "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/1023c3458137ab052f6ff1e09621a721bfdeca13",
510
+ "reference": "1023c3458137ab052f6ff1e09621a721bfdeca13",
511
+ "shasum": ""
512
+ },
513
+ "require": {
514
+ "composer/semver": "^1.4",
515
+ "composer/xdebug-handler": "^1.2",
516
+ "doctrine/annotations": "^1.2",
517
+ "ext-json": "*",
518
+ "ext-tokenizer": "*",
519
+ "php": "^5.6 || ^7.0",
520
+ "php-cs-fixer/diff": "^1.3",
521
+ "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
522
+ "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
523
+ "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
524
+ "symfony/finder": "^3.0 || ^4.0 || ^5.0",
525
+ "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
526
+ "symfony/polyfill-php70": "^1.0",
527
+ "symfony/polyfill-php72": "^1.4",
528
+ "symfony/process": "^3.0 || ^4.0 || ^5.0",
529
+ "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
530
+ },
531
+ "require-dev": {
532
+ "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
533
+ "justinrainbow/json-schema": "^5.0",
534
+ "keradus/cli-executor": "^1.2",
535
+ "mikey179/vfsstream": "^1.6",
536
+ "php-coveralls/php-coveralls": "^2.1",
537
+ "php-cs-fixer/accessible-object": "^1.0",
538
+ "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1",
539
+ "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1",
540
+ "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
541
+ "phpunitgoodpractices/traits": "^1.8",
542
+ "symfony/phpunit-bridge": "^5.1",
543
+ "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
544
+ },
545
+ "suggest": {
546
+ "ext-dom": "For handling output formats in XML",
547
+ "ext-mbstring": "For handling non-UTF8 characters.",
548
+ "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
549
+ "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
550
+ "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
551
+ },
552
+ "time": "2020-06-27T23:57:46+00:00",
553
+ "bin": [
554
+ "php-cs-fixer"
555
+ ],
556
+ "type": "application",
557
+ "installation-source": "dist",
558
+ "autoload": {
559
+ "psr-4": {
560
+ "PhpCsFixer\\": "src/"
561
+ },
562
+ "classmap": [
563
+ "tests/Test/AbstractFixerTestCase.php",
564
+ "tests/Test/AbstractIntegrationCaseFactory.php",
565
+ "tests/Test/AbstractIntegrationTestCase.php",
566
+ "tests/Test/Assert/AssertTokensTrait.php",
567
+ "tests/Test/IntegrationCase.php",
568
+ "tests/Test/IntegrationCaseFactory.php",
569
+ "tests/Test/IntegrationCaseFactoryInterface.php",
570
+ "tests/Test/InternalIntegrationCaseFactory.php",
571
+ "tests/Test/IsIdenticalConstraint.php",
572
+ "tests/TestCase.php"
573
+ ]
574
+ },
575
+ "notification-url": "https://packagist.org/downloads/",
576
+ "license": [
577
+ "MIT"
578
+ ],
579
+ "authors": [
580
+ {
581
+ "name": "Fabien Potencier",
582
+ "email": "fabien@symfony.com"
583
+ },
584
+ {
585
+ "name": "Dariusz Rumiński",
586
+ "email": "dariusz.ruminski@gmail.com"
587
+ }
588
+ ],
589
+ "description": "A tool to automatically fix PHP code style",
590
+ "funding": [
591
+ {
592
+ "url": "https://github.com/keradus",
593
+ "type": "github"
594
+ }
595
+ ]
596
+ },
597
+ {
598
+ "name": "justinrainbow/json-schema",
599
+ "version": "5.2.10",
600
+ "version_normalized": "5.2.10.0",
601
+ "source": {
602
+ "type": "git",
603
+ "url": "https://github.com/justinrainbow/json-schema.git",
604
+ "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
605
+ },
606
+ "dist": {
607
+ "type": "zip",
608
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
609
+ "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
610
+ "shasum": ""
611
+ },
612
+ "require": {
613
+ "php": ">=5.3.3"
614
+ },
615
+ "require-dev": {
616
+ "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
617
+ "json-schema/json-schema-test-suite": "1.2.0",
618
+ "phpunit/phpunit": "^4.8.35"
619
+ },
620
+ "time": "2020-05-27T16:41:55+00:00",
621
+ "bin": [
622
+ "bin/validate-json"
623
+ ],
624
+ "type": "library",
625
+ "extra": {
626
+ "branch-alias": {
627
+ "dev-master": "5.0.x-dev"
628
+ }
629
+ },
630
+ "installation-source": "dist",
631
+ "autoload": {
632
+ "psr-4": {
633
+ "JsonSchema\\": "src/JsonSchema/"
634
+ }
635
+ },
636
+ "notification-url": "https://packagist.org/downloads/",
637
+ "license": [
638
+ "MIT"
639
+ ],
640
+ "authors": [
641
+ {
642
+ "name": "Bruno Prieto Reis",
643
+ "email": "bruno.p.reis@gmail.com"
644
+ },
645
+ {
646
+ "name": "Justin Rainbow",
647
+ "email": "justin.rainbow@gmail.com"
648
+ },
649
+ {
650
+ "name": "Igor Wiedler",
651
+ "email": "igor@wiedler.ch"
652
+ },
653
+ {
654
+ "name": "Robert Schönthal",
655
+ "email": "seroscho@googlemail.com"
656
+ }
657
+ ],
658
+ "description": "A library to validate a json schema.",
659
+ "homepage": "https://github.com/justinrainbow/json-schema",
660
+ "keywords": [
661
+ "json",
662
+ "schema"
663
+ ]
664
+ },
665
+ {
666
+ "name": "paragonie/random_compat",
667
+ "version": "v9.99.99",
668
+ "version_normalized": "9.99.99.0",
669
+ "source": {
670
+ "type": "git",
671
+ "url": "https://github.com/paragonie/random_compat.git",
672
+ "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
673
+ },
674
+ "dist": {
675
+ "type": "zip",
676
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
677
+ "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
678
+ "shasum": ""
679
+ },
680
+ "require": {
681
+ "php": "^7"
682
+ },
683
+ "require-dev": {
684
+ "phpunit/phpunit": "4.*|5.*",
685
+ "vimeo/psalm": "^1"
686
+ },
687
+ "suggest": {
688
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
689
+ },
690
+ "time": "2018-07-02T15:55:56+00:00",
691
+ "type": "library",
692
+ "installation-source": "dist",
693
+ "notification-url": "https://packagist.org/downloads/",
694
+ "license": [
695
+ "MIT"
696
+ ],
697
+ "authors": [
698
+ {
699
+ "name": "Paragon Initiative Enterprises",
700
+ "email": "security@paragonie.com",
701
+ "homepage": "https://paragonie.com"
702
+ }
703
+ ],
704
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
705
+ "keywords": [
706
+ "csprng",
707
+ "polyfill",
708
+ "pseudorandom",
709
+ "random"
710
+ ]
711
+ },
712
+ {
713
+ "name": "php-cs-fixer/diff",
714
+ "version": "v1.3.0",
715
+ "version_normalized": "1.3.0.0",
716
+ "source": {
717
+ "type": "git",
718
+ "url": "https://github.com/PHP-CS-Fixer/diff.git",
719
+ "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756"
720
+ },
721
+ "dist": {
722
+ "type": "zip",
723
+ "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756",
724
+ "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756",
725
+ "shasum": ""
726
+ },
727
+ "require": {
728
+ "php": "^5.6 || ^7.0"
729
+ },
730
+ "require-dev": {
731
+ "phpunit/phpunit": "^5.7.23 || ^6.4.3",
732
+ "symfony/process": "^3.3"
733
+ },
734
+ "time": "2018-02-15T16:58:55+00:00",
735
+ "type": "library",
736
+ "installation-source": "dist",
737
+ "autoload": {
738
+ "classmap": [
739
+ "src/"
740
+ ]
741
+ },
742
+ "notification-url": "https://packagist.org/downloads/",
743
+ "license": [
744
+ "BSD-3-Clause"
745
+ ],
746
+ "authors": [
747
+ {
748
+ "name": "Kore Nordmann",
749
+ "email": "mail@kore-nordmann.de"
750
+ },
751
+ {
752
+ "name": "Sebastian Bergmann",
753
+ "email": "sebastian@phpunit.de"
754
+ },
755
+ {
756
+ "name": "SpacePossum"
757
+ }
758
+ ],
759
+ "description": "sebastian/diff v2 backport support for PHP5.6",
760
+ "homepage": "https://github.com/PHP-CS-Fixer",
761
+ "keywords": [
762
+ "diff"
763
+ ]
764
+ },
765
+ {
766
+ "name": "phpstan/phpstan",
767
+ "version": "0.12.34",
768
+ "version_normalized": "0.12.34.0",
769
+ "source": {
770
+ "type": "git",
771
+ "url": "https://github.com/phpstan/phpstan.git",
772
+ "reference": "ad75388d71fb0b4a954f71a852fd989915a51cb7"
773
+ },
774
+ "dist": {
775
+ "type": "zip",
776
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ad75388d71fb0b4a954f71a852fd989915a51cb7",
777
+ "reference": "ad75388d71fb0b4a954f71a852fd989915a51cb7",
778
+ "shasum": ""
779
+ },
780
+ "require": {
781
+ "php": "^7.1|^8.0"
782
+ },
783
+ "conflict": {
784
+ "phpstan/phpstan-shim": "*"
785
+ },
786
+ "time": "2020-07-30T15:31:10+00:00",
787
+ "bin": [
788
+ "phpstan",
789
+ "phpstan.phar"
790
+ ],
791
+ "type": "library",
792
+ "extra": {
793
+ "branch-alias": {
794
+ "dev-master": "0.12-dev"
795
+ }
796
+ },
797
+ "installation-source": "dist",
798
+ "autoload": {
799
+ "files": [
800
+ "bootstrap.php"
801
+ ]
802
+ },
803
+ "notification-url": "https://packagist.org/downloads/",
804
+ "license": [
805
+ "MIT"
806
+ ],
807
+ "description": "PHPStan - PHP Static Analysis Tool",
808
+ "funding": [
809
+ {
810
+ "url": "https://github.com/ondrejmirtes",
811
+ "type": "github"
812
+ },
813
+ {
814
+ "url": "https://www.patreon.com/phpstan",
815
+ "type": "patreon"
816
+ },
817
+ {
818
+ "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
819
+ "type": "tidelift"
820
+ }
821
+ ]
822
+ },
823
+ {
824
+ "name": "psr/log",
825
+ "version": "1.1.3",
826
+ "version_normalized": "1.1.3.0",
827
+ "source": {
828
+ "type": "git",
829
+ "url": "https://github.com/php-fig/log.git",
830
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
831
+ },
832
+ "dist": {
833
+ "type": "zip",
834
+ "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
835
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
836
+ "shasum": ""
837
+ },
838
+ "require": {
839
+ "php": ">=5.3.0"
840
+ },
841
+ "time": "2020-03-23T09:12:05+00:00",
842
+ "type": "library",
843
+ "extra": {
844
+ "branch-alias": {
845
+ "dev-master": "1.1.x-dev"
846
+ }
847
+ },
848
+ "installation-source": "dist",
849
+ "autoload": {
850
+ "psr-4": {
851
+ "Psr\\Log\\": "Psr/Log/"
852
+ }
853
+ },
854
+ "notification-url": "https://packagist.org/downloads/",
855
+ "license": [
856
+ "MIT"
857
+ ],
858
+ "authors": [
859
+ {
860
+ "name": "PHP-FIG",
861
+ "homepage": "http://www.php-fig.org/"
862
+ }
863
+ ],
864
+ "description": "Common interface for logging libraries",
865
+ "homepage": "https://github.com/php-fig/log",
866
+ "keywords": [
867
+ "log",
868
+ "psr",
869
+ "psr-3"
870
+ ]
871
+ },
872
+ {
873
+ "name": "seld/jsonlint",
874
+ "version": "1.8.0",
875
+ "version_normalized": "1.8.0.0",
876
+ "source": {
877
+ "type": "git",
878
+ "url": "https://github.com/Seldaek/jsonlint.git",
879
+ "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1"
880
+ },
881
+ "dist": {
882
+ "type": "zip",
883
+ "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1",
884
+ "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1",
885
+ "shasum": ""
886
+ },
887
+ "require": {
888
+ "php": "^5.3 || ^7.0 || ^8.0"
889
+ },
890
+ "require-dev": {
891
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
892
+ },
893
+ "time": "2020-04-30T19:05:18+00:00",
894
+ "bin": [
895
+ "bin/jsonlint"
896
+ ],
897
+ "type": "library",
898
+ "installation-source": "dist",
899
+ "autoload": {
900
+ "psr-4": {
901
+ "Seld\\JsonLint\\": "src/Seld/JsonLint/"
902
+ }
903
+ },
904
+ "notification-url": "https://packagist.org/downloads/",
905
+ "license": [
906
+ "MIT"
907
+ ],
908
+ "authors": [
909
+ {
910
+ "name": "Jordi Boggiano",
911
+ "email": "j.boggiano@seld.be",
912
+ "homepage": "http://seld.be"
913
+ }
914
+ ],
915
+ "description": "JSON Linter",
916
+ "keywords": [
917
+ "json",
918
+ "linter",
919
+ "parser",
920
+ "validator"
921
+ ],
922
+ "funding": [
923
+ {
924
+ "url": "https://github.com/Seldaek",
925
+ "type": "github"
926
+ },
927
+ {
928
+ "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
929
+ "type": "tidelift"
930
+ }
931
+ ]
932
+ },
933
+ {
934
+ "name": "seld/phar-utils",
935
+ "version": "1.1.1",
936
+ "version_normalized": "1.1.1.0",
937
+ "source": {
938
+ "type": "git",
939
+ "url": "https://github.com/Seldaek/phar-utils.git",
940
+ "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
941
+ },
942
+ "dist": {
943
+ "type": "zip",
944
+ "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
945
+ "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
946
+ "shasum": ""
947
+ },
948
+ "require": {
949
+ "php": ">=5.3"
950
+ },
951
+ "time": "2020-07-07T18:42:57+00:00",
952
+ "type": "library",
953
+ "extra": {
954
+ "branch-alias": {
955
+ "dev-master": "1.x-dev"
956
+ }
957
+ },
958
+ "installation-source": "dist",
959
+ "autoload": {
960
+ "psr-4": {
961
+ "Seld\\PharUtils\\": "src/"
962
+ }
963
+ },
964
+ "notification-url": "https://packagist.org/downloads/",
965
+ "license": [
966
+ "MIT"
967
+ ],
968
+ "authors": [
969
+ {
970
+ "name": "Jordi Boggiano",
971
+ "email": "j.boggiano@seld.be"
972
+ }
973
+ ],
974
+ "description": "PHAR file format utilities, for when PHP phars you up",
975
+ "keywords": [
976
+ "phar"
977
+ ]
978
+ },
979
+ {
980
+ "name": "symfony/console",
981
+ "version": "v3.4.42",
982
+ "version_normalized": "3.4.42.0",
983
+ "source": {
984
+ "type": "git",
985
+ "url": "https://github.com/symfony/console.git",
986
+ "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
987
+ },
988
+ "dist": {
989
+ "type": "zip",
990
+ "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
991
+ "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
992
+ "shasum": ""
993
+ },
994
+ "require": {
995
+ "php": "^5.5.9|>=7.0.8",
996
+ "symfony/debug": "~2.8|~3.0|~4.0",
997
+ "symfony/polyfill-mbstring": "~1.0"
998
+ },
999
+ "conflict": {
1000
+ "symfony/dependency-injection": "<3.4",
1001
+ "symfony/process": "<3.3"
1002
+ },
1003
+ "provide": {
1004
+ "psr/log-implementation": "1.0"
1005
+ },
1006
+ "require-dev": {
1007
+ "psr/log": "~1.0",
1008
+ "symfony/config": "~3.3|~4.0",
1009
+ "symfony/dependency-injection": "~3.4|~4.0",
1010
+ "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
1011
+ "symfony/lock": "~3.4|~4.0",
1012
+ "symfony/process": "~3.3|~4.0"
1013
+ },
1014
+ "suggest": {
1015
+ "psr/log": "For using the console logger",
1016
+ "symfony/event-dispatcher": "",
1017
+ "symfony/lock": "",
1018
+ "symfony/process": ""
1019
+ },
1020
+ "time": "2020-05-30T18:58:05+00:00",
1021
+ "type": "library",
1022
+ "extra": {
1023
+ "branch-alias": {
1024
+ "dev-master": "3.4-dev"
1025
+ }
1026
+ },
1027
+ "installation-source": "dist",
1028
+ "autoload": {
1029
+ "psr-4": {
1030
+ "Symfony\\Component\\Console\\": ""
1031
+ },
1032
+ "exclude-from-classmap": [
1033
+ "/Tests/"
1034
+ ]
1035
+ },
1036
+ "notification-url": "https://packagist.org/downloads/",
1037
+ "license": [
1038
+ "MIT"
1039
+ ],
1040
+ "authors": [
1041
+ {
1042
+ "name": "Fabien Potencier",
1043
+ "email": "fabien@symfony.com"
1044
+ },
1045
+ {
1046
+ "name": "Symfony Community",
1047
+ "homepage": "https://symfony.com/contributors"
1048
+ }
1049
+ ],
1050
+ "description": "Symfony Console Component",
1051
+ "homepage": "https://symfony.com",
1052
+ "funding": [
1053
+ {
1054
+ "url": "https://symfony.com/sponsor",
1055
+ "type": "custom"
1056
+ },
1057
+ {
1058
+ "url": "https://github.com/fabpot",
1059
+ "type": "github"
1060
+ },
1061
+ {
1062
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1063
+ "type": "tidelift"
1064
+ }
1065
+ ]
1066
+ },
1067
+ {
1068
+ "name": "symfony/debug",
1069
+ "version": "v3.4.42",
1070
+ "version_normalized": "3.4.42.0",
1071
+ "source": {
1072
+ "type": "git",
1073
+ "url": "https://github.com/symfony/debug.git",
1074
+ "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
1075
+ },
1076
+ "dist": {
1077
+ "type": "zip",
1078
+ "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
1079
+ "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
1080
+ "shasum": ""
1081
+ },
1082
+ "require": {
1083
+ "php": "^5.5.9|>=7.0.8",
1084
+ "psr/log": "~1.0"
1085
+ },
1086
+ "conflict": {
1087
+ "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
1088
+ },
1089
+ "require-dev": {
1090
+ "symfony/http-kernel": "~2.8|~3.0|~4.0"
1091
+ },
1092
+ "time": "2020-05-22T18:25:20+00:00",
1093
+ "type": "library",
1094
+ "extra": {
1095
+ "branch-alias": {
1096
+ "dev-master": "3.4-dev"
1097
+ }
1098
+ },
1099
+ "installation-source": "dist",
1100
+ "autoload": {
1101
+ "psr-4": {
1102
+ "Symfony\\Component\\Debug\\": ""
1103
+ },
1104
+ "exclude-from-classmap": [
1105
+ "/Tests/"
1106
+ ]
1107
+ },
1108
+ "notification-url": "https://packagist.org/downloads/",
1109
+ "license": [
1110
+ "MIT"
1111
+ ],
1112
+ "authors": [
1113
+ {
1114
+ "name": "Fabien Potencier",
1115
+ "email": "fabien@symfony.com"
1116
+ },
1117
+ {
1118
+ "name": "Symfony Community",
1119
+ "homepage": "https://symfony.com/contributors"
1120
+ }
1121
+ ],
1122
+ "description": "Symfony Debug Component",
1123
+ "homepage": "https://symfony.com",
1124
+ "funding": [
1125
+ {
1126
+ "url": "https://symfony.com/sponsor",
1127
+ "type": "custom"
1128
+ },
1129
+ {
1130
+ "url": "https://github.com/fabpot",
1131
+ "type": "github"
1132
+ },
1133
+ {
1134
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1135
+ "type": "tidelift"
1136
+ }
1137
+ ]
1138
+ },
1139
+ {
1140
+ "name": "symfony/event-dispatcher",
1141
+ "version": "v3.4.42",
1142
+ "version_normalized": "3.4.42.0",
1143
+ "source": {
1144
+ "type": "git",
1145
+ "url": "https://github.com/symfony/event-dispatcher.git",
1146
+ "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
1147
+ },
1148
+ "dist": {
1149
+ "type": "zip",
1150
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
1151
+ "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
1152
+ "shasum": ""
1153
+ },
1154
+ "require": {
1155
+ "php": "^5.5.9|>=7.0.8"
1156
+ },
1157
+ "conflict": {
1158
+ "symfony/dependency-injection": "<3.3"
1159
+ },
1160
+ "require-dev": {
1161
+ "psr/log": "~1.0",
1162
+ "symfony/config": "~2.8|~3.0|~4.0",
1163
+ "symfony/dependency-injection": "~3.3|~4.0",
1164
+ "symfony/expression-language": "~2.8|~3.0|~4.0",
1165
+ "symfony/stopwatch": "~2.8|~3.0|~4.0"
1166
+ },
1167
+ "suggest": {
1168
+ "symfony/dependency-injection": "",
1169
+ "symfony/http-kernel": ""
1170
+ },
1171
+ "time": "2020-05-05T15:06:23+00:00",
1172
+ "type": "library",
1173
+ "extra": {
1174
+ "branch-alias": {
1175
+ "dev-master": "3.4-dev"
1176
+ }
1177
+ },
1178
+ "installation-source": "dist",
1179
+ "autoload": {
1180
+ "psr-4": {
1181
+ "Symfony\\Component\\EventDispatcher\\": ""
1182
+ },
1183
+ "exclude-from-classmap": [
1184
+ "/Tests/"
1185
+ ]
1186
+ },
1187
+ "notification-url": "https://packagist.org/downloads/",
1188
+ "license": [
1189
+ "MIT"
1190
+ ],
1191
+ "authors": [
1192
+ {
1193
+ "name": "Fabien Potencier",
1194
+ "email": "fabien@symfony.com"
1195
+ },
1196
+ {
1197
+ "name": "Symfony Community",
1198
+ "homepage": "https://symfony.com/contributors"
1199
+ }
1200
+ ],
1201
+ "description": "Symfony EventDispatcher Component",
1202
+ "homepage": "https://symfony.com",
1203
+ "funding": [
1204
+ {
1205
+ "url": "https://symfony.com/sponsor",
1206
+ "type": "custom"
1207
+ },
1208
+ {
1209
+ "url": "https://github.com/fabpot",
1210
+ "type": "github"
1211
+ },
1212
+ {
1213
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1214
+ "type": "tidelift"
1215
+ }
1216
+ ]
1217
+ },
1218
+ {
1219
+ "name": "symfony/filesystem",
1220
+ "version": "v3.4.42",
1221
+ "version_normalized": "3.4.42.0",
1222
+ "source": {
1223
+ "type": "git",
1224
+ "url": "https://github.com/symfony/filesystem.git",
1225
+ "reference": "0f625d0cb1e59c8c4ba61abb170125175218ff10"
1226
+ },
1227
+ "dist": {
1228
+ "type": "zip",
1229
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/0f625d0cb1e59c8c4ba61abb170125175218ff10",
1230
+ "reference": "0f625d0cb1e59c8c4ba61abb170125175218ff10",
1231
+ "shasum": ""
1232
+ },
1233
+ "require": {
1234
+ "php": "^5.5.9|>=7.0.8",
1235
+ "symfony/polyfill-ctype": "~1.8"
1236
+ },
1237
+ "time": "2020-05-30T17:48:24+00:00",
1238
+ "type": "library",
1239
+ "extra": {
1240
+ "branch-alias": {
1241
+ "dev-master": "3.4-dev"
1242
+ }
1243
+ },
1244
+ "installation-source": "dist",
1245
+ "autoload": {
1246
+ "psr-4": {
1247
+ "Symfony\\Component\\Filesystem\\": ""
1248
+ },
1249
+ "exclude-from-classmap": [
1250
+ "/Tests/"
1251
+ ]
1252
+ },
1253
+ "notification-url": "https://packagist.org/downloads/",
1254
+ "license": [
1255
+ "MIT"
1256
+ ],
1257
+ "authors": [
1258
+ {
1259
+ "name": "Fabien Potencier",
1260
+ "email": "fabien@symfony.com"
1261
+ },
1262
+ {
1263
+ "name": "Symfony Community",
1264
+ "homepage": "https://symfony.com/contributors"
1265
+ }
1266
+ ],
1267
+ "description": "Symfony Filesystem Component",
1268
+ "homepage": "https://symfony.com",
1269
+ "funding": [
1270
+ {
1271
+ "url": "https://symfony.com/sponsor",
1272
+ "type": "custom"
1273
+ },
1274
+ {
1275
+ "url": "https://github.com/fabpot",
1276
+ "type": "github"
1277
+ },
1278
+ {
1279
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1280
+ "type": "tidelift"
1281
+ }
1282
+ ]
1283
+ },
1284
+ {
1285
+ "name": "symfony/finder",
1286
+ "version": "v3.4.42",
1287
+ "version_normalized": "3.4.42.0",
1288
+ "source": {
1289
+ "type": "git",
1290
+ "url": "https://github.com/symfony/finder.git",
1291
+ "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200"
1292
+ },
1293
+ "dist": {
1294
+ "type": "zip",
1295
+ "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200",
1296
+ "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200",
1297
+ "shasum": ""
1298
+ },
1299
+ "require": {
1300
+ "php": "^5.5.9|>=7.0.8"
1301
+ },
1302
+ "time": "2020-02-14T07:34:21+00:00",
1303
+ "type": "library",
1304
+ "extra": {
1305
+ "branch-alias": {
1306
+ "dev-master": "3.4-dev"
1307
+ }
1308
+ },
1309
+ "installation-source": "dist",
1310
+ "autoload": {
1311
+ "psr-4": {
1312
+ "Symfony\\Component\\Finder\\": ""
1313
+ },
1314
+ "exclude-from-classmap": [
1315
+ "/Tests/"
1316
+ ]
1317
+ },
1318
+ "notification-url": "https://packagist.org/downloads/",
1319
+ "license": [
1320
+ "MIT"
1321
+ ],
1322
+ "authors": [
1323
+ {
1324
+ "name": "Fabien Potencier",
1325
+ "email": "fabien@symfony.com"
1326
+ },
1327
+ {
1328
+ "name": "Symfony Community",
1329
+ "homepage": "https://symfony.com/contributors"
1330
+ }
1331
+ ],
1332
+ "description": "Symfony Finder Component",
1333
+ "homepage": "https://symfony.com",
1334
+ "funding": [
1335
+ {
1336
+ "url": "https://symfony.com/sponsor",
1337
+ "type": "custom"
1338
+ },
1339
+ {
1340
+ "url": "https://github.com/fabpot",
1341
+ "type": "github"
1342
+ },
1343
+ {
1344
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1345
+ "type": "tidelift"
1346
+ }
1347
+ ]
1348
+ },
1349
+ {
1350
+ "name": "symfony/options-resolver",
1351
+ "version": "v3.4.42",
1352
+ "version_normalized": "3.4.42.0",
1353
+ "source": {
1354
+ "type": "git",
1355
+ "url": "https://github.com/symfony/options-resolver.git",
1356
+ "reference": "3b9fe6db7fe3694307d182dd73983584af77d5fd"
1357
+ },
1358
+ "dist": {
1359
+ "type": "zip",
1360
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/3b9fe6db7fe3694307d182dd73983584af77d5fd",
1361
+ "reference": "3b9fe6db7fe3694307d182dd73983584af77d5fd",
1362
+ "shasum": ""
1363
+ },
1364
+ "require": {
1365
+ "php": "^5.5.9|>=7.0.8"
1366
+ },
1367
+ "time": "2020-05-21T13:02:25+00:00",
1368
+ "type": "library",
1369
+ "extra": {
1370
+ "branch-alias": {
1371
+ "dev-master": "3.4-dev"
1372
+ }
1373
+ },
1374
+ "installation-source": "dist",
1375
+ "autoload": {
1376
+ "psr-4": {
1377
+ "Symfony\\Component\\OptionsResolver\\": ""
1378
+ },
1379
+ "exclude-from-classmap": [
1380
+ "/Tests/"
1381
+ ]
1382
+ },
1383
+ "notification-url": "https://packagist.org/downloads/",
1384
+ "license": [
1385
+ "MIT"
1386
+ ],
1387
+ "authors": [
1388
+ {
1389
+ "name": "Fabien Potencier",
1390
+ "email": "fabien@symfony.com"
1391
+ },
1392
+ {
1393
+ "name": "Symfony Community",
1394
+ "homepage": "https://symfony.com/contributors"
1395
+ }
1396
+ ],
1397
+ "description": "Symfony OptionsResolver Component",
1398
+ "homepage": "https://symfony.com",
1399
+ "keywords": [
1400
+ "config",
1401
+ "configuration",
1402
+ "options"
1403
+ ],
1404
+ "funding": [
1405
+ {
1406
+ "url": "https://symfony.com/sponsor",
1407
+ "type": "custom"
1408
+ },
1409
+ {
1410
+ "url": "https://github.com/fabpot",
1411
+ "type": "github"
1412
+ },
1413
+ {
1414
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1415
+ "type": "tidelift"
1416
+ }
1417
+ ]
1418
+ },
1419
+ {
1420
+ "name": "symfony/polyfill-ctype",
1421
+ "version": "v1.18.0",
1422
+ "version_normalized": "1.18.0.0",
1423
+ "source": {
1424
+ "type": "git",
1425
+ "url": "https://github.com/symfony/polyfill-ctype.git",
1426
+ "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
1427
+ },
1428
+ "dist": {
1429
+ "type": "zip",
1430
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
1431
+ "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
1432
+ "shasum": ""
1433
+ },
1434
+ "require": {
1435
+ "php": ">=5.3.3"
1436
+ },
1437
+ "suggest": {
1438
+ "ext-ctype": "For best performance"
1439
+ },
1440
+ "time": "2020-07-14T12:35:20+00:00",
1441
+ "type": "library",
1442
+ "extra": {
1443
+ "branch-alias": {
1444
+ "dev-master": "1.18-dev"
1445
+ },
1446
+ "thanks": {
1447
+ "name": "symfony/polyfill",
1448
+ "url": "https://github.com/symfony/polyfill"
1449
+ }
1450
+ },
1451
+ "installation-source": "dist",
1452
+ "autoload": {
1453
+ "psr-4": {
1454
+ "Symfony\\Polyfill\\Ctype\\": ""
1455
+ },
1456
+ "files": [
1457
+ "bootstrap.php"
1458
+ ]
1459
+ },
1460
+ "notification-url": "https://packagist.org/downloads/",
1461
+ "license": [
1462
+ "MIT"
1463
+ ],
1464
+ "authors": [
1465
+ {
1466
+ "name": "Gert de Pagter",
1467
+ "email": "BackEndTea@gmail.com"
1468
+ },
1469
+ {
1470
+ "name": "Symfony Community",
1471
+ "homepage": "https://symfony.com/contributors"
1472
+ }
1473
+ ],
1474
+ "description": "Symfony polyfill for ctype functions",
1475
+ "homepage": "https://symfony.com",
1476
+ "keywords": [
1477
+ "compatibility",
1478
+ "ctype",
1479
+ "polyfill",
1480
+ "portable"
1481
+ ],
1482
+ "funding": [
1483
+ {
1484
+ "url": "https://symfony.com/sponsor",
1485
+ "type": "custom"
1486
+ },
1487
+ {
1488
+ "url": "https://github.com/fabpot",
1489
+ "type": "github"
1490
+ },
1491
+ {
1492
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1493
+ "type": "tidelift"
1494
+ }
1495
+ ]
1496
+ },
1497
+ {
1498
+ "name": "symfony/polyfill-mbstring",
1499
+ "version": "v1.18.0",
1500
+ "version_normalized": "1.18.0.0",
1501
+ "source": {
1502
+ "type": "git",
1503
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
1504
+ "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
1505
+ },
1506
+ "dist": {
1507
+ "type": "zip",
1508
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
1509
+ "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
1510
+ "shasum": ""
1511
+ },
1512
+ "require": {
1513
+ "php": ">=5.3.3"
1514
+ },
1515
+ "suggest": {
1516
+ "ext-mbstring": "For best performance"
1517
+ },
1518
+ "time": "2020-07-14T12:35:20+00:00",
1519
+ "type": "library",
1520
+ "extra": {
1521
+ "branch-alias": {
1522
+ "dev-master": "1.18-dev"
1523
+ },
1524
+ "thanks": {
1525
+ "name": "symfony/polyfill",
1526
+ "url": "https://github.com/symfony/polyfill"
1527
+ }
1528
+ },
1529
+ "installation-source": "dist",
1530
+ "autoload": {
1531
+ "psr-4": {
1532
+ "Symfony\\Polyfill\\Mbstring\\": ""
1533
+ },
1534
+ "files": [
1535
+ "bootstrap.php"
1536
+ ]
1537
+ },
1538
+ "notification-url": "https://packagist.org/downloads/",
1539
+ "license": [
1540
+ "MIT"
1541
+ ],
1542
+ "authors": [
1543
+ {
1544
+ "name": "Nicolas Grekas",
1545
+ "email": "p@tchwork.com"
1546
+ },
1547
+ {
1548
+ "name": "Symfony Community",
1549
+ "homepage": "https://symfony.com/contributors"
1550
+ }
1551
+ ],
1552
+ "description": "Symfony polyfill for the Mbstring extension",
1553
+ "homepage": "https://symfony.com",
1554
+ "keywords": [
1555
+ "compatibility",
1556
+ "mbstring",
1557
+ "polyfill",
1558
+ "portable",
1559
+ "shim"
1560
+ ],
1561
+ "funding": [
1562
+ {
1563
+ "url": "https://symfony.com/sponsor",
1564
+ "type": "custom"
1565
+ },
1566
+ {
1567
+ "url": "https://github.com/fabpot",
1568
+ "type": "github"
1569
+ },
1570
+ {
1571
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1572
+ "type": "tidelift"
1573
+ }
1574
+ ]
1575
+ },
1576
+ {
1577
+ "name": "symfony/polyfill-php70",
1578
+ "version": "v1.18.0",
1579
+ "version_normalized": "1.18.0.0",
1580
+ "source": {
1581
+ "type": "git",
1582
+ "url": "https://github.com/symfony/polyfill-php70.git",
1583
+ "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
1584
+ },
1585
+ "dist": {
1586
+ "type": "zip",
1587
+ "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
1588
+ "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
1589
+ "shasum": ""
1590
+ },
1591
+ "require": {
1592
+ "paragonie/random_compat": "~1.0|~2.0|~9.99",
1593
+ "php": ">=5.3.3"
1594
+ },
1595
+ "time": "2020-07-14T12:35:20+00:00",
1596
+ "type": "library",
1597
+ "extra": {
1598
+ "branch-alias": {
1599
+ "dev-master": "1.18-dev"
1600
+ },
1601
+ "thanks": {
1602
+ "name": "symfony/polyfill",
1603
+ "url": "https://github.com/symfony/polyfill"
1604
+ }
1605
+ },
1606
+ "installation-source": "dist",
1607
+ "autoload": {
1608
+ "psr-4": {
1609
+ "Symfony\\Polyfill\\Php70\\": ""
1610
+ },
1611
+ "files": [
1612
+ "bootstrap.php"
1613
+ ],
1614
+ "classmap": [
1615
+ "Resources/stubs"
1616
+ ]
1617
+ },
1618
+ "notification-url": "https://packagist.org/downloads/",
1619
+ "license": [
1620
+ "MIT"
1621
+ ],
1622
+ "authors": [
1623
+ {
1624
+ "name": "Nicolas Grekas",
1625
+ "email": "p@tchwork.com"
1626
+ },
1627
+ {
1628
+ "name": "Symfony Community",
1629
+ "homepage": "https://symfony.com/contributors"
1630
+ }
1631
+ ],
1632
+ "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
1633
+ "homepage": "https://symfony.com",
1634
+ "keywords": [
1635
+ "compatibility",
1636
+ "polyfill",
1637
+ "portable",
1638
+ "shim"
1639
+ ],
1640
+ "funding": [
1641
+ {
1642
+ "url": "https://symfony.com/sponsor",
1643
+ "type": "custom"
1644
+ },
1645
+ {
1646
+ "url": "https://github.com/fabpot",
1647
+ "type": "github"
1648
+ },
1649
+ {
1650
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1651
+ "type": "tidelift"
1652
+ }
1653
+ ]
1654
+ },
1655
+ {
1656
+ "name": "symfony/polyfill-php72",
1657
+ "version": "v1.18.0",
1658
+ "version_normalized": "1.18.0.0",
1659
+ "source": {
1660
+ "type": "git",
1661
+ "url": "https://github.com/symfony/polyfill-php72.git",
1662
+ "reference": "639447d008615574653fb3bc60d1986d7172eaae"
1663
+ },
1664
+ "dist": {
1665
+ "type": "zip",
1666
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
1667
+ "reference": "639447d008615574653fb3bc60d1986d7172eaae",
1668
+ "shasum": ""
1669
+ },
1670
+ "require": {
1671
+ "php": ">=5.3.3"
1672
+ },
1673
+ "time": "2020-07-14T12:35:20+00:00",
1674
+ "type": "library",
1675
+ "extra": {
1676
+ "branch-alias": {
1677
+ "dev-master": "1.18-dev"
1678
+ },
1679
+ "thanks": {
1680
+ "name": "symfony/polyfill",
1681
+ "url": "https://github.com/symfony/polyfill"
1682
+ }
1683
+ },
1684
+ "installation-source": "dist",
1685
+ "autoload": {
1686
+ "psr-4": {
1687
+ "Symfony\\Polyfill\\Php72\\": ""
1688
+ },
1689
+ "files": [
1690
+ "bootstrap.php"
1691
+ ]
1692
+ },
1693
+ "notification-url": "https://packagist.org/downloads/",
1694
+ "license": [
1695
+ "MIT"
1696
+ ],
1697
+ "authors": [
1698
+ {
1699
+ "name": "Nicolas Grekas",
1700
+ "email": "p@tchwork.com"
1701
+ },
1702
+ {
1703
+ "name": "Symfony Community",
1704
+ "homepage": "https://symfony.com/contributors"
1705
+ }
1706
+ ],
1707
+ "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
1708
+ "homepage": "https://symfony.com",
1709
+ "keywords": [
1710
+ "compatibility",
1711
+ "polyfill",
1712
+ "portable",
1713
+ "shim"
1714
+ ],
1715
+ "funding": [
1716
+ {
1717
+ "url": "https://symfony.com/sponsor",
1718
+ "type": "custom"
1719
+ },
1720
+ {
1721
+ "url": "https://github.com/fabpot",
1722
+ "type": "github"
1723
+ },
1724
+ {
1725
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1726
+ "type": "tidelift"
1727
+ }
1728
+ ]
1729
+ },
1730
+ {
1731
+ "name": "symfony/process",
1732
+ "version": "v3.4.42",
1733
+ "version_normalized": "3.4.42.0",
1734
+ "source": {
1735
+ "type": "git",
1736
+ "url": "https://github.com/symfony/process.git",
1737
+ "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
1738
+ },
1739
+ "dist": {
1740
+ "type": "zip",
1741
+ "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
1742
+ "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
1743
+ "shasum": ""
1744
+ },
1745
+ "require": {
1746
+ "php": "^5.5.9|>=7.0.8"
1747
+ },
1748
+ "time": "2020-05-23T17:05:51+00:00",
1749
+ "type": "library",
1750
+ "extra": {
1751
+ "branch-alias": {
1752
+ "dev-master": "3.4-dev"
1753
+ }
1754
+ },
1755
+ "installation-source": "dist",
1756
+ "autoload": {
1757
+ "psr-4": {
1758
+ "Symfony\\Component\\Process\\": ""
1759
+ },
1760
+ "exclude-from-classmap": [
1761
+ "/Tests/"
1762
+ ]
1763
+ },
1764
+ "notification-url": "https://packagist.org/downloads/",
1765
+ "license": [
1766
+ "MIT"
1767
+ ],
1768
+ "authors": [
1769
+ {
1770
+ "name": "Fabien Potencier",
1771
+ "email": "fabien@symfony.com"
1772
+ },
1773
+ {
1774
+ "name": "Symfony Community",
1775
+ "homepage": "https://symfony.com/contributors"
1776
+ }
1777
+ ],
1778
+ "description": "Symfony Process Component",
1779
+ "homepage": "https://symfony.com",
1780
+ "funding": [
1781
+ {
1782
+ "url": "https://symfony.com/sponsor",
1783
+ "type": "custom"
1784
+ },
1785
+ {
1786
+ "url": "https://github.com/fabpot",
1787
+ "type": "github"
1788
+ },
1789
+ {
1790
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1791
+ "type": "tidelift"
1792
+ }
1793
+ ]
1794
+ },
1795
+ {
1796
+ "name": "symfony/stopwatch",
1797
+ "version": "v3.4.42",
1798
+ "version_normalized": "3.4.42.0",
1799
+ "source": {
1800
+ "type": "git",
1801
+ "url": "https://github.com/symfony/stopwatch.git",
1802
+ "reference": "a7a98f40dcc382a332c3729a6d04b298ffbb8f1f"
1803
+ },
1804
+ "dist": {
1805
+ "type": "zip",
1806
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/a7a98f40dcc382a332c3729a6d04b298ffbb8f1f",
1807
+ "reference": "a7a98f40dcc382a332c3729a6d04b298ffbb8f1f",
1808
+ "shasum": ""
1809
+ },
1810
+ "require": {
1811
+ "php": "^5.5.9|>=7.0.8"
1812
+ },
1813
+ "time": "2020-03-15T09:38:08+00:00",
1814
+ "type": "library",
1815
+ "extra": {
1816
+ "branch-alias": {
1817
+ "dev-master": "3.4-dev"
1818
+ }
1819
+ },
1820
+ "installation-source": "dist",
1821
+ "autoload": {
1822
+ "psr-4": {
1823
+ "Symfony\\Component\\Stopwatch\\": ""
1824
+ },
1825
+ "exclude-from-classmap": [
1826
+ "/Tests/"
1827
+ ]
1828
+ },
1829
+ "notification-url": "https://packagist.org/downloads/",
1830
+ "license": [
1831
+ "MIT"
1832
+ ],
1833
+ "authors": [
1834
+ {
1835
+ "name": "Fabien Potencier",
1836
+ "email": "fabien@symfony.com"
1837
+ },
1838
+ {
1839
+ "name": "Symfony Community",
1840
+ "homepage": "https://symfony.com/contributors"
1841
+ }
1842
+ ],
1843
+ "description": "Symfony Stopwatch Component",
1844
+ "homepage": "https://symfony.com",
1845
+ "funding": [
1846
+ {
1847
+ "url": "https://symfony.com/sponsor",
1848
+ "type": "custom"
1849
+ },
1850
+ {
1851
+ "url": "https://github.com/fabpot",
1852
+ "type": "github"
1853
+ },
1854
+ {
1855
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1856
+ "type": "tidelift"
1857
+ }
1858
+ ]
1859
+ }
1860
+ ]