dependabot-composer 0.113.18 → 0.113.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2622) hide show
  1. checksums.yaml +4 -4
  2. data/helpers/.php_cs.cache +1 -0
  3. data/helpers/composer.lock +48 -48
  4. data/helpers/vendor/autoload.php +7 -0
  5. data/helpers/vendor/bin/composer +1 -0
  6. data/helpers/vendor/bin/jsonlint +1 -0
  7. data/helpers/vendor/bin/php-cs-fixer +1 -0
  8. data/helpers/vendor/bin/php-parse +1 -0
  9. data/helpers/vendor/bin/phpstan +1 -0
  10. data/helpers/vendor/bin/validate-json +1 -0
  11. data/helpers/vendor/composer/ClassLoader.php +445 -0
  12. data/helpers/vendor/composer/LICENSE +21 -0
  13. data/helpers/vendor/composer/autoload_classmap.php +180 -0
  14. data/helpers/vendor/composer/autoload_files.php +14 -0
  15. data/helpers/vendor/composer/autoload_namespaces.php +9 -0
  16. data/helpers/vendor/composer/autoload_psr4.php +39 -0
  17. data/helpers/vendor/composer/autoload_real.php +70 -0
  18. data/helpers/vendor/composer/autoload_static.php +371 -0
  19. data/helpers/vendor/composer/ca-bundle/LICENSE +19 -0
  20. data/helpers/vendor/composer/ca-bundle/README.md +85 -0
  21. data/helpers/vendor/composer/ca-bundle/composer.json +54 -0
  22. data/helpers/vendor/composer/ca-bundle/res/cacert.pem +3507 -0
  23. data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +310 -0
  24. data/helpers/vendor/composer/composer/.editorconfig +11 -0
  25. data/helpers/vendor/composer/composer/.gitattributes +17 -0
  26. data/helpers/vendor/composer/composer/.gitignore +11 -0
  27. data/helpers/vendor/composer/composer/CHANGELOG.md +828 -0
  28. data/helpers/vendor/composer/composer/LICENSE +19 -0
  29. data/helpers/vendor/composer/composer/PORTING_INFO +39 -0
  30. data/helpers/vendor/composer/composer/README.md +62 -0
  31. data/helpers/vendor/composer/composer/bin/compile +31 -0
  32. data/helpers/vendor/composer/composer/bin/composer +62 -0
  33. data/helpers/vendor/composer/composer/composer.json +86 -0
  34. data/helpers/vendor/composer/composer/composer.lock +1800 -0
  35. data/helpers/vendor/composer/composer/doc/00-intro.md +156 -0
  36. data/helpers/vendor/composer/composer/doc/01-basic-usage.md +266 -0
  37. data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
  38. data/helpers/vendor/composer/composer/doc/03-cli.md +941 -0
  39. data/helpers/vendor/composer/composer/doc/04-schema.md +924 -0
  40. data/helpers/vendor/composer/composer/doc/05-repositories.md +717 -0
  41. data/helpers/vendor/composer/composer/doc/06-config.md +299 -0
  42. data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
  43. data/helpers/vendor/composer/composer/doc/articles/aliases.md +111 -0
  44. data/helpers/vendor/composer/composer/doc/articles/autoloader-optimization.md +111 -0
  45. data/helpers/vendor/composer/composer/doc/articles/custom-installers.md +204 -0
  46. data/helpers/vendor/composer/composer/doc/articles/handling-private-packages-with-satis.md +356 -0
  47. data/helpers/vendor/composer/composer/doc/articles/http-basic-authentication.md +59 -0
  48. data/helpers/vendor/composer/composer/doc/articles/plugins.md +290 -0
  49. data/helpers/vendor/composer/composer/doc/articles/scripts.md +357 -0
  50. data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +309 -0
  51. data/helpers/vendor/composer/composer/doc/articles/vendor-binaries.md +110 -0
  52. data/helpers/vendor/composer/composer/doc/articles/versions.md +230 -0
  53. data/helpers/vendor/composer/composer/doc/dev/DefaultPolicy.md +55 -0
  54. data/helpers/vendor/composer/composer/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md +50 -0
  55. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-composer-programmatically.md +42 -0
  56. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-untrusted-packages-safely.md +19 -0
  57. data/helpers/vendor/composer/composer/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md +32 -0
  58. data/helpers/vendor/composer/composer/doc/faqs/which-version-numbering-system-does-composer-itself-use.md +4 -0
  59. data/helpers/vendor/composer/composer/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md +21 -0
  60. data/helpers/vendor/composer/composer/doc/faqs/why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md +21 -0
  61. data/helpers/vendor/composer/composer/doc/faqs/why-can't-composer-load-repositories-recursively.md +35 -0
  62. data/helpers/vendor/composer/composer/doc/fixtures/fixtures.md +22 -0
  63. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-plain/packages.json +158 -0
  64. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/bar/baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json +50 -0
  65. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/foo/bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json +77 -0
  66. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/gar/nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json +50 -0
  67. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json +16 -0
  68. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/qux/quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json +22 -0
  69. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/packages.json +9 -0
  70. data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
  71. data/helpers/vendor/composer/composer/res/composer-schema.json +847 -0
  72. data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1013 -0
  73. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
  74. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +222 -0
  75. data/helpers/vendor/composer/composer/src/Composer/Cache.php +257 -0
  76. data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +46 -0
  77. data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +166 -0
  78. data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
  79. data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +255 -0
  80. data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +162 -0
  81. data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +74 -0
  82. data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +722 -0
  83. data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +387 -0
  84. data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +57 -0
  85. data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +729 -0
  86. data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +88 -0
  87. data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +97 -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 +820 -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 +159 -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 +267 -0
  97. data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +142 -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 +83 -0
  100. data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +405 -0
  101. data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1015 -0
  102. data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +214 -0
  103. data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +152 -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 +172 -0
  106. data/helpers/vendor/composer/composer/src/Composer/Compiler.php +284 -0
  107. data/helpers/vendor/composer/composer/src/Composer/Composer.php +283 -0
  108. data/helpers/vendor/composer/composer/src/Composer/Config.php +479 -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 +271 -0
  111. data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +494 -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 +80 -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 +378 -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 +376 -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 +874 -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 +517 -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 +224 -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 +544 -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 +263 -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 +322 -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 +1803 -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 +306 -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 +522 -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 +414 -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 +74 -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 +199 -0
  208. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +95 -0
  209. data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +151 -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 +290 -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 +499 -0
  222. data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +438 -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 +302 -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 +176 -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 +208 -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 +157 -0
  244. data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +833 -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 +190 -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 +342 -0
  266. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +169 -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 +177 -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 +226 -0
  274. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +476 -0
  275. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +518 -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 +410 -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 +75 -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 +715 -0
  298. data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +374 -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 +172 -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 +147 -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 +193 -0
  308. data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1126 -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 +108 -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 +2375 -0
  319. data/helpers/vendor/composer/semver/CHANGELOG.md +72 -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 +58 -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 +219 -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 +540 -0
  331. data/helpers/vendor/composer/spdx-licenses/.php_cs.dist +59 -0
  332. data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +94 -0
  333. data/helpers/vendor/composer/spdx-licenses/LICENSE +19 -0
  334. data/helpers/vendor/composer/spdx-licenses/README.md +69 -0
  335. data/helpers/vendor/composer/spdx-licenses/composer.json +56 -0
  336. data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +110 -0
  337. data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +1982 -0
  338. data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
  339. data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +59 -0
  340. data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
  341. data/helpers/vendor/composer/xdebug-handler/README.md +288 -0
  342. data/helpers/vendor/composer/xdebug-handler/composer.json +40 -0
  343. data/helpers/vendor/composer/xdebug-handler/src/PhpConfig.php +73 -0
  344. data/helpers/vendor/composer/xdebug-handler/src/Process.php +170 -0
  345. data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
  346. data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +565 -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 +43 -0
  351. data/helpers/vendor/doctrine/annotations/docs/en/annotations.rst +223 -0
  352. data/helpers/vendor/doctrine/annotations/docs/en/custom.rst +341 -0
  353. data/helpers/vendor/doctrine/annotations/docs/en/index.rst +90 -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 +409 -0
  364. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php +174 -0
  365. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php +262 -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 +1197 -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/.php_cs.dist +48 -0
  391. data/helpers/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +2844 -0
  392. data/helpers/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +41 -0
  393. data/helpers/vendor/friendsofphp/php-cs-fixer/LICENSE +20 -0
  394. data/helpers/vendor/friendsofphp/php-cs-fixer/README.rst +2079 -0
  395. data/helpers/vendor/friendsofphp/php-cs-fixer/UPGRADE.md +184 -0
  396. data/helpers/vendor/friendsofphp/php-cs-fixer/box.json.dist +34 -0
  397. data/helpers/vendor/friendsofphp/php-cs-fixer/composer.json +81 -0
  398. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/bin-download.sh +23 -0
  399. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/build.sh +22 -0
  400. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/check-shell-scripts.sh +21 -0
  401. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/ci-integration.sh +8 -0
  402. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/composer.json +19 -0
  403. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/info-extractor.php +14 -0
  404. data/helpers/vendor/friendsofphp/php-cs-fixer/dev-tools/trigger-website.sh +28 -0
  405. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/COOKBOOK-FIXERS.md +523 -0
  406. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/checkstyle.xsd +44 -0
  407. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/junit-10.xsd +135 -0
  408. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/schema.json +47 -0
  409. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/xml.xsd +83 -0
  410. data/helpers/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +79 -0
  411. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractAlignFixerHelper.php +125 -0
  412. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +224 -0
  413. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +227 -0
  414. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +127 -0
  415. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +68 -0
  416. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractLinesBeforeNamespaceFixer.php +110 -0
  417. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +211 -0
  418. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +137 -0
  419. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +122 -0
  420. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPsrAutoloadingFixer.php +87 -0
  421. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +145 -0
  422. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +56 -0
  423. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +35 -0
  424. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +53 -0
  425. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +26 -0
  426. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +125 -0
  427. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +99 -0
  428. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +36 -0
  429. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +30 -0
  430. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +111 -0
  431. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +53 -0
  432. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Config.php +280 -0
  433. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +196 -0
  434. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +40 -0
  435. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +54 -0
  436. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
  437. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
  438. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +114 -0
  439. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +408 -0
  440. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +57 -0
  441. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +270 -0
  442. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +57 -0
  443. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +622 -0
  444. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ReadmeCommand.php +294 -0
  445. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +176 -0
  446. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +936 -0
  447. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +154 -0
  448. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/NullOutput.php +23 -0
  449. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutput.php +147 -0
  450. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutputInterface.php +21 -0
  451. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +52 -0
  452. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +24 -0
  453. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +117 -0
  454. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +46 -0
  455. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +74 -0
  456. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +102 -0
  457. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +31 -0
  458. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +48 -0
  459. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +27 -0
  460. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannDiffer.php +39 -0
  461. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannShortDiffer.php +39 -0
  462. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +43 -0
  463. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +307 -0
  464. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +187 -0
  465. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +144 -0
  466. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +63 -0
  467. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +113 -0
  468. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +60 -0
  469. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +99 -0
  470. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +379 -0
  471. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +119 -0
  472. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +82 -0
  473. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +87 -0
  474. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +80 -0
  475. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Finder.php +36 -0
  476. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +147 -0
  477. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +184 -0
  478. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +112 -0
  479. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +217 -0
  480. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +163 -0
  481. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +214 -0
  482. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +167 -0
  483. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +255 -0
  484. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +150 -0
  485. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +86 -0
  486. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +90 -0
  487. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +154 -0
  488. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +59 -0
  489. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrailingCommaInMultilineArrayFixer.php +138 -0
  490. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +104 -0
  491. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +106 -0
  492. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +1057 -0
  493. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +93 -0
  494. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +171 -0
  495. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr0Fixer.php +169 -0
  496. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr4Fixer.php +100 -0
  497. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseConstantsFixer.php +102 -0
  498. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +75 -0
  499. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +105 -0
  500. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +98 -0
  501. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +232 -0
  502. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +107 -0
  503. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +179 -0
  504. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +128 -0
  505. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +76 -0
  506. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +159 -0
  507. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +107 -0
  508. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +91 -0
  509. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +76 -0
  510. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +394 -0
  511. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +448 -0
  512. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +60 -0
  513. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +198 -0
  514. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/MethodSeparationFixer.php +73 -0
  515. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +92 -0
  516. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +98 -0
  517. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +389 -0
  518. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +139 -0
  519. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +502 -0
  520. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +231 -0
  521. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +137 -0
  522. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +194 -0
  523. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +226 -0
  524. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +104 -0
  525. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +193 -0
  526. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +164 -0
  527. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +191 -0
  528. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HashToSlashCommentFixer.php +58 -0
  529. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +356 -0
  530. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +95 -0
  531. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +168 -0
  532. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +75 -0
  533. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +168 -0
  534. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +51 -0
  535. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurationDefinitionFixerInterface.php +28 -0
  536. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +275 -0
  537. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +91 -0
  538. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +151 -0
  539. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +226 -0
  540. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +366 -0
  541. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +101 -0
  542. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +74 -0
  543. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +189 -0
  544. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +110 -0
  545. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +118 -0
  546. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +104 -0
  547. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +92 -0
  548. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +731 -0
  549. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DefinedFixerInterface.php +29 -0
  550. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +26 -0
  551. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +103 -0
  552. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +129 -0
  553. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +202 -0
  554. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +347 -0
  555. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +81 -0
  556. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +240 -0
  557. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +131 -0
  558. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +112 -0
  559. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +200 -0
  560. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +87 -0
  561. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +150 -0
  562. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +512 -0
  563. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +415 -0
  564. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +182 -0
  565. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +205 -0
  566. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +326 -0
  567. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +123 -0
  568. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +134 -0
  569. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +263 -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/NoLeadingImportSlashFixer.php +98 -0
  572. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +255 -0
  573. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +527 -0
  574. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +252 -0
  575. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +145 -0
  576. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +252 -0
  577. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +164 -0
  578. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +192 -0
  579. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +132 -0
  580. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +130 -0
  581. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +176 -0
  582. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +91 -0
  583. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +238 -0
  584. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +202 -0
  585. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +232 -0
  586. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SilencedDeprecationErrorFixer.php +55 -0
  587. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +150 -0
  588. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +144 -0
  589. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +63 -0
  590. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +101 -0
  591. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +69 -0
  592. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +244 -0
  593. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignDoubleArrowFixerHelper.php +152 -0
  594. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignEqualsFixerHelper.php +78 -0
  595. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +839 -0
  596. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +154 -0
  597. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +208 -0
  598. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +76 -0
  599. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +151 -0
  600. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +80 -0
  601. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +78 -0
  602. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +67 -0
  603. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/PreIncrementFixer.php +56 -0
  604. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +169 -0
  605. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +56 -0
  606. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +112 -0
  607. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +218 -0
  608. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +68 -0
  609. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +96 -0
  610. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +134 -0
  611. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +73 -0
  612. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +73 -0
  613. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoShortEchoTagFixer.php +70 -0
  614. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +223 -0
  615. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +454 -0
  616. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +200 -0
  617. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +273 -0
  618. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +104 -0
  619. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +280 -0
  620. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +274 -0
  621. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +150 -0
  622. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +146 -0
  623. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +220 -0
  624. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +300 -0
  625. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitOrderedCoversFixer.php +106 -0
  626. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +142 -0
  627. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +279 -0
  628. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +158 -0
  629. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +61 -0
  630. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +561 -0
  631. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +474 -0
  632. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +152 -0
  633. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +170 -0
  634. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +117 -0
  635. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +112 -0
  636. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +70 -0
  637. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +330 -0
  638. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +286 -0
  639. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +431 -0
  640. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +117 -0
  641. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +144 -0
  642. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagFixer.php +96 -0
  643. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +59 -0
  644. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +176 -0
  645. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +125 -0
  646. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +59 -0
  647. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +195 -0
  648. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +175 -0
  649. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +227 -0
  650. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +103 -0
  651. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +181 -0
  652. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +106 -0
  653. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +93 -0
  654. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +94 -0
  655. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +215 -0
  656. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +131 -0
  657. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +147 -0
  658. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +212 -0
  659. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +67 -0
  660. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +101 -0
  661. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/BlankLineBeforeReturnFixer.php +61 -0
  662. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +111 -0
  663. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +362 -0
  664. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +173 -0
  665. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +293 -0
  666. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +163 -0
  667. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoMultilineWhitespaceBeforeSemicolonsFixer.php +68 -0
  668. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +65 -0
  669. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +63 -0
  670. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +143 -0
  671. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +166 -0
  672. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +76 -0
  673. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +154 -0
  674. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +166 -0
  675. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +159 -0
  676. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +107 -0
  677. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +65 -0
  678. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +112 -0
  679. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +106 -0
  680. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +85 -0
  681. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +376 -0
  682. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +330 -0
  683. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +79 -0
  684. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +150 -0
  685. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +147 -0
  686. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +92 -0
  687. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +205 -0
  688. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +465 -0
  689. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraConsecutiveBlankLinesFixer.php +73 -0
  690. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +107 -0
  691. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +109 -0
  692. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +113 -0
  693. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +103 -0
  694. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +70 -0
  695. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +23 -0
  696. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +103 -0
  697. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +98 -0
  698. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +53 -0
  699. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +100 -0
  700. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +21 -0
  701. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +129 -0
  702. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +28 -0
  703. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverRootless.php +99 -0
  704. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +176 -0
  705. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +149 -0
  706. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +53 -0
  707. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
  708. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +55 -0
  709. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +29 -0
  710. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +69 -0
  711. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +26 -0
  712. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +93 -0
  713. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +55 -0
  714. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +67 -0
  715. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +26 -0
  716. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +75 -0
  717. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +26 -0
  718. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +259 -0
  719. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFileProcessedEvent.php +59 -0
  720. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +36 -0
  721. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +76 -0
  722. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +75 -0
  723. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +64 -0
  724. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +44 -0
  725. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +20 -0
  726. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +24 -0
  727. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
  728. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +50 -0
  729. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +59 -0
  730. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +70 -0
  731. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +48 -0
  732. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +22 -0
  733. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +39 -0
  734. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
  735. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Preg.php +189 -0
  736. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
  737. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/CheckstyleReporter.php +75 -0
  738. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/GitlabReporter.php +56 -0
  739. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JsonReporter.php +71 -0
  740. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JunitReporter.php +148 -0
  741. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReportSummary.php +123 -0
  742. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterFactory.php +102 -0
  743. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterInterface.php +33 -0
  744. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/TextReporter.php +110 -0
  745. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/XmlReporter.php +146 -0
  746. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSet.php +531 -0
  747. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSetInterface.php +59 -0
  748. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingIterator.php +80 -0
  749. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +119 -0
  750. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileLintingIterator.php +68 -0
  751. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +308 -0
  752. data/helpers/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +172 -0
  753. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractFixerTestCase.php +36 -0
  754. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractIntegrationTestCase.php +36 -0
  755. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AccessibleObject.php +93 -0
  756. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/IntegrationCase.php +140 -0
  757. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +42 -0
  758. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +109 -0
  759. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +127 -0
  760. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +147 -0
  761. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +30 -0
  762. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +125 -0
  763. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +143 -0
  764. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +305 -0
  765. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +99 -0
  766. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +111 -0
  767. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +73 -0
  768. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +95 -0
  769. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CodeHasher.php +38 -0
  770. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Generator/NamespacedStringTokenGenerator.php +43 -0
  771. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Resolver/TypeShortNameResolver.php +99 -0
  772. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +618 -0
  773. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1452 -0
  774. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +695 -0
  775. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +61 -0
  776. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +88 -0
  777. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +64 -0
  778. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/CurlyBraceTransformer.php +223 -0
  779. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +67 -0
  780. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +61 -0
  781. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +70 -0
  782. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +57 -0
  783. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +200 -0
  784. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +86 -0
  785. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +83 -0
  786. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +111 -0
  787. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +71 -0
  788. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +74 -0
  789. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +113 -0
  790. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +109 -0
  791. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +31 -0
  792. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Utils.php +193 -0
  793. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +56 -0
  794. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +57 -0
  795. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractFixerTestCase.php +232 -0
  796. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationCaseFactory.php +263 -0
  797. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationTestCase.php +431 -0
  798. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/Assert/AssertTokensTrait.php +48 -0
  799. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCase.php +164 -0
  800. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactory.php +22 -0
  801. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactoryInterface.php +30 -0
  802. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/InternalIntegrationCaseFactory.php +35 -0
  803. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/TestCase.php +49 -0
  804. data/helpers/vendor/jean85/pretty-package-versions/composer.json +43 -0
  805. data/helpers/vendor/jean85/pretty-package-versions/src/PrettyVersions.php +15 -0
  806. data/helpers/vendor/jean85/pretty-package-versions/src/Version.php +78 -0
  807. data/helpers/vendor/justinrainbow/json-schema/.gitattributes +5 -0
  808. data/helpers/vendor/justinrainbow/json-schema/.php_cs.dist +30 -0
  809. data/helpers/vendor/justinrainbow/json-schema/LICENSE +21 -0
  810. data/helpers/vendor/justinrainbow/json-schema/README.md +206 -0
  811. data/helpers/vendor/justinrainbow/json-schema/bin/validate-json +251 -0
  812. data/helpers/vendor/justinrainbow/json-schema/composer.json +76 -0
  813. data/helpers/vendor/justinrainbow/json-schema/demo/README.md +14 -0
  814. data/helpers/vendor/justinrainbow/json-schema/demo/data.json +3 -0
  815. data/helpers/vendor/justinrainbow/json-schema/demo/demo.php +18 -0
  816. data/helpers/vendor/justinrainbow/json-schema/demo/schema.json +3 -0
  817. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json +174 -0
  818. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json +150 -0
  819. data/helpers/vendor/justinrainbow/json-schema/phpunit.xml.dist +26 -0
  820. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php +148 -0
  821. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php +121 -0
  822. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php +213 -0
  823. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php +65 -0
  824. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php +54 -0
  825. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php +220 -0
  826. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php +214 -0
  827. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php +81 -0
  828. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php +192 -0
  829. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php +94 -0
  830. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php +60 -0
  831. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php +68 -0
  832. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php +40 -0
  833. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php +18 -0
  834. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php +261 -0
  835. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php +413 -0
  836. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php +161 -0
  837. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php +7 -0
  838. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php +17 -0
  839. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php +17 -0
  840. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php +17 -0
  841. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php +17 -0
  842. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php +17 -0
  843. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php +40 -0
  844. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php +17 -0
  845. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php +17 -0
  846. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php +19 -0
  847. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php +17 -0
  848. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php +14 -0
  849. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php +149 -0
  850. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php +30 -0
  851. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php +169 -0
  852. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php +41 -0
  853. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +34 -0
  854. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php +83 -0
  855. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php +93 -0
  856. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php +56 -0
  857. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php +36 -0
  858. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php +175 -0
  859. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php +349 -0
  860. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php +26 -0
  861. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php +26 -0
  862. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php +90 -0
  863. data/helpers/vendor/nette/bootstrap/composer.json +52 -0
  864. data/helpers/vendor/nette/bootstrap/contributing.md +33 -0
  865. data/helpers/vendor/nette/bootstrap/license.md +60 -0
  866. data/helpers/vendor/nette/bootstrap/readme.md +30 -0
  867. data/helpers/vendor/nette/bootstrap/src/Bootstrap/Configurator.php +327 -0
  868. data/helpers/vendor/nette/di/.phpstorm.meta.php +8 -0
  869. data/helpers/vendor/nette/di/composer.json +43 -0
  870. data/helpers/vendor/nette/di/contributing.md +33 -0
  871. data/helpers/vendor/nette/di/license.md +60 -0
  872. data/helpers/vendor/nette/di/readme.md +348 -0
  873. data/helpers/vendor/nette/di/src/Bridges/DITracy/ContainerPanel.php +90 -0
  874. data/helpers/vendor/nette/di/src/Bridges/DITracy/templates/ContainerPanel.panel.phtml +81 -0
  875. data/helpers/vendor/nette/di/src/Bridges/DITracy/templates/ContainerPanel.tab.phtml +11 -0
  876. data/helpers/vendor/nette/di/src/DI/Autowiring.php +151 -0
  877. data/helpers/vendor/nette/di/src/DI/Compiler.php +326 -0
  878. data/helpers/vendor/nette/di/src/DI/CompilerExtension.php +171 -0
  879. data/helpers/vendor/nette/di/src/DI/Config/Adapter.php +28 -0
  880. data/helpers/vendor/nette/di/src/DI/Config/Adapters/NeonAdapter.php +130 -0
  881. data/helpers/vendor/nette/di/src/DI/Config/Adapters/PhpAdapter.php +38 -0
  882. data/helpers/vendor/nette/di/src/DI/Config/DefinitionSchema.php +254 -0
  883. data/helpers/vendor/nette/di/src/DI/Config/Helpers.php +47 -0
  884. data/helpers/vendor/nette/di/src/DI/Config/Loader.php +135 -0
  885. data/helpers/vendor/nette/di/src/DI/Container.php +312 -0
  886. data/helpers/vendor/nette/di/src/DI/ContainerBuilder.php +415 -0
  887. data/helpers/vendor/nette/di/src/DI/ContainerLoader.php +125 -0
  888. data/helpers/vendor/nette/di/src/DI/Definitions/AccessorDefinition.php +122 -0
  889. data/helpers/vendor/nette/di/src/DI/Definitions/Definition.php +227 -0
  890. data/helpers/vendor/nette/di/src/DI/Definitions/FactoryDefinition.php +303 -0
  891. data/helpers/vendor/nette/di/src/DI/Definitions/ImportedDefinition.php +57 -0
  892. data/helpers/vendor/nette/di/src/DI/Definitions/LocatorDefinition.php +171 -0
  893. data/helpers/vendor/nette/di/src/DI/Definitions/Reference.php +65 -0
  894. data/helpers/vendor/nette/di/src/DI/Definitions/ServiceDefinition.php +274 -0
  895. data/helpers/vendor/nette/di/src/DI/Definitions/Statement.php +72 -0
  896. data/helpers/vendor/nette/di/src/DI/DependencyChecker.php +176 -0
  897. data/helpers/vendor/nette/di/src/DI/DynamicParameter.php +20 -0
  898. data/helpers/vendor/nette/di/src/DI/Extensions/ConstantsExtension.php +26 -0
  899. data/helpers/vendor/nette/di/src/DI/Extensions/DIExtension.php +134 -0
  900. data/helpers/vendor/nette/di/src/DI/Extensions/DecoratorExtension.php +77 -0
  901. data/helpers/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php +42 -0
  902. data/helpers/vendor/nette/di/src/DI/Extensions/InjectExtension.php +157 -0
  903. data/helpers/vendor/nette/di/src/DI/Extensions/ParametersExtension.php +64 -0
  904. data/helpers/vendor/nette/di/src/DI/Extensions/PhpExtension.php +53 -0
  905. data/helpers/vendor/nette/di/src/DI/Extensions/SearchExtension.php +144 -0
  906. data/helpers/vendor/nette/di/src/DI/Extensions/ServicesExtension.php +244 -0
  907. data/helpers/vendor/nette/di/src/DI/Helpers.php +190 -0
  908. data/helpers/vendor/nette/di/src/DI/PhpGenerator.php +204 -0
  909. data/helpers/vendor/nette/di/src/DI/Resolver.php +530 -0
  910. data/helpers/vendor/nette/di/src/DI/exceptions.php +49 -0
  911. data/helpers/vendor/nette/di/src/compatibility.php +12 -0
  912. data/helpers/vendor/nette/finder/composer.json +37 -0
  913. data/helpers/vendor/nette/finder/contributing.md +33 -0
  914. data/helpers/vendor/nette/finder/license.md +60 -0
  915. data/helpers/vendor/nette/finder/readme.md +181 -0
  916. data/helpers/vendor/nette/finder/src/Utils/Finder.php +380 -0
  917. data/helpers/vendor/nette/neon/composer.json +35 -0
  918. data/helpers/vendor/nette/neon/contributing.md +33 -0
  919. data/helpers/vendor/nette/neon/license.md +60 -0
  920. data/helpers/vendor/nette/neon/readme.md +96 -0
  921. data/helpers/vendor/nette/neon/src/Neon/Decoder.php +358 -0
  922. data/helpers/vendor/nette/neon/src/Neon/Encoder.php +84 -0
  923. data/helpers/vendor/nette/neon/src/Neon/Entity.php +36 -0
  924. data/helpers/vendor/nette/neon/src/Neon/Exception.php +18 -0
  925. data/helpers/vendor/nette/neon/src/Neon/Neon.php +42 -0
  926. data/helpers/vendor/nette/neon/src/neon.php +9 -0
  927. data/helpers/vendor/nette/neon/syntax.txt +32 -0
  928. data/helpers/vendor/nette/php-generator/composer.json +34 -0
  929. data/helpers/vendor/nette/php-generator/contributing.md +33 -0
  930. data/helpers/vendor/nette/php-generator/license.md +60 -0
  931. data/helpers/vendor/nette/php-generator/readme.md +521 -0
  932. data/helpers/vendor/nette/php-generator/src/PhpGenerator/ClassType.php +507 -0
  933. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Closure.php +70 -0
  934. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Constant.php +43 -0
  935. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Factory.php +134 -0
  936. data/helpers/vendor/nette/php-generator/src/PhpGenerator/GlobalFunction.php +44 -0
  937. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Helpers.php +269 -0
  938. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Method.php +134 -0
  939. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Parameter.php +122 -0
  940. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PhpFile.php +115 -0
  941. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PhpLiteral.php +32 -0
  942. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PhpNamespace.php +199 -0
  943. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Printer.php +252 -0
  944. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Property.php +64 -0
  945. data/helpers/vendor/nette/php-generator/src/PhpGenerator/PsrPrinter.php +29 -0
  946. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/CommentAware.php +46 -0
  947. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/FunctionLike.php +189 -0
  948. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/NameAware.php +49 -0
  949. data/helpers/vendor/nette/php-generator/src/PhpGenerator/Traits/VisibilityAware.php +43 -0
  950. data/helpers/vendor/nette/robot-loader/composer.json +36 -0
  951. data/helpers/vendor/nette/robot-loader/contributing.md +33 -0
  952. data/helpers/vendor/nette/robot-loader/license.md +60 -0
  953. data/helpers/vendor/nette/robot-loader/readme.md +113 -0
  954. data/helpers/vendor/nette/robot-loader/src/RobotLoader/RobotLoader.php +474 -0
  955. data/helpers/vendor/nette/schema/composer.json +34 -0
  956. data/helpers/vendor/nette/schema/contributing.md +33 -0
  957. data/helpers/vendor/nette/schema/license.md +60 -0
  958. data/helpers/vendor/nette/schema/readme.md +304 -0
  959. data/helpers/vendor/nette/schema/src/Schema/Context.php +39 -0
  960. data/helpers/vendor/nette/schema/src/Schema/DynamicParameter.php +15 -0
  961. data/helpers/vendor/nette/schema/src/Schema/Elements/AnyOf.php +102 -0
  962. data/helpers/vendor/nette/schema/src/Schema/Elements/Base.php +137 -0
  963. data/helpers/vendor/nette/schema/src/Schema/Elements/Structure.php +175 -0
  964. data/helpers/vendor/nette/schema/src/Schema/Elements/Type.php +152 -0
  965. data/helpers/vendor/nette/schema/src/Schema/Expect.php +115 -0
  966. data/helpers/vendor/nette/schema/src/Schema/Helpers.php +86 -0
  967. data/helpers/vendor/nette/schema/src/Schema/Processor.php +93 -0
  968. data/helpers/vendor/nette/schema/src/Schema/Schema.php +37 -0
  969. data/helpers/vendor/nette/schema/src/Schema/ValidationException.php +35 -0
  970. data/helpers/vendor/nette/utils/.phpstorm.meta.php +19 -0
  971. data/helpers/vendor/nette/utils/composer.json +42 -0
  972. data/helpers/vendor/nette/utils/contributing.md +33 -0
  973. data/helpers/vendor/nette/utils/license.md +60 -0
  974. data/helpers/vendor/nette/utils/readme.md +41 -0
  975. data/helpers/vendor/nette/utils/src/Iterators/CachingIterator.php +166 -0
  976. data/helpers/vendor/nette/utils/src/Iterators/Mapper.php +34 -0
  977. data/helpers/vendor/nette/utils/src/Utils/ArrayHash.php +94 -0
  978. data/helpers/vendor/nette/utils/src/Utils/ArrayList.php +110 -0
  979. data/helpers/vendor/nette/utils/src/Utils/Arrays.php +300 -0
  980. data/helpers/vendor/nette/utils/src/Utils/Callback.php +164 -0
  981. data/helpers/vendor/nette/utils/src/Utils/DateTime.php +124 -0
  982. data/helpers/vendor/nette/utils/src/Utils/FileSystem.php +159 -0
  983. data/helpers/vendor/nette/utils/src/Utils/Html.php +614 -0
  984. data/helpers/vendor/nette/utils/src/Utils/IHtmlString.php +20 -0
  985. data/helpers/vendor/nette/utils/src/Utils/ITranslator.php +23 -0
  986. data/helpers/vendor/nette/utils/src/Utils/Image.php +623 -0
  987. data/helpers/vendor/nette/utils/src/Utils/Json.php +60 -0
  988. data/helpers/vendor/nette/utils/src/Utils/ObjectHelpers.php +186 -0
  989. data/helpers/vendor/nette/utils/src/Utils/ObjectMixin.php +43 -0
  990. data/helpers/vendor/nette/utils/src/Utils/Paginator.php +212 -0
  991. data/helpers/vendor/nette/utils/src/Utils/Random.php +44 -0
  992. data/helpers/vendor/nette/utils/src/Utils/Reflection.php +303 -0
  993. data/helpers/vendor/nette/utils/src/Utils/SmartObject.php +121 -0
  994. data/helpers/vendor/nette/utils/src/Utils/StaticClass.php +36 -0
  995. data/helpers/vendor/nette/utils/src/Utils/Strings.php +508 -0
  996. data/helpers/vendor/nette/utils/src/Utils/Validators.php +344 -0
  997. data/helpers/vendor/nette/utils/src/Utils/exceptions.php +159 -0
  998. data/helpers/vendor/nikic/php-parser/.gitignore +5 -0
  999. data/helpers/vendor/nikic/php-parser/.travis.yml +36 -0
  1000. data/helpers/vendor/nikic/php-parser/CHANGELOG.md +683 -0
  1001. data/helpers/vendor/nikic/php-parser/LICENSE +31 -0
  1002. data/helpers/vendor/nikic/php-parser/README.md +225 -0
  1003. data/helpers/vendor/nikic/php-parser/UPGRADE-1.0.md +121 -0
  1004. data/helpers/vendor/nikic/php-parser/UPGRADE-2.0.md +74 -0
  1005. data/helpers/vendor/nikic/php-parser/UPGRADE-3.0.md +160 -0
  1006. data/helpers/vendor/nikic/php-parser/UPGRADE-4.0.md +77 -0
  1007. data/helpers/vendor/nikic/php-parser/bin/php-parse +205 -0
  1008. data/helpers/vendor/nikic/php-parser/composer.json +40 -0
  1009. data/helpers/vendor/nikic/php-parser/doc/0_Introduction.markdown +80 -0
  1010. data/helpers/vendor/nikic/php-parser/doc/2_Usage_of_basic_components.markdown +516 -0
  1011. data/helpers/vendor/nikic/php-parser/doc/README.md +46 -0
  1012. data/helpers/vendor/nikic/php-parser/doc/component/AST_builders.markdown +138 -0
  1013. data/helpers/vendor/nikic/php-parser/doc/component/Constant_expression_evaluation.markdown +115 -0
  1014. data/helpers/vendor/nikic/php-parser/doc/component/Error_handling.markdown +75 -0
  1015. data/helpers/vendor/nikic/php-parser/doc/component/FAQ.markdown +68 -0
  1016. data/helpers/vendor/nikic/php-parser/doc/component/JSON_representation.markdown +131 -0
  1017. data/helpers/vendor/nikic/php-parser/doc/component/Lexer.markdown +159 -0
  1018. data/helpers/vendor/nikic/php-parser/doc/component/Name_resolution.markdown +87 -0
  1019. data/helpers/vendor/nikic/php-parser/doc/component/Performance.markdown +65 -0
  1020. data/helpers/vendor/nikic/php-parser/doc/component/Pretty_printing.markdown +96 -0
  1021. data/helpers/vendor/nikic/php-parser/doc/component/Walking_the_AST.markdown +337 -0
  1022. data/helpers/vendor/nikic/php-parser/grammar/README.md +28 -0
  1023. data/helpers/vendor/nikic/php-parser/grammar/parser.template +106 -0
  1024. data/helpers/vendor/nikic/php-parser/grammar/php5.y +1026 -0
  1025. data/helpers/vendor/nikic/php-parser/grammar/php7.y +1023 -0
  1026. data/helpers/vendor/nikic/php-parser/grammar/rebuildParsers.php +257 -0
  1027. data/helpers/vendor/nikic/php-parser/grammar/tokens.template +17 -0
  1028. data/helpers/vendor/nikic/php-parser/grammar/tokens.y +114 -0
  1029. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder.php +13 -0
  1030. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Class_.php +122 -0
  1031. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Declaration.php +43 -0
  1032. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php +74 -0
  1033. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Function_.php +50 -0
  1034. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Interface_.php +75 -0
  1035. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Method.php +129 -0
  1036. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php +45 -0
  1037. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Param.php +106 -0
  1038. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Property.php +132 -0
  1039. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUse.php +64 -0
  1040. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUseAdaptation.php +148 -0
  1041. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Trait_.php +60 -0
  1042. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Builder/Use_.php +49 -0
  1043. data/helpers/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php +348 -0
  1044. data/helpers/vendor/nikic/php-parser/lib/PhpParser/BuilderHelpers.php +277 -0
  1045. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Comment.php +167 -0
  1046. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Comment/Doc.php +7 -0
  1047. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php +6 -0
  1048. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php +226 -0
  1049. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Error.php +180 -0
  1050. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler.php +13 -0
  1051. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php +46 -0
  1052. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php +18 -0
  1053. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/DiffElem.php +27 -0
  1054. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/Differ.php +164 -0
  1055. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/PrintableNewAnonClassNode.php +57 -0
  1056. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Internal/TokenStream.php +256 -0
  1057. data/helpers/vendor/nikic/php-parser/lib/PhpParser/JsonDecoder.php +101 -0
  1058. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer.php +406 -0
  1059. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php +250 -0
  1060. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php +41 -0
  1061. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php +53 -0
  1062. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php +98 -0
  1063. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulatorInterface.php +14 -0
  1064. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NameContext.php +285 -0
  1065. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node.php +153 -0
  1066. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Arg.php +38 -0
  1067. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Const_.php +37 -0
  1068. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr.php +9 -0
  1069. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php +34 -0
  1070. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php +41 -0
  1071. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php +34 -0
  1072. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php +71 -0
  1073. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php +34 -0
  1074. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php +30 -0
  1075. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php +12 -0
  1076. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php +12 -0
  1077. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php +12 -0
  1078. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Coalesce.php +12 -0
  1079. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php +12 -0
  1080. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php +12 -0
  1081. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php +12 -0
  1082. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php +12 -0
  1083. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php +12 -0
  1084. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php +12 -0
  1085. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php +12 -0
  1086. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php +12 -0
  1087. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php +12 -0
  1088. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php +34 -0
  1089. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php +40 -0
  1090. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php +16 -0
  1091. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php +16 -0
  1092. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php +16 -0
  1093. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php +16 -0
  1094. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php +16 -0
  1095. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php +16 -0
  1096. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php +16 -0
  1097. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php +16 -0
  1098. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php +16 -0
  1099. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php +16 -0
  1100. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php +16 -0
  1101. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php +16 -0
  1102. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php +16 -0
  1103. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php +16 -0
  1104. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php +16 -0
  1105. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php +16 -0
  1106. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php +16 -0
  1107. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php +16 -0
  1108. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php +16 -0
  1109. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php +16 -0
  1110. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php +16 -0
  1111. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php +16 -0
  1112. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php +16 -0
  1113. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php +16 -0
  1114. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php +16 -0
  1115. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php +16 -0
  1116. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php +16 -0
  1117. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php +30 -0
  1118. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php +30 -0
  1119. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php +26 -0
  1120. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php +12 -0
  1121. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php +12 -0
  1122. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php +17 -0
  1123. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php +12 -0
  1124. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php +12 -0
  1125. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php +12 -0
  1126. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php +12 -0
  1127. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php +36 -0
  1128. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php +30 -0
  1129. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php +71 -0
  1130. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php +34 -0
  1131. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php +31 -0
  1132. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php +30 -0
  1133. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php +31 -0
  1134. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php +30 -0
  1135. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php +30 -0
  1136. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php +34 -0
  1137. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php +35 -0
  1138. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php +39 -0
  1139. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php +35 -0
  1140. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php +30 -0
  1141. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php +30 -0
  1142. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php +40 -0
  1143. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php +35 -0
  1144. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php +30 -0
  1145. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php +30 -0
  1146. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php +30 -0
  1147. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php +30 -0
  1148. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php +30 -0
  1149. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php +35 -0
  1150. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php +30 -0
  1151. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php +40 -0
  1152. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php +36 -0
  1153. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php +38 -0
  1154. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php +30 -0
  1155. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php +30 -0
  1156. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php +30 -0
  1157. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php +30 -0
  1158. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php +34 -0
  1159. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php +36 -0
  1160. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Identifier.php +75 -0
  1161. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Name.php +242 -0
  1162. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php +50 -0
  1163. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php +50 -0
  1164. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/NullableType.php +30 -0
  1165. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php +49 -0
  1166. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php +7 -0
  1167. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php +70 -0
  1168. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php +31 -0
  1169. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php +30 -0
  1170. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php +73 -0
  1171. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php +28 -0
  1172. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php +16 -0
  1173. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php +16 -0
  1174. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php +16 -0
  1175. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php +16 -0
  1176. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php +16 -0
  1177. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php +16 -0
  1178. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php +16 -0
  1179. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php +16 -0
  1180. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php +141 -0
  1181. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt.php +9 -0
  1182. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php +30 -0
  1183. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php +34 -0
  1184. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php +41 -0
  1185. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php +62 -0
  1186. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php +87 -0
  1187. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php +151 -0
  1188. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php +105 -0
  1189. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php +30 -0
  1190. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php +30 -0
  1191. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php +34 -0
  1192. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php +34 -0
  1193. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php +34 -0
  1194. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php +30 -0
  1195. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php +34 -0
  1196. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php +30 -0
  1197. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Expression.php +33 -0
  1198. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php +30 -0
  1199. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php +43 -0
  1200. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php +47 -0
  1201. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php +69 -0
  1202. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php +30 -0
  1203. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php +31 -0
  1204. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php +39 -0
  1205. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php +30 -0
  1206. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php +43 -0
  1207. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php +30 -0
  1208. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php +35 -0
  1209. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php +31 -0
  1210. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php +38 -0
  1211. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php +17 -0
  1212. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php +78 -0
  1213. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php +34 -0
  1214. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php +30 -0
  1215. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php +37 -0
  1216. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php +30 -0
  1217. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php +34 -0
  1218. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php +30 -0
  1219. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php +34 -0
  1220. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php +13 -0
  1221. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php +38 -0
  1222. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php +34 -0
  1223. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php +30 -0
  1224. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php +38 -0
  1225. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php +30 -0
  1226. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php +52 -0
  1227. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php +47 -0
  1228. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php +34 -0
  1229. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Node/VarLikeIdentifier.php +17 -0
  1230. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeAbstract.php +181 -0
  1231. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeDumper.php +203 -0
  1232. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeFinder.php +81 -0
  1233. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeTraverser.php +291 -0
  1234. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php +29 -0
  1235. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php +72 -0
  1236. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php +20 -0
  1237. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FindingVisitor.php +48 -0
  1238. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FirstFindingVisitor.php +50 -0
  1239. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php +222 -0
  1240. data/helpers/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php +25 -0
  1241. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser.php +18 -0
  1242. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Multiple.php +55 -0
  1243. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Php5.php +2640 -0
  1244. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php +2475 -0
  1245. data/helpers/vendor/nikic/php-parser/lib/PhpParser/Parser/Tokens.php +146 -0
  1246. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php +1014 -0
  1247. data/helpers/vendor/nikic/php-parser/lib/PhpParser/ParserFactory.php +44 -0
  1248. data/helpers/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php +999 -0
  1249. data/helpers/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php +1430 -0
  1250. data/helpers/vendor/nikic/php-parser/phpunit.xml.dist +20 -0
  1251. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/ClassTest.php +153 -0
  1252. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/FunctionTest.php +114 -0
  1253. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/InterfaceTest.php +100 -0
  1254. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/MethodTest.php +162 -0
  1255. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/NamespaceTest.php +46 -0
  1256. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/ParamTest.php +166 -0
  1257. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php +147 -0
  1258. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/TraitTest.php +91 -0
  1259. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/TraitUseAdaptationTest.php +106 -0
  1260. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/TraitUseTest.php +52 -0
  1261. data/helpers/vendor/nikic/php-parser/test/PhpParser/Builder/UseTest.php +36 -0
  1262. data/helpers/vendor/nikic/php-parser/test/PhpParser/BuilderFactoryTest.php +327 -0
  1263. data/helpers/vendor/nikic/php-parser/test/PhpParser/CodeParsingTest.php +119 -0
  1264. data/helpers/vendor/nikic/php-parser/test/PhpParser/CodeTestAbstract.php +26 -0
  1265. data/helpers/vendor/nikic/php-parser/test/PhpParser/CodeTestParser.php +68 -0
  1266. data/helpers/vendor/nikic/php-parser/test/PhpParser/CommentTest.php +74 -0
  1267. data/helpers/vendor/nikic/php-parser/test/PhpParser/ConstExprEvaluatorTest.php +130 -0
  1268. data/helpers/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/CollectingTest.php +23 -0
  1269. data/helpers/vendor/nikic/php-parser/test/PhpParser/ErrorHandler/ThrowingTest.php +15 -0
  1270. data/helpers/vendor/nikic/php-parser/test/PhpParser/ErrorTest.php +104 -0
  1271. data/helpers/vendor/nikic/php-parser/test/PhpParser/Internal/DifferTest.php +65 -0
  1272. data/helpers/vendor/nikic/php-parser/test/PhpParser/JsonDecoderTest.php +43 -0
  1273. data/helpers/vendor/nikic/php-parser/test/PhpParser/Lexer/EmulativeTest.php +258 -0
  1274. data/helpers/vendor/nikic/php-parser/test/PhpParser/LexerTest.php +263 -0
  1275. data/helpers/vendor/nikic/php-parser/test/PhpParser/NameContextTest.php +65 -0
  1276. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/IdentifierTest.php +29 -0
  1277. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/NameTest.php +157 -0
  1278. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Scalar/MagicConstTest.php +26 -0
  1279. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Scalar/StringTest.php +61 -0
  1280. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassConstTest.php +34 -0
  1281. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassMethodTest.php +123 -0
  1282. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassTest.php +113 -0
  1283. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/InterfaceTest.php +44 -0
  1284. data/helpers/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/PropertyTest.php +44 -0
  1285. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeAbstractTest.php +325 -0
  1286. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeDumperTest.php +106 -0
  1287. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeFinderTest.php +59 -0
  1288. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeTraverserTest.php +348 -0
  1289. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeVisitor/FindingVisitorTest.php +53 -0
  1290. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeVisitor/FirstFindingVisitorTest.php +38 -0
  1291. data/helpers/vendor/nikic/php-parser/test/PhpParser/NodeVisitor/NameResolverTest.php +512 -0
  1292. data/helpers/vendor/nikic/php-parser/test/PhpParser/Parser/MultipleTest.php +94 -0
  1293. data/helpers/vendor/nikic/php-parser/test/PhpParser/Parser/Php5Test.php +13 -0
  1294. data/helpers/vendor/nikic/php-parser/test/PhpParser/Parser/Php7Test.php +13 -0
  1295. data/helpers/vendor/nikic/php-parser/test/PhpParser/ParserFactoryTest.php +36 -0
  1296. data/helpers/vendor/nikic/php-parser/test/PhpParser/ParserTest.php +183 -0
  1297. data/helpers/vendor/nikic/php-parser/test/PhpParser/PrettyPrinterTest.php +307 -0
  1298. data/helpers/vendor/nikic/php-parser/test/bootstrap.php +31 -0
  1299. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/addingPropertyType.test +39 -0
  1300. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/anonClasses.test +28 -0
  1301. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/array_spread.test +29 -0
  1302. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/arrow_function.test +97 -0
  1303. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/basic.test +190 -0
  1304. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/blockConversion.test +29 -0
  1305. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/comments.test +52 -0
  1306. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/emptyListInsertion.test +110 -0
  1307. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/fixup.test +67 -0
  1308. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/inlineHtml.test +54 -0
  1309. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/insertionOfNullable.test +176 -0
  1310. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/listInsertion.test +309 -0
  1311. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/listInsertionIndentation.test +17 -0
  1312. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/listRemoval.test +41 -0
  1313. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/modifierChange.test +33 -0
  1314. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/nopCommentAtEnd.test +11 -0
  1315. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/removalViaNull.test +194 -0
  1316. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/removingPropertyType.test +22 -0
  1317. data/helpers/vendor/nikic/php-parser/test/code/formatPreservation/traitAlias.test +19 -0
  1318. data/helpers/vendor/nikic/php-parser/test/code/parser/blockComments.test +36 -0
  1319. data/helpers/vendor/nikic/php-parser/test/code/parser/commentAtEndOfClass.test +38 -0
  1320. data/helpers/vendor/nikic/php-parser/test/code/parser/comments.test +108 -0
  1321. data/helpers/vendor/nikic/php-parser/test/code/parser/errorHandling/eofError.test +36 -0
  1322. data/helpers/vendor/nikic/php-parser/test/code/parser/errorHandling/lexerErrors.test +143 -0
  1323. data/helpers/vendor/nikic/php-parser/test/code/parser/errorHandling/recovery.test +1417 -0
  1324. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arrayDef.test +173 -0
  1325. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arrayDestructuring.test +164 -0
  1326. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arraySpread.test +432 -0
  1327. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/arrow_function.test +145 -0
  1328. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/assign.test +381 -0
  1329. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/assignNewByRef.test +43 -0
  1330. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/cast.test +94 -0
  1331. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/clone.test +15 -0
  1332. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/closure.test +176 -0
  1333. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/comparison.test +129 -0
  1334. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/constant_expr.test +694 -0
  1335. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/errorSuppress.test +14 -0
  1336. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/exit.test +46 -0
  1337. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/args.test +109 -0
  1338. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/constFetch.test +43 -0
  1339. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/constantDeref.test +265 -0
  1340. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/funcCall.test +158 -0
  1341. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/newDeref.test +82 -0
  1342. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/objectAccess.test +184 -0
  1343. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/simpleArrayAccess.test +72 -0
  1344. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticCall.test +214 -0
  1345. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/fetchAndCall/staticPropertyFetch.test +113 -0
  1346. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/includeAndEval.test +50 -0
  1347. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/issetAndEmpty.test +88 -0
  1348. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/listReferences.test +92 -0
  1349. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/listWithKeys.test +84 -0
  1350. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/logic.test +190 -0
  1351. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/math.test +313 -0
  1352. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/new.test +187 -0
  1353. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/newWithoutClass.test +25 -0
  1354. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/print.test +14 -0
  1355. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/shellExec.test +56 -0
  1356. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/ternaryAndCoalesce.test +174 -0
  1357. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/trailingCommas.test +140 -0
  1358. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/globalNonSimpleVarError.test +27 -0
  1359. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/indirectCall.test +511 -0
  1360. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/isset.test +87 -0
  1361. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/misc.test +129 -0
  1362. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/new.test +119 -0
  1363. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/uvs/staticProperty.test +123 -0
  1364. data/helpers/vendor/nikic/php-parser/test/code/parser/expr/variable.test +67 -0
  1365. data/helpers/vendor/nikic/php-parser/test/code/parser/nopPositions.test +13 -0
  1366. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/constantString.test +86 -0
  1367. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/docString.test +115 -0
  1368. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/docStringNewlines.test +77 -0
  1369. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/encapsedNegVarOffset.test +82 -0
  1370. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/encapsedString.test +344 -0
  1371. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/flexibleDocString.test +361 -0
  1372. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/flexibleDocStringErrors.test +117 -0
  1373. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/float.test +108 -0
  1374. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/int.test +61 -0
  1375. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/invalidOctal.test +26 -0
  1376. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/magicConst.test +47 -0
  1377. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/numberSeparators.test +199 -0
  1378. data/helpers/vendor/nikic/php-parser/test/code/parser/scalar/unicodeEscape.test +26 -0
  1379. data/helpers/vendor/nikic/php-parser/test/code/parser/semiReserved.test +490 -0
  1380. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/blocklessStatement.test +130 -0
  1381. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/abstract.test +45 -0
  1382. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/anonymous.test +214 -0
  1383. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/conditional.test +35 -0
  1384. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/constModifierErrors.test +137 -0
  1385. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/constModifiers.test +77 -0
  1386. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/final.test +19 -0
  1387. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/implicitPublic.test +110 -0
  1388. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/interface.test +40 -0
  1389. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/modifier.test +254 -0
  1390. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/name.test +266 -0
  1391. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/php4Style.test +59 -0
  1392. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/propertyTypes.test +70 -0
  1393. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/simple.test +185 -0
  1394. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/staticMethod.test +175 -0
  1395. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/class/trait.test +188 -0
  1396. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/const.test +48 -0
  1397. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/controlFlow.test +59 -0
  1398. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/declare.test +70 -0
  1399. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/echo.test +32 -0
  1400. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/builtinTypeDeclarations.test +87 -0
  1401. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/byRef.test +49 -0
  1402. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/conditional.test +35 -0
  1403. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/defaultValues.test +173 -0
  1404. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/nullableTypes.test +55 -0
  1405. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/returnTypes.test +64 -0
  1406. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/specialVars.test +57 -0
  1407. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/typeDeclarations.test +63 -0
  1408. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/variadic.test +134 -0
  1409. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/function/variadicDefaultValue.test +31 -0
  1410. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/generator/basic.test +319 -0
  1411. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/generator/yieldPrecedence.test +253 -0
  1412. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/generator/yieldUnaryPrecedence.test +56 -0
  1413. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompiler.test +61 -0
  1414. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerInvalidSyntax.test +6 -0
  1415. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerOffset.test +36 -0
  1416. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerOutermostScope.test +8 -0
  1417. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/hashbang.test +26 -0
  1418. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/if.test +103 -0
  1419. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/inlineHTML.test +33 -0
  1420. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/do.test +17 -0
  1421. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/for.test +110 -0
  1422. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/foreach.test +168 -0
  1423. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/loop/while.test +25 -0
  1424. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/multiCatch.test +75 -0
  1425. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/alias.test +178 -0
  1426. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/braced.test +46 -0
  1427. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/commentAfterNamespace.test +22 -0
  1428. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUse.test +188 -0
  1429. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUseErrors.test +113 -0
  1430. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUsePositions.test +28 -0
  1431. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/groupUseTrailingComma.test +47 -0
  1432. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/invalidName.test +87 -0
  1433. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/mix.test +103 -0
  1434. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/name.test +50 -0
  1435. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/nested.test +30 -0
  1436. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/notBraced.test +49 -0
  1437. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/nsAfterHashbang.test +22 -0
  1438. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmt.test +60 -0
  1439. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmtInvalid.test +109 -0
  1440. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/switch.test +81 -0
  1441. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/tryCatch.test +144 -0
  1442. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/tryWithoutCatch.test +29 -0
  1443. data/helpers/vendor/nikic/php-parser/test/code/parser/stmt/unset.test +26 -0
  1444. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/comments.test +67 -0
  1445. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/commentsInCommaList.test +53 -0
  1446. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/anonymousClass.test +27 -0
  1447. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arrayDestructuring.test +14 -0
  1448. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arraySpread.test +8 -0
  1449. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arrow_function.test +18 -0
  1450. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/call.test +13 -0
  1451. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/closure.test +18 -0
  1452. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/constant_deref.test +13 -0
  1453. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/docStrings.test +86 -0
  1454. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/include.test +7 -0
  1455. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/intrinsics.test +29 -0
  1456. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/list.test +19 -0
  1457. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/literals.test +158 -0
  1458. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/numbers.test +35 -0
  1459. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/operators.test +151 -0
  1460. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/parentheses.test +86 -0
  1461. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/shortArraySyntax.test +11 -0
  1462. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/stringEscaping.test +23 -0
  1463. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/uvs.test +23 -0
  1464. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/variables.test +73 -0
  1465. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/expr/yield.test +46 -0
  1466. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/inlineHTMLandPHPtest.file-test +58 -0
  1467. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/nestedInlineHTML.test +16 -0
  1468. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/onlyInlineHTML.file-test +19 -0
  1469. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/onlyPHP.file-test +16 -0
  1470. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/alias.test +20 -0
  1471. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/break_continue.test +13 -0
  1472. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/class.test +53 -0
  1473. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/class_const.test +20 -0
  1474. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/const.test +11 -0
  1475. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/declare.test +17 -0
  1476. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/do_while.test +10 -0
  1477. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/for.test +28 -0
  1478. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/foreach.test +28 -0
  1479. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/function_signatures.test +43 -0
  1480. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/global_static_variables.test +11 -0
  1481. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/goto.test +9 -0
  1482. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/groupUse.test +16 -0
  1483. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/haltCompiler.file-test +27 -0
  1484. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/if.test +16 -0
  1485. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/multiCatch.test +19 -0
  1486. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/namespaces.test +50 -0
  1487. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/nullable_types.test +11 -0
  1488. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/properties.test +20 -0
  1489. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/switch.test +37 -0
  1490. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/throw.test +7 -0
  1491. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/traitUse.test +25 -0
  1492. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/tryCatch.test +24 -0
  1493. data/helpers/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/while.test +10 -0
  1494. data/helpers/vendor/nikic/php-parser/test/updateTests.php +32 -0
  1495. data/helpers/vendor/nikic/php-parser/test_old/run-php-src.sh +4 -0
  1496. data/helpers/vendor/nikic/php-parser/test_old/run.php +273 -0
  1497. data/helpers/vendor/ocramius/package-versions/CHANGELOG.md +120 -0
  1498. data/helpers/vendor/ocramius/package-versions/CONTRIBUTING.md +39 -0
  1499. data/helpers/vendor/ocramius/package-versions/LICENSE +19 -0
  1500. data/helpers/vendor/ocramius/package-versions/README.md +60 -0
  1501. data/helpers/vendor/ocramius/package-versions/composer.json +43 -0
  1502. data/helpers/vendor/ocramius/package-versions/composer.lock +2869 -0
  1503. data/helpers/vendor/ocramius/package-versions/infection.json.dist +11 -0
  1504. data/helpers/vendor/ocramius/package-versions/phpcs.xml.dist +21 -0
  1505. data/helpers/vendor/ocramius/package-versions/src/PackageVersions/FallbackVersions.php +88 -0
  1506. data/helpers/vendor/ocramius/package-versions/src/PackageVersions/Installer.php +201 -0
  1507. data/helpers/vendor/ocramius/package-versions/src/PackageVersions/Versions.php +76 -0
  1508. data/helpers/vendor/paragonie/random_compat/LICENSE +22 -0
  1509. data/helpers/vendor/paragonie/random_compat/build-phar.sh +5 -0
  1510. data/helpers/vendor/paragonie/random_compat/composer.json +34 -0
  1511. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey +5 -0
  1512. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc +11 -0
  1513. data/helpers/vendor/paragonie/random_compat/lib/random.php +32 -0
  1514. data/helpers/vendor/paragonie/random_compat/other/build_phar.php +57 -0
  1515. data/helpers/vendor/paragonie/random_compat/psalm-autoload.php +9 -0
  1516. data/helpers/vendor/paragonie/random_compat/psalm.xml +19 -0
  1517. data/helpers/vendor/php-cs-fixer/diff/ChangeLog.md +7 -0
  1518. data/helpers/vendor/php-cs-fixer/diff/LICENSE +5 -0
  1519. data/helpers/vendor/php-cs-fixer/diff/LICENSE_DIFF +31 -0
  1520. data/helpers/vendor/php-cs-fixer/diff/LICENSE_GECKO +19 -0
  1521. data/helpers/vendor/php-cs-fixer/diff/README.md +13 -0
  1522. data/helpers/vendor/php-cs-fixer/diff/composer.json +41 -0
  1523. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/ConfigurationException.php +36 -0
  1524. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/UnifiedDiffOutputBuilder.php +295 -0
  1525. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Chunk.php +103 -0
  1526. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Diff.php +73 -0
  1527. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Differ.php +399 -0
  1528. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/LongestCommonSubsequence.php +27 -0
  1529. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php +95 -0
  1530. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php +74 -0
  1531. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Line.php +54 -0
  1532. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Parser.php +110 -0
  1533. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Chunk.php +78 -0
  1534. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Diff.php +67 -0
  1535. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Differ.php +321 -0
  1536. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/Exception.php +15 -0
  1537. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/InvalidArgumentException.php +15 -0
  1538. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Line.php +44 -0
  1539. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/LongestCommonSubsequenceCalculator.php +24 -0
  1540. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  1541. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/AbstractChunkOutputBuilder.php +56 -0
  1542. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOnlyOutputBuilder.php +63 -0
  1543. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOutputBuilderInterface.php +19 -0
  1544. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/UnifiedDiffOutputBuilder.php +165 -0
  1545. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Parser.php +106 -0
  1546. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  1547. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Chunk.php +78 -0
  1548. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Diff.php +67 -0
  1549. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Differ.php +329 -0
  1550. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/ConfigurationException.php +40 -0
  1551. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/Exception.php +15 -0
  1552. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/InvalidArgumentException.php +15 -0
  1553. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Line.php +44 -0
  1554. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/LongestCommonSubsequenceCalculator.php +24 -0
  1555. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  1556. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/AbstractChunkOutputBuilder.php +56 -0
  1557. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOnlyOutputBuilder.php +66 -0
  1558. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOutputBuilderInterface.php +20 -0
  1559. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/StrictUnifiedDiffOutputBuilder.php +315 -0
  1560. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/UnifiedDiffOutputBuilder.php +259 -0
  1561. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Parser.php +106 -0
  1562. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  1563. data/helpers/vendor/phpstan/phpdoc-parser/build-abnfgen.sh +25 -0
  1564. data/helpers/vendor/phpstan/phpdoc-parser/composer.json +29 -0
  1565. data/helpers/vendor/phpstan/phpdoc-parser/doc/grammars/phpdoc-method.peg +41 -0
  1566. data/helpers/vendor/phpstan/phpdoc-parser/doc/grammars/phpdoc-param.peg +14 -0
  1567. data/helpers/vendor/phpstan/phpdoc-parser/doc/grammars/type.abnf +243 -0
  1568. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayItemNode.php +31 -0
  1569. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayNode.php +25 -0
  1570. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFalseNode.php +13 -0
  1571. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFloatNode.php +22 -0
  1572. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprIntegerNode.php +22 -0
  1573. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNode.php +10 -0
  1574. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNullNode.php +13 -0
  1575. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprStringNode.php +22 -0
  1576. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprTrueNode.php +13 -0
  1577. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstFetchNode.php +31 -0
  1578. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Node.php +10 -0
  1579. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/DeprecatedTagValueNode.php +22 -0
  1580. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/GenericTagValueNode.php +22 -0
  1581. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/InvalidTagValueNode.php +26 -0
  1582. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueNode.php +44 -0
  1583. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueParameterNode.php +46 -0
  1584. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamTagValueNode.php +37 -0
  1585. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocChildNode.php +10 -0
  1586. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocNode.php +190 -0
  1587. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagNode.php +26 -0
  1588. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagValueNode.php +10 -0
  1589. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTextNode.php +22 -0
  1590. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PropertyTagValueNode.php +32 -0
  1591. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ReturnTagValueNode.php +28 -0
  1592. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/TemplateTagValueNode.php +32 -0
  1593. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ThrowsTagValueNode.php +28 -0
  1594. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/VarTagValueNode.php +32 -0
  1595. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeItemNode.php +44 -0
  1596. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeNode.php +22 -0
  1597. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayTypeNode.php +22 -0
  1598. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeNode.php +31 -0
  1599. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeParameterNode.php +44 -0
  1600. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/GenericTypeNode.php +26 -0
  1601. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/IdentifierTypeNode.php +22 -0
  1602. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/IntersectionTypeNode.php +22 -0
  1603. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/NullableTypeNode.php +22 -0
  1604. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/ThisTypeNode.php +13 -0
  1605. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/TypeNode.php +10 -0
  1606. data/helpers/vendor/phpstan/phpdoc-parser/src/Ast/Type/UnionTypeNode.php +22 -0
  1607. data/helpers/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php +164 -0
  1608. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php +97 -0
  1609. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/ParserException.php +69 -0
  1610. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php +333 -0
  1611. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/TokenIterator.php +191 -0
  1612. data/helpers/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php +272 -0
  1613. data/helpers/vendor/phpstan/phpstan/.editorconfig +27 -0
  1614. data/helpers/vendor/phpstan/phpstan/.gitattributes +2 -0
  1615. data/helpers/vendor/phpstan/phpstan/.github/FUNDING.yml +4 -0
  1616. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Bug_report.md +18 -0
  1617. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Feature_request.md +8 -0
  1618. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Function_signature_mismatch.md +6 -0
  1619. data/helpers/vendor/phpstan/phpstan/.github/ISSUE_TEMPLATE/Support_question.md +8 -0
  1620. data/helpers/vendor/phpstan/phpstan/.github/mergeable.yml +20 -0
  1621. data/helpers/vendor/phpstan/phpstan/.gitignore +6 -0
  1622. data/helpers/vendor/phpstan/phpstan/.travis.yml +64 -0
  1623. data/helpers/vendor/phpstan/phpstan/BACKERS.md +65 -0
  1624. data/helpers/vendor/phpstan/phpstan/CODE_OF_CONDUCT.md +74 -0
  1625. data/helpers/vendor/phpstan/phpstan/LICENSE +21 -0
  1626. data/helpers/vendor/phpstan/phpstan/README.md +740 -0
  1627. data/helpers/vendor/phpstan/phpstan/appveyor.yml +70 -0
  1628. data/helpers/vendor/phpstan/phpstan/bin/phpstan +57 -0
  1629. data/helpers/vendor/phpstan/phpstan/build.xml +250 -0
  1630. data/helpers/vendor/phpstan/phpstan/composer.json +75 -0
  1631. data/helpers/vendor/phpstan/phpstan/conf/bleedingEdge.neon +13 -0
  1632. data/helpers/vendor/phpstan/phpstan/conf/config.level0.neon +170 -0
  1633. data/helpers/vendor/phpstan/phpstan/conf/config.level1.neon +11 -0
  1634. data/helpers/vendor/phpstan/phpstan/conf/config.level2.neon +45 -0
  1635. data/helpers/vendor/phpstan/phpstan/conf/config.level3.neon +78 -0
  1636. data/helpers/vendor/phpstan/phpstan/conf/config.level4.neon +88 -0
  1637. data/helpers/vendor/phpstan/phpstan/conf/config.level5.neon +6 -0
  1638. data/helpers/vendor/phpstan/phpstan/conf/config.level6.neon +6 -0
  1639. data/helpers/vendor/phpstan/phpstan/conf/config.level7.neon +5 -0
  1640. data/helpers/vendor/phpstan/phpstan/conf/config.levelmax.neon +2 -0
  1641. data/helpers/vendor/phpstan/phpstan/conf/config.neon +759 -0
  1642. data/helpers/vendor/phpstan/phpstan/phpcs.xml +72 -0
  1643. data/helpers/vendor/phpstan/phpstan/phpstan-baseline.neon +85 -0
  1644. data/helpers/vendor/phpstan/phpstan/src/AnalysedCodeException.php +8 -0
  1645. data/helpers/vendor/phpstan/phpstan/src/Analyser/Analyser.php +409 -0
  1646. data/helpers/vendor/phpstan/phpstan/src/Analyser/EnsuredNonNullabilityResult.php +37 -0
  1647. data/helpers/vendor/phpstan/phpstan/src/Analyser/EnsuredNonNullabilityResultExpression.php +33 -0
  1648. data/helpers/vendor/phpstan/phpstan/src/Analyser/Error.php +77 -0
  1649. data/helpers/vendor/phpstan/phpstan/src/Analyser/ExpressionContext.php +69 -0
  1650. data/helpers/vendor/phpstan/phpstan/src/Analyser/ExpressionResult.php +85 -0
  1651. data/helpers/vendor/phpstan/phpstan/src/Analyser/IgnoredError.php +69 -0
  1652. data/helpers/vendor/phpstan/phpstan/src/Analyser/NameScope.php +57 -0
  1653. data/helpers/vendor/phpstan/phpstan/src/Analyser/NodeScopeResolver.php +2533 -0
  1654. data/helpers/vendor/phpstan/phpstan/src/Analyser/OutOfClassScope.php +39 -0
  1655. data/helpers/vendor/phpstan/phpstan/src/Analyser/Scope.php +3210 -0
  1656. data/helpers/vendor/phpstan/phpstan/src/Analyser/ScopeContext.php +103 -0
  1657. data/helpers/vendor/phpstan/phpstan/src/Analyser/ScopeFactory.php +107 -0
  1658. data/helpers/vendor/phpstan/phpstan/src/Analyser/SpecifiedTypes.php +116 -0
  1659. data/helpers/vendor/phpstan/phpstan/src/Analyser/StatementExitPoint.php +32 -0
  1660. data/helpers/vendor/phpstan/phpstan/src/Analyser/StatementResult.php +101 -0
  1661. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifier.php +660 -0
  1662. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifierAwareExtension.php +10 -0
  1663. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifierContext.php +90 -0
  1664. data/helpers/vendor/phpstan/phpstan/src/Analyser/TypeSpecifierFactory.php +52 -0
  1665. data/helpers/vendor/phpstan/phpstan/src/Analyser/UndefinedVariableException.php +31 -0
  1666. data/helpers/vendor/phpstan/phpstan/src/Analyser/VariableTypeHolder.php +60 -0
  1667. data/helpers/vendor/phpstan/phpstan/src/Broker/AnonymousClassNameHelper.php +45 -0
  1668. data/helpers/vendor/phpstan/phpstan/src/Broker/Broker.php +613 -0
  1669. data/helpers/vendor/phpstan/phpstan/src/Broker/BrokerFactory.php +62 -0
  1670. data/helpers/vendor/phpstan/phpstan/src/Broker/ClassAutoloadingException.php +38 -0
  1671. data/helpers/vendor/phpstan/phpstan/src/Broker/ClassNotFoundException.php +22 -0
  1672. data/helpers/vendor/phpstan/phpstan/src/Broker/FunctionNotFoundException.php +22 -0
  1673. data/helpers/vendor/phpstan/phpstan/src/Cache/Cache.php +35 -0
  1674. data/helpers/vendor/phpstan/phpstan/src/Cache/CacheStorage.php +21 -0
  1675. data/helpers/vendor/phpstan/phpstan/src/Cache/FileCacheStorage.php +51 -0
  1676. data/helpers/vendor/phpstan/phpstan/src/Cache/MemoryCacheStorage.php +31 -0
  1677. data/helpers/vendor/phpstan/phpstan/src/Command/AnalyseApplication.php +161 -0
  1678. data/helpers/vendor/phpstan/phpstan/src/Command/AnalyseCommand.php +141 -0
  1679. data/helpers/vendor/phpstan/phpstan/src/Command/AnalysisResult.php +118 -0
  1680. data/helpers/vendor/phpstan/phpstan/src/Command/CommandHelper.php +407 -0
  1681. data/helpers/vendor/phpstan/phpstan/src/Command/DumpDependenciesCommand.php +99 -0
  1682. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/BaselineNeonErrorFormatter.php +75 -0
  1683. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php +102 -0
  1684. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/ErrorFormatter.php +22 -0
  1685. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/GitlabErrorFormatter.php +67 -0
  1686. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/JsonErrorFormatter.php +59 -0
  1687. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/RawErrorFormatter.php +38 -0
  1688. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorFormatter/TableErrorFormatter.php +107 -0
  1689. data/helpers/vendor/phpstan/phpstan/src/Command/ErrorsConsoleStyle.php +116 -0
  1690. data/helpers/vendor/phpstan/phpstan/src/Command/InceptionNotSuccessfulException.php +8 -0
  1691. data/helpers/vendor/phpstan/phpstan/src/Command/InceptionResult.php +111 -0
  1692. data/helpers/vendor/phpstan/phpstan/src/Dependency/DependencyDumper.php +143 -0
  1693. data/helpers/vendor/phpstan/phpstan/src/Dependency/DependencyResolver.php +256 -0
  1694. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/ConditionalTagsExtension.php +55 -0
  1695. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/Configurator.php +33 -0
  1696. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/Container.php +32 -0
  1697. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/ContainerFactory.php +102 -0
  1698. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/LoaderFactory.php +38 -0
  1699. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/Nette/NetteContainer.php +65 -0
  1700. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/ParametersSchemaExtension.php +94 -0
  1701. data/helpers/vendor/phpstan/phpstan/src/DependencyInjection/RulesExtension.php +30 -0
  1702. data/helpers/vendor/phpstan/phpstan/src/File/FileExcluder.php +69 -0
  1703. data/helpers/vendor/phpstan/phpstan/src/File/FileFinder.php +65 -0
  1704. data/helpers/vendor/phpstan/phpstan/src/File/FileFinderResult.php +37 -0
  1705. data/helpers/vendor/phpstan/phpstan/src/File/FileHelper.php +77 -0
  1706. data/helpers/vendor/phpstan/phpstan/src/File/FuzzyRelativePathHelper.php +105 -0
  1707. data/helpers/vendor/phpstan/phpstan/src/File/PathNotFoundException.php +22 -0
  1708. data/helpers/vendor/phpstan/phpstan/src/File/RelativePathHelper.php +10 -0
  1709. data/helpers/vendor/phpstan/phpstan/src/File/SimpleRelativePathHelper.php +25 -0
  1710. data/helpers/vendor/phpstan/phpstan/src/Internal/ContainerDynamicReturnTypeExtension.php +52 -0
  1711. data/helpers/vendor/phpstan/phpstan/src/Internal/ScopeIsInClassTypeSpecifyingExtension.php +85 -0
  1712. data/helpers/vendor/phpstan/phpstan/src/Internal/UnionTypeGetInternalDynamicReturnTypeExtension.php +40 -0
  1713. data/helpers/vendor/phpstan/phpstan/src/Node/ClosureReturnStatementsNode.php +66 -0
  1714. data/helpers/vendor/phpstan/phpstan/src/Node/ExecutionEndNode.php +58 -0
  1715. data/helpers/vendor/phpstan/phpstan/src/Node/FileNode.php +41 -0
  1716. data/helpers/vendor/phpstan/phpstan/src/Node/FunctionReturnStatementsNode.php +57 -0
  1717. data/helpers/vendor/phpstan/phpstan/src/Node/InArrowFunctionNode.php +35 -0
  1718. data/helpers/vendor/phpstan/phpstan/src/Node/InClassMethodNode.php +32 -0
  1719. data/helpers/vendor/phpstan/phpstan/src/Node/LiteralArrayItem.php +33 -0
  1720. data/helpers/vendor/phpstan/phpstan/src/Node/LiteralArrayNode.php +42 -0
  1721. data/helpers/vendor/phpstan/phpstan/src/Node/MethodReturnStatementsNode.php +57 -0
  1722. data/helpers/vendor/phpstan/phpstan/src/Node/ReturnStatement.php +33 -0
  1723. data/helpers/vendor/phpstan/phpstan/src/Node/UnreachableStatementNode.php +34 -0
  1724. data/helpers/vendor/phpstan/phpstan/src/Node/VirtualNode.php +10 -0
  1725. data/helpers/vendor/phpstan/phpstan/src/Parser/CachedParser.php +120 -0
  1726. data/helpers/vendor/phpstan/phpstan/src/Parser/DirectParser.php +53 -0
  1727. data/helpers/vendor/phpstan/phpstan/src/Parser/FunctionCallStatementFinder.php +45 -0
  1728. data/helpers/vendor/phpstan/phpstan/src/Parser/Parser.php +20 -0
  1729. data/helpers/vendor/phpstan/phpstan/src/Parser/ParserErrorsException.php +32 -0
  1730. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/PhpDocBlock.php +270 -0
  1731. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/PhpDocNodeResolver.php +248 -0
  1732. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/PhpDocStringResolver.php +38 -0
  1733. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/ResolvedPhpDocBlock.php +206 -0
  1734. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/DeprecatedTag.php +32 -0
  1735. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/MethodTag.php +66 -0
  1736. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/MethodTagParameter.php +70 -0
  1737. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/ParamTag.php +44 -0
  1738. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/PropertyTag.php +58 -0
  1739. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/ReturnTag.php +34 -0
  1740. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/ThrowsTag.php +34 -0
  1741. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/Tag/VarTag.php +34 -0
  1742. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolver.php +415 -0
  1743. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolverAwareExtension.php +10 -0
  1744. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolverExtension.php +16 -0
  1745. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeNodeResolverFactory.php +27 -0
  1746. data/helpers/vendor/phpstan/phpstan/src/PhpDoc/TypeStringResolver.php +39 -0
  1747. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationMethodReflection.php +107 -0
  1748. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationPropertyReflection.php +72 -0
  1749. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodParameterReflection.php +61 -0
  1750. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php +113 -0
  1751. data/helpers/vendor/phpstan/phpstan/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php +86 -0
  1752. data/helpers/vendor/phpstan/phpstan/src/Reflection/BrokerAwareClassReflectionExtension.php +11 -0
  1753. data/helpers/vendor/phpstan/phpstan/src/Reflection/BrokerAwareExtension.php +12 -0
  1754. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassConstantReflection.php +90 -0
  1755. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassMemberAccessAnswerer.php +18 -0
  1756. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassMemberReflection.php +16 -0
  1757. data/helpers/vendor/phpstan/phpstan/src/Reflection/ClassReflection.php +507 -0
  1758. data/helpers/vendor/phpstan/phpstan/src/Reflection/ConstantReflection.php +15 -0
  1759. data/helpers/vendor/phpstan/phpstan/src/Reflection/DeprecatableReflection.php +10 -0
  1760. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyConstantReflection.php +56 -0
  1761. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyConstructorReflection.php +63 -0
  1762. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyMethodReflection.php +64 -0
  1763. data/helpers/vendor/phpstan/phpstan/src/Reflection/Dummy/DummyPropertyReflection.php +51 -0
  1764. data/helpers/vendor/phpstan/phpstan/src/Reflection/ExtendedPropertyReflection.php +14 -0
  1765. data/helpers/vendor/phpstan/phpstan/src/Reflection/FinalizableReflection.php +10 -0
  1766. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionReflection.php +15 -0
  1767. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionReflectionFactory.php +35 -0
  1768. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionVariant.php +53 -0
  1769. data/helpers/vendor/phpstan/phpstan/src/Reflection/FunctionVariantWithPhpDocs.php +61 -0
  1770. data/helpers/vendor/phpstan/phpstan/src/Reflection/InaccessibleMethod.php +42 -0
  1771. data/helpers/vendor/phpstan/phpstan/src/Reflection/InternableReflection.php +10 -0
  1772. data/helpers/vendor/phpstan/phpstan/src/Reflection/MethodPrototypeReflection.php +63 -0
  1773. data/helpers/vendor/phpstan/phpstan/src/Reflection/MethodReflection.php +17 -0
  1774. data/helpers/vendor/phpstan/phpstan/src/Reflection/MethodsClassReflectionExtension.php +12 -0
  1775. data/helpers/vendor/phpstan/phpstan/src/Reflection/MissingConstantFromReflectionException.php +26 -0
  1776. data/helpers/vendor/phpstan/phpstan/src/Reflection/MissingMethodFromReflectionException.php +26 -0
  1777. data/helpers/vendor/phpstan/phpstan/src/Reflection/MissingPropertyFromReflectionException.php +26 -0
  1778. data/helpers/vendor/phpstan/phpstan/src/Reflection/Native/NativeFunctionReflection.php +73 -0
  1779. data/helpers/vendor/phpstan/phpstan/src/Reflection/Native/NativeMethodReflection.php +120 -0
  1780. data/helpers/vendor/phpstan/phpstan/src/Reflection/Native/NativeParameterReflection.php +89 -0
  1781. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParameterReflection.php +20 -0
  1782. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParameterReflectionWithPhpDocs.php +14 -0
  1783. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParametersAcceptor.php +25 -0
  1784. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParametersAcceptorSelector.php +247 -0
  1785. data/helpers/vendor/phpstan/phpstan/src/Reflection/ParametersAcceptorWithPhpDocs.php +19 -0
  1786. data/helpers/vendor/phpstan/phpstan/src/Reflection/PassedByReference.php +87 -0
  1787. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/BuiltinMethodReflection.php +57 -0
  1788. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/DummyParameter.php +63 -0
  1789. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/FakeBuiltinMethodReflection.php +123 -0
  1790. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/NativeBuiltinMethodReflection.php +116 -0
  1791. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpClassReflectionExtension.php +714 -0
  1792. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpFunctionFromParserNodeReflection.php +214 -0
  1793. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpFunctionReflection.php +268 -0
  1794. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpMethodFromParserNodeReflection.php +128 -0
  1795. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpMethodReflection.php +439 -0
  1796. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpMethodReflectionFactory.php +38 -0
  1797. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpParameterFromParserNodeReflection.php +106 -0
  1798. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpParameterReflection.php +95 -0
  1799. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/PhpPropertyReflection.php +168 -0
  1800. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/SimpleXMLElementProperty.php +83 -0
  1801. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/UniversalObjectCrateProperty.php +61 -0
  1802. data/helpers/vendor/phpstan/phpstan/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php +81 -0
  1803. data/helpers/vendor/phpstan/phpstan/src/Reflection/PhpDefect/PhpDefectClassReflectionExtension.php +241 -0
  1804. data/helpers/vendor/phpstan/phpstan/src/Reflection/PhpDefect/PhpDefectPropertyReflection.php +62 -0
  1805. data/helpers/vendor/phpstan/phpstan/src/Reflection/PropertiesClassReflectionExtension.php +12 -0
  1806. data/helpers/vendor/phpstan/phpstan/src/Reflection/PropertyReflection.php +16 -0
  1807. data/helpers/vendor/phpstan/phpstan/src/Reflection/ReflectionWithFilename.php +13 -0
  1808. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/FunctionSignature.php +53 -0
  1809. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/ParameterSignature.php +66 -0
  1810. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapParser.php +127 -0
  1811. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/SignatureMapProvider.php +82 -0
  1812. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/functionMap.php +13797 -0
  1813. data/helpers/vendor/phpstan/phpstan/src/Reflection/SignatureMap/functionMap_php74delta.php +53 -0
  1814. data/helpers/vendor/phpstan/phpstan/src/Reflection/ThrowableReflection.php +12 -0
  1815. data/helpers/vendor/phpstan/phpstan/src/Reflection/TrivialParametersAcceptor.php +29 -0
  1816. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/AllowedArrayKeysTypes.php +27 -0
  1817. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/AppendedArrayItemTypeRule.php +93 -0
  1818. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/AppendedArrayKeyTypeRule.php +94 -0
  1819. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/DeadForeachRule.php +38 -0
  1820. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php +85 -0
  1821. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php +57 -0
  1822. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/InvalidKeyInArrayItemRule.php +51 -0
  1823. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/IterableInForeachRule.php +61 -0
  1824. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php +140 -0
  1825. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignOpRule.php +95 -0
  1826. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/OffsetAccessAssignmentRule.php +89 -0
  1827. data/helpers/vendor/phpstan/phpstan/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php +33 -0
  1828. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/EchoRule.php +63 -0
  1829. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/InvalidCastRule.php +100 -0
  1830. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php +76 -0
  1831. data/helpers/vendor/phpstan/phpstan/src/Rules/Cast/PrintRule.php +57 -0
  1832. data/helpers/vendor/phpstan/phpstan/src/Rules/ClassCaseSensitivityCheck.php +62 -0
  1833. data/helpers/vendor/phpstan/phpstan/src/Rules/ClassNameNodePair.php +32 -0
  1834. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ClassConstantDeclarationRule.php +36 -0
  1835. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ClassConstantRule.php +165 -0
  1836. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassInClassExtendsRule.php +40 -0
  1837. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassInInstanceOfRule.php +82 -0
  1838. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassInTraitUseRule.php +41 -0
  1839. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassesInClassImplementsRule.php +41 -0
  1840. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php +41 -0
  1841. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/ImpossibleInstanceOfRule.php +69 -0
  1842. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/InstantiationRule.php +219 -0
  1843. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/NewStaticRule.php +68 -0
  1844. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/RequireParentConstructCallRule.php +147 -0
  1845. data/helpers/vendor/phpstan/phpstan/src/Rules/Classes/UnusedConstructorParametersRule.php +65 -0
  1846. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/BooleanAndConstantConditionRule.php +70 -0
  1847. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/BooleanNotConstantConditionRule.php +50 -0
  1848. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/BooleanOrConstantConditionRule.php +70 -0
  1849. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ConstantConditionRuleHelper.php +70 -0
  1850. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ElseIfConstantConditionRule.php +50 -0
  1851. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/IfConstantConditionRule.php +50 -0
  1852. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php +68 -0
  1853. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeHelper.php +245 -0
  1854. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php +84 -0
  1855. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php +99 -0
  1856. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php +85 -0
  1857. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php +48 -0
  1858. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/UnreachableIfBranchesRule.php +57 -0
  1859. data/helpers/vendor/phpstan/phpstan/src/Rules/Comparison/UnreachableTernaryElseBranchRule.php +52 -0
  1860. data/helpers/vendor/phpstan/phpstan/src/Rules/Constants/ConstantRule.php +35 -0
  1861. data/helpers/vendor/phpstan/phpstan/src/Rules/DeadCode/NoopRule.php +65 -0
  1862. data/helpers/vendor/phpstan/phpstan/src/Rules/DeadCode/UnreachableStatementRule.php +34 -0
  1863. data/helpers/vendor/phpstan/phpstan/src/Rules/Exceptions/CaughtExceptionExistenceRule.php +75 -0
  1864. data/helpers/vendor/phpstan/phpstan/src/Rules/Exceptions/DeadCatchRule.php +56 -0
  1865. data/helpers/vendor/phpstan/phpstan/src/Rules/FileRuleError.php +10 -0
  1866. data/helpers/vendor/phpstan/phpstan/src/Rules/FoundTypeResult.php +56 -0
  1867. data/helpers/vendor/phpstan/phpstan/src/Rules/FunctionCallParametersCheck.php +192 -0
  1868. data/helpers/vendor/phpstan/phpstan/src/Rules/FunctionDefinitionCheck.php +323 -0
  1869. data/helpers/vendor/phpstan/phpstan/src/Rules/FunctionReturnTypeCheck.php +88 -0
  1870. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ArrowFunctionReturnTypeRule.php +53 -0
  1871. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/CallCallablesRule.php +131 -0
  1872. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/CallToFunctionParametersRule.php +71 -0
  1873. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/CallToNonExistentFunctionRule.php +65 -0
  1874. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ClosureReturnTypeRule.php +53 -0
  1875. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php +41 -0
  1876. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php +42 -0
  1877. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ExistingClassesInTypehintsRule.php +47 -0
  1878. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php +83 -0
  1879. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/InnerFunctionRule.php +33 -0
  1880. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/NonExistentDefinedFunctionRule.php +51 -0
  1881. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/PrintfParametersRule.php +128 -0
  1882. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/ReturnTypeRule.php +77 -0
  1883. data/helpers/vendor/phpstan/phpstan/src/Rules/Functions/UnusedClosureUsesRule.php +49 -0
  1884. data/helpers/vendor/phpstan/phpstan/src/Rules/Generators/YieldFromTypeRule.php +94 -0
  1885. data/helpers/vendor/phpstan/phpstan/src/Rules/Generators/YieldInGeneratorRule.php +75 -0
  1886. data/helpers/vendor/phpstan/phpstan/src/Rules/Generators/YieldTypeRule.php +85 -0
  1887. data/helpers/vendor/phpstan/phpstan/src/Rules/LineRuleError.php +10 -0
  1888. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/CallMethodsRule.php +171 -0
  1889. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/CallStaticMethodsRule.php +279 -0
  1890. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/ExistingClassesInTypehintsRule.php +59 -0
  1891. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php +70 -0
  1892. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/MethodSignatureRule.php +188 -0
  1893. data/helpers/vendor/phpstan/phpstan/src/Rules/Methods/ReturnTypeRule.php +76 -0
  1894. data/helpers/vendor/phpstan/phpstan/src/Rules/Missing/MissingClosureNativeReturnTypehintRule.php +141 -0
  1895. data/helpers/vendor/phpstan/phpstan/src/Rules/Missing/MissingReturnRule.php +96 -0
  1896. data/helpers/vendor/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php +129 -0
  1897. data/helpers/vendor/phpstan/phpstan/src/Rules/Namespaces/ExistingNamesInUseRule.php +130 -0
  1898. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidBinaryOperationRule.php +119 -0
  1899. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidComparisonOperationRule.php +114 -0
  1900. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidIncDecOperationRule.php +77 -0
  1901. data/helpers/vendor/phpstan/phpstan/src/Rules/Operators/InvalidUnaryOperationRule.php +44 -0
  1902. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php +161 -0
  1903. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php +76 -0
  1904. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php +76 -0
  1905. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php +126 -0
  1906. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php +67 -0
  1907. data/helpers/vendor/phpstan/phpstan/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php +283 -0
  1908. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessPropertiesInAssignRule.php +39 -0
  1909. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessPropertiesRule.php +141 -0
  1910. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php +39 -0
  1911. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/AccessStaticPropertiesRule.php +203 -0
  1912. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php +70 -0
  1913. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/ExistingClassesInPropertiesRule.php +102 -0
  1914. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/PropertyDescriptor.php +26 -0
  1915. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/PropertyReflectionFinder.php +49 -0
  1916. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php +90 -0
  1917. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/TypesAssignedToPropertiesRule.php +94 -0
  1918. data/helpers/vendor/phpstan/phpstan/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php +96 -0
  1919. data/helpers/vendor/phpstan/phpstan/src/Rules/Regexp/RegularExpressionPatternRule.php +126 -0
  1920. data/helpers/vendor/phpstan/phpstan/src/Rules/Registry.php +46 -0
  1921. data/helpers/vendor/phpstan/phpstan/src/Rules/RegistryFactory.php +27 -0
  1922. data/helpers/vendor/phpstan/phpstan/src/Rules/Rule.php +23 -0
  1923. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleError.php +10 -0
  1924. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrorBuilder.php +63 -0
  1925. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessage.php +23 -0
  1926. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessageAndFile.php +32 -0
  1927. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessageAndLine.php +32 -0
  1928. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleErrors/RuleErrorWithMessageAndLineAndFile.php +42 -0
  1929. data/helpers/vendor/phpstan/phpstan/src/Rules/RuleLevelHelper.php +208 -0
  1930. data/helpers/vendor/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php +70 -0
  1931. data/helpers/vendor/phpstan/phpstan/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php +77 -0
  1932. data/helpers/vendor/phpstan/phpstan/src/Rules/TooWideTypehints/TooWidePrivateMethodReturnTypehintRule.php +80 -0
  1933. data/helpers/vendor/phpstan/phpstan/src/Rules/UnusedFunctionParametersCheck.php +87 -0
  1934. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/DefinedVariableInAnonymousFunctionUseRule.php +54 -0
  1935. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/DefinedVariableRule.php +73 -0
  1936. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/ThisVariableRule.php +57 -0
  1937. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/ThrowTypeRule.php +63 -0
  1938. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/VariableCertaintyInIssetRule.php +66 -0
  1939. data/helpers/vendor/phpstan/phpstan/src/Rules/Variables/VariableCloningRule.php +68 -0
  1940. data/helpers/vendor/phpstan/phpstan/src/ShouldNotHappenException.php +13 -0
  1941. data/helpers/vendor/phpstan/phpstan/src/Testing/LevelsTestCase.php +134 -0
  1942. data/helpers/vendor/phpstan/phpstan/src/Testing/RuleTestCase.php +154 -0
  1943. data/helpers/vendor/phpstan/phpstan/src/Testing/TestCase.php +375 -0
  1944. data/helpers/vendor/phpstan/phpstan/src/TrinaryLogic.php +148 -0
  1945. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/AccessoryType.php +10 -0
  1946. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/HasMethodType.php +122 -0
  1947. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/HasOffsetType.php +157 -0
  1948. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/HasPropertyType.php +107 -0
  1949. data/helpers/vendor/phpstan/phpstan/src/Type/Accessory/NonEmptyArrayType.php +161 -0
  1950. data/helpers/vendor/phpstan/phpstan/src/Type/ArrayType.php +349 -0
  1951. data/helpers/vendor/phpstan/phpstan/src/Type/BenevolentUnionType.php +45 -0
  1952. data/helpers/vendor/phpstan/phpstan/src/Type/BooleanType.php +98 -0
  1953. data/helpers/vendor/phpstan/phpstan/src/Type/CallableType.php +279 -0
  1954. data/helpers/vendor/phpstan/phpstan/src/Type/CallableTypeHelper.php +59 -0
  1955. data/helpers/vendor/phpstan/phpstan/src/Type/ClosureType.php +319 -0
  1956. data/helpers/vendor/phpstan/phpstan/src/Type/CommentHelper.php +20 -0
  1957. data/helpers/vendor/phpstan/phpstan/src/Type/CompoundType.php +14 -0
  1958. data/helpers/vendor/phpstan/phpstan/src/Type/CompoundTypeHelper.php +15 -0
  1959. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantArrayType.php +583 -0
  1960. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantArrayTypeAndMethod.php +76 -0
  1961. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantArrayTypeBuilder.php +111 -0
  1962. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantBooleanType.php +68 -0
  1963. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantFloatType.php +93 -0
  1964. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantIntegerType.php +61 -0
  1965. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantScalarToBooleanTrait.php +15 -0
  1966. data/helpers/vendor/phpstan/phpstan/src/Type/Constant/ConstantStringType.php +224 -0
  1967. data/helpers/vendor/phpstan/phpstan/src/Type/ConstantScalarType.php +13 -0
  1968. data/helpers/vendor/phpstan/phpstan/src/Type/ConstantType.php +10 -0
  1969. data/helpers/vendor/phpstan/phpstan/src/Type/DynamicFunctionReturnTypeExtension.php +16 -0
  1970. data/helpers/vendor/phpstan/phpstan/src/Type/DynamicMethodReturnTypeExtension.php +18 -0
  1971. data/helpers/vendor/phpstan/phpstan/src/Type/DynamicStaticMethodReturnTypeExtension.php +18 -0
  1972. data/helpers/vendor/phpstan/phpstan/src/Type/ErrorType.php +32 -0
  1973. data/helpers/vendor/phpstan/phpstan/src/Type/FileTypeMapper.php +320 -0
  1974. data/helpers/vendor/phpstan/phpstan/src/Type/FloatType.php +138 -0
  1975. data/helpers/vendor/phpstan/phpstan/src/Type/FunctionTypeSpecifyingExtension.php +18 -0
  1976. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateMixedType.php +192 -0
  1977. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateObjectType.php +198 -0
  1978. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateType.php +21 -0
  1979. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeArgumentStrategy.php +34 -0
  1980. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeFactory.php +28 -0
  1981. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeHelper.php +46 -0
  1982. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeMap.php +66 -0
  1983. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeParameterStrategy.php +38 -0
  1984. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeScope.php +37 -0
  1985. data/helpers/vendor/phpstan/phpstan/src/Type/Generic/TemplateTypeStrategy.php +15 -0
  1986. data/helpers/vendor/phpstan/phpstan/src/Type/IntegerType.php +87 -0
  1987. data/helpers/vendor/phpstan/phpstan/src/Type/IntersectionType.php +441 -0
  1988. data/helpers/vendor/phpstan/phpstan/src/Type/IterableType.php +221 -0
  1989. data/helpers/vendor/phpstan/phpstan/src/Type/JustNullableTypeTrait.php +59 -0
  1990. data/helpers/vendor/phpstan/phpstan/src/Type/MethodTypeSpecifyingExtension.php +20 -0
  1991. data/helpers/vendor/phpstan/phpstan/src/Type/MixedType.php +300 -0
  1992. data/helpers/vendor/phpstan/phpstan/src/Type/NeverType.php +223 -0
  1993. data/helpers/vendor/phpstan/phpstan/src/Type/NonexistentParentClassType.php +115 -0
  1994. data/helpers/vendor/phpstan/phpstan/src/Type/NullType.php +146 -0
  1995. data/helpers/vendor/phpstan/phpstan/src/Type/ObjectType.php +730 -0
  1996. data/helpers/vendor/phpstan/phpstan/src/Type/ObjectWithoutClassType.php +164 -0
  1997. data/helpers/vendor/phpstan/phpstan/src/Type/OperatorTypeSpecifyingExtension.php +12 -0
  1998. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php +67 -0
  1999. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php +72 -0
  2000. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php +48 -0
  2001. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayFilterFunctionReturnTypeReturnTypeExtension.php +124 -0
  2002. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php +41 -0
  2003. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php +65 -0
  2004. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php +58 -0
  2005. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php +58 -0
  2006. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php +45 -0
  2007. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php +69 -0
  2008. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php +52 -0
  2009. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php +72 -0
  2010. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php +58 -0
  2011. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php +67 -0
  2012. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php +165 -0
  2013. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php +58 -0
  2014. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php +81 -0
  2015. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php +43 -0
  2016. data/helpers/vendor/phpstan/phpstan/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php +36 -0
  2017. data/helpers/vendor/phpstan/phpstan/src/Type/Php/CountFunctionReturnTypeExtension.php +51 -0
  2018. data/helpers/vendor/phpstan/phpstan/src/Type/Php/CountFunctionTypeSpecifyingExtension.php +53 -0
  2019. data/helpers/vendor/phpstan/phpstan/src/Type/Php/CurlInitReturnTypeExtension.php +37 -0
  2020. data/helpers/vendor/phpstan/phpstan/src/Type/Php/DefineConstantTypeSpecifyingExtension.php +61 -0
  2021. data/helpers/vendor/phpstan/phpstan/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php +62 -0
  2022. data/helpers/vendor/phpstan/phpstan/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php +49 -0
  2023. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php +52 -0
  2024. data/helpers/vendor/phpstan/phpstan/src/Type/Php/FilterVarDynamicReturnTypeExtension.php +80 -0
  2025. data/helpers/vendor/phpstan/phpstan/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php +104 -0
  2026. data/helpers/vendor/phpstan/phpstan/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php +63 -0
  2027. data/helpers/vendor/phpstan/phpstan/src/Type/Php/HrtimeFunctionReturnTypeExtension.php +47 -0
  2028. data/helpers/vendor/phpstan/phpstan/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php +57 -0
  2029. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php +81 -0
  2030. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php +43 -0
  2031. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsBoolFunctionTypeSpecifyingExtension.php +42 -0
  2032. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php +69 -0
  2033. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsCountableFunctionTypeSpecifyingExtension.php +52 -0
  2034. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsFloatFunctionTypeSpecifyingExtension.php +46 -0
  2035. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsIntFunctionTypeSpecifyingExtension.php +46 -0
  2036. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php +43 -0
  2037. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsNullFunctionTypeSpecifyingExtension.php +42 -0
  2038. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsNumericFunctionTypeSpecifyingExtension.php +54 -0
  2039. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsObjectFunctionTypeSpecifyingExtension.php +42 -0
  2040. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsResourceFunctionTypeSpecifyingExtension.php +42 -0
  2041. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsScalarFunctionTypeSpecifyingExtension.php +51 -0
  2042. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsStringFunctionTypeSpecifyingExtension.php +42 -0
  2043. data/helpers/vendor/phpstan/phpstan/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php +85 -0
  2044. data/helpers/vendor/phpstan/phpstan/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php +62 -0
  2045. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MbFunctionsReturnTypeExtension.php +87 -0
  2046. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MethodExistsTypeSpecifyingExtension.php +62 -0
  2047. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php +48 -0
  2048. data/helpers/vendor/phpstan/phpstan/src/Type/Php/MinMaxFunctionReturnTypeExtension.php +183 -0
  2049. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php +137 -0
  2050. data/helpers/vendor/phpstan/phpstan/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php +54 -0
  2051. data/helpers/vendor/phpstan/phpstan/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php +62 -0
  2052. data/helpers/vendor/phpstan/phpstan/src/Type/Php/RangeFunctionReturnTypeExtension.php +106 -0
  2053. data/helpers/vendor/phpstan/phpstan/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php +86 -0
  2054. data/helpers/vendor/phpstan/phpstan/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php +25 -0
  2055. data/helpers/vendor/phpstan/phpstan/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php +47 -0
  2056. data/helpers/vendor/phpstan/phpstan/src/Type/Php/StatDynamicReturnTypeExtension.php +76 -0
  2057. data/helpers/vendor/phpstan/phpstan/src/Type/Php/StrSplitFunctionReturnTypeExtension.php +84 -0
  2058. data/helpers/vendor/phpstan/phpstan/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php +45 -0
  2059. data/helpers/vendor/phpstan/phpstan/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php +93 -0
  2060. data/helpers/vendor/phpstan/phpstan/src/Type/Php/VarExportFunctionDynamicReturnTypeExtension.php +58 -0
  2061. data/helpers/vendor/phpstan/phpstan/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php +82 -0
  2062. data/helpers/vendor/phpstan/phpstan/src/Type/RecursionGuard.php +26 -0
  2063. data/helpers/vendor/phpstan/phpstan/src/Type/ResourceType.php +87 -0
  2064. data/helpers/vendor/phpstan/phpstan/src/Type/StaticMethodTypeSpecifyingExtension.php +20 -0
  2065. data/helpers/vendor/phpstan/phpstan/src/Type/StaticResolvableType.php +12 -0
  2066. data/helpers/vendor/phpstan/phpstan/src/Type/StaticType.php +255 -0
  2067. data/helpers/vendor/phpstan/phpstan/src/Type/StringAlwaysAcceptingObjectWithToStringType.php +28 -0
  2068. data/helpers/vendor/phpstan/phpstan/src/Type/StringType.php +130 -0
  2069. data/helpers/vendor/phpstan/phpstan/src/Type/SubtractableType.php +16 -0
  2070. data/helpers/vendor/phpstan/phpstan/src/Type/ThisType.php +27 -0
  2071. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/ConstantScalarTypeTrait.php +53 -0
  2072. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/FalseyBooleanTypeTrait.php +16 -0
  2073. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeCallableTypeTrait.php +26 -0
  2074. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeIterableTypeTrait.php +32 -0
  2075. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeObjectTypeTrait.php +67 -0
  2076. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/MaybeOffsetAccessibleTypeTrait.php +32 -0
  2077. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonCallableTypeTrait.php +21 -0
  2078. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonGenericTypeTrait.php +16 -0
  2079. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonIterableTypeTrait.php +32 -0
  2080. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonObjectTypeTrait.php +64 -0
  2081. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/NonOffsetAccessibleTypeTrait.php +32 -0
  2082. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/ObjectTypeTrait.php +107 -0
  2083. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/TruthyBooleanTypeTrait.php +16 -0
  2084. data/helpers/vendor/phpstan/phpstan/src/Type/Traits/UndecidedBooleanTypeTrait.php +15 -0
  2085. data/helpers/vendor/phpstan/phpstan/src/Type/Type.php +110 -0
  2086. data/helpers/vendor/phpstan/phpstan/src/Type/TypeCombinator.php +593 -0
  2087. data/helpers/vendor/phpstan/phpstan/src/Type/TypeTraverser.php +47 -0
  2088. data/helpers/vendor/phpstan/phpstan/src/Type/TypeUtils.php +262 -0
  2089. data/helpers/vendor/phpstan/phpstan/src/Type/TypeWithClassName.php +10 -0
  2090. data/helpers/vendor/phpstan/phpstan/src/Type/TypehintHelper.php +122 -0
  2091. data/helpers/vendor/phpstan/phpstan/src/Type/UnionType.php +622 -0
  2092. data/helpers/vendor/phpstan/phpstan/src/Type/UnionTypeHelper.php +123 -0
  2093. data/helpers/vendor/phpstan/phpstan/src/Type/VerbosityLevel.php +67 -0
  2094. data/helpers/vendor/phpstan/phpstan/src/Type/VoidType.php +103 -0
  2095. data/helpers/vendor/phpstan/phpstan/tmp/.gitignore +4 -0
  2096. data/helpers/vendor/phpstan/phpstan/tmp/cache/.gitignore +2 -0
  2097. data/helpers/vendor/phpstan/phpstan/tmp/generated/.gitignore +2 -0
  2098. data/helpers/vendor/psr/log/.gitignore +1 -0
  2099. data/helpers/vendor/psr/log/LICENSE +19 -0
  2100. data/helpers/vendor/psr/log/Psr/Log/AbstractLogger.php +128 -0
  2101. data/helpers/vendor/psr/log/Psr/Log/InvalidArgumentException.php +7 -0
  2102. data/helpers/vendor/psr/log/Psr/Log/LogLevel.php +18 -0
  2103. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +18 -0
  2104. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +26 -0
  2105. data/helpers/vendor/psr/log/Psr/Log/LoggerInterface.php +123 -0
  2106. data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +140 -0
  2107. data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +28 -0
  2108. data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +144 -0
  2109. data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +146 -0
  2110. data/helpers/vendor/psr/log/README.md +52 -0
  2111. data/helpers/vendor/psr/log/composer.json +26 -0
  2112. data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
  2113. data/helpers/vendor/seld/jsonlint/.travis.yml +25 -0
  2114. data/helpers/vendor/seld/jsonlint/CHANGELOG.md +66 -0
  2115. data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
  2116. data/helpers/vendor/seld/jsonlint/README.md +89 -0
  2117. data/helpers/vendor/seld/jsonlint/bin/jsonlint +117 -0
  2118. data/helpers/vendor/seld/jsonlint/composer.json +24 -0
  2119. data/helpers/vendor/seld/jsonlint/phpunit.xml.dist +25 -0
  2120. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php +26 -0
  2121. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php +502 -0
  2122. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php +217 -0
  2123. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php +28 -0
  2124. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php +16 -0
  2125. data/helpers/vendor/seld/jsonlint/tests/JsonParserTest.php +230 -0
  2126. data/helpers/vendor/seld/jsonlint/tests/bom.json +6 -0
  2127. data/helpers/vendor/seld/jsonlint/tests/bootstrap.php +13 -0
  2128. data/helpers/vendor/seld/phar-utils/.gitignore +1 -0
  2129. data/helpers/vendor/seld/phar-utils/LICENSE +19 -0
  2130. data/helpers/vendor/seld/phar-utils/README.md +39 -0
  2131. data/helpers/vendor/seld/phar-utils/composer.json +26 -0
  2132. data/helpers/vendor/seld/phar-utils/composer.lock +19 -0
  2133. data/helpers/vendor/seld/phar-utils/src/Timestamps.php +192 -0
  2134. data/helpers/vendor/symfony/console/.gitignore +3 -0
  2135. data/helpers/vendor/symfony/console/Application.php +1266 -0
  2136. data/helpers/vendor/symfony/console/CHANGELOG.md +112 -0
  2137. data/helpers/vendor/symfony/console/Command/Command.php +668 -0
  2138. data/helpers/vendor/symfony/console/Command/HelpCommand.php +81 -0
  2139. data/helpers/vendor/symfony/console/Command/ListCommand.php +90 -0
  2140. data/helpers/vendor/symfony/console/Command/LockableTrait.php +72 -0
  2141. data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +46 -0
  2142. data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +64 -0
  2143. data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
  2144. data/helpers/vendor/symfony/console/ConsoleEvents.php +60 -0
  2145. data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +106 -0
  2146. data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +151 -0
  2147. data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
  2148. data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +29 -0
  2149. data/helpers/vendor/symfony/console/Descriptor/JsonDescriptor.php +168 -0
  2150. data/helpers/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +182 -0
  2151. data/helpers/vendor/symfony/console/Descriptor/TextDescriptor.php +342 -0
  2152. data/helpers/vendor/symfony/console/Descriptor/XmlDescriptor.php +248 -0
  2153. data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
  2154. data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +83 -0
  2155. data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
  2156. data/helpers/vendor/symfony/console/Event/ConsoleExceptionEvent.php +71 -0
  2157. data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +58 -0
  2158. data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +95 -0
  2159. data/helpers/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
  2160. data/helpers/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
  2161. data/helpers/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
  2162. data/helpers/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
  2163. data/helpers/vendor/symfony/console/Exception/LogicException.php +19 -0
  2164. data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
  2165. data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +243 -0
  2166. data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
  2167. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +183 -0
  2168. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
  2169. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +109 -0
  2170. data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
  2171. data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
  2172. data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +106 -0
  2173. data/helpers/vendor/symfony/console/Helper/Helper.php +138 -0
  2174. data/helpers/vendor/symfony/console/Helper/HelperInterface.php +39 -0
  2175. data/helpers/vendor/symfony/console/Helper/HelperSet.php +108 -0
  2176. data/helpers/vendor/symfony/console/Helper/InputAwareHelper.php +33 -0
  2177. data/helpers/vendor/symfony/console/Helper/ProcessHelper.php +141 -0
  2178. data/helpers/vendor/symfony/console/Helper/ProgressBar.php +614 -0
  2179. data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +270 -0
  2180. data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +499 -0
  2181. data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +124 -0
  2182. data/helpers/vendor/symfony/console/Helper/Table.php +698 -0
  2183. data/helpers/vendor/symfony/console/Helper/TableCell.php +75 -0
  2184. data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
  2185. data/helpers/vendor/symfony/console/Helper/TableStyle.php +258 -0
  2186. data/helpers/vendor/symfony/console/Input/ArgvInput.php +372 -0
  2187. data/helpers/vendor/symfony/console/Input/ArrayInput.php +208 -0
  2188. data/helpers/vendor/symfony/console/Input/Input.php +203 -0
  2189. data/helpers/vendor/symfony/console/Input/InputArgument.php +129 -0
  2190. data/helpers/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
  2191. data/helpers/vendor/symfony/console/Input/InputDefinition.php +404 -0
  2192. data/helpers/vendor/symfony/console/Input/InputInterface.php +163 -0
  2193. data/helpers/vendor/symfony/console/Input/InputOption.php +208 -0
  2194. data/helpers/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
  2195. data/helpers/vendor/symfony/console/Input/StringInput.php +72 -0
  2196. data/helpers/vendor/symfony/console/LICENSE +19 -0
  2197. data/helpers/vendor/symfony/console/Logger/ConsoleLogger.php +128 -0
  2198. data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
  2199. data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +152 -0
  2200. data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
  2201. data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
  2202. data/helpers/vendor/symfony/console/Output/Output.php +175 -0
  2203. data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
  2204. data/helpers/vendor/symfony/console/Output/StreamOutput.php +124 -0
  2205. data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +187 -0
  2206. data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
  2207. data/helpers/vendor/symfony/console/Question/Question.php +242 -0
  2208. data/helpers/vendor/symfony/console/README.md +20 -0
  2209. data/helpers/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
  2210. data/helpers/vendor/symfony/console/Style/OutputStyle.php +155 -0
  2211. data/helpers/vendor/symfony/console/Style/StyleInterface.php +153 -0
  2212. data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +431 -0
  2213. data/helpers/vendor/symfony/console/Terminal.php +163 -0
  2214. data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +176 -0
  2215. data/helpers/vendor/symfony/console/Tester/CommandTester.php +162 -0
  2216. data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1744 -0
  2217. data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +430 -0
  2218. data/helpers/vendor/symfony/console/Tests/Command/HelpCommandTest.php +71 -0
  2219. data/helpers/vendor/symfony/console/Tests/Command/ListCommandTest.php +113 -0
  2220. data/helpers/vendor/symfony/console/Tests/Command/LockableTraitTest.php +67 -0
  2221. data/helpers/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +59 -0
  2222. data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +58 -0
  2223. data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +256 -0
  2224. data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -0
  2225. data/helpers/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +35 -0
  2226. data/helpers/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +45 -0
  2227. data/helpers/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +82 -0
  2228. data/helpers/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +53 -0
  2229. data/helpers/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +27 -0
  2230. data/helpers/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +156 -0
  2231. data/helpers/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +11 -0
  2232. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +18 -0
  2233. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +26 -0
  2234. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +24 -0
  2235. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +27 -0
  2236. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +32 -0
  2237. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +27 -0
  2238. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +25 -0
  2239. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +32 -0
  2240. data/helpers/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +36 -0
  2241. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +26 -0
  2242. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +21 -0
  2243. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +29 -0
  2244. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +11 -0
  2245. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +10 -0
  2246. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +11 -0
  2247. data/helpers/vendor/symfony/console/Tests/Fixtures/FooCommand.php +33 -0
  2248. data/helpers/vendor/symfony/console/Tests/Fixtures/FooHiddenCommand.php +21 -0
  2249. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +28 -0
  2250. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +27 -0
  2251. data/helpers/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +36 -0
  2252. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +11 -0
  2253. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +11 -0
  2254. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +26 -0
  2255. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +26 -0
  2256. data/helpers/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +25 -0
  2257. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +11 -0
  2258. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +13 -0
  2259. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +17 -0
  2260. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +12 -0
  2261. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +13 -0
  2262. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +14 -0
  2263. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +17 -0
  2264. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +14 -0
  2265. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +15 -0
  2266. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +13 -0
  2267. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +16 -0
  2268. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +12 -0
  2269. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +34 -0
  2270. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +37 -0
  2271. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +16 -0
  2272. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +15 -0
  2273. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +26 -0
  2274. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +11 -0
  2275. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +19 -0
  2276. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +7 -0
  2277. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +3 -0
  2278. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +9 -0
  2279. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +7 -0
  2280. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +4 -0
  2281. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +6 -0
  2282. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +7 -0
  2283. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +6 -0
  2284. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +7 -0
  2285. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +8 -0
  2286. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +7 -0
  2287. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +13 -0
  2288. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +7 -0
  2289. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +32 -0
  2290. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +18 -0
  2291. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +6 -0
  2292. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +5 -0
  2293. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +9 -0
  2294. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +5 -0
  2295. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering.php +22 -0
  2296. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering2.php +21 -0
  2297. data/helpers/vendor/symfony/console/Tests/Fixtures/TestCommand.php +28 -0
  2298. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.json +156 -0
  2299. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.md +172 -0
  2300. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.txt +17 -0
  2301. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.xml +104 -0
  2302. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.json +509 -0
  2303. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.md +431 -0
  2304. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.txt +21 -0
  2305. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.xml +254 -0
  2306. data/helpers/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +16 -0
  2307. data/helpers/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +1 -0
  2308. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +269 -0
  2309. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +19 -0
  2310. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +5 -0
  2311. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +7 -0
  2312. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +18 -0
  2313. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +18 -0
  2314. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +6 -0
  2315. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +8 -0
  2316. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +8 -0
  2317. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +9 -0
  2318. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +9 -0
  2319. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +11 -0
  2320. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run1.txt +17 -0
  2321. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run2.txt +26 -0
  2322. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +26 -0
  2323. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run4.txt +1 -0
  2324. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.json +15 -0
  2325. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.md +12 -0
  2326. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.txt +7 -0
  2327. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.xml +12 -0
  2328. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.json +33 -0
  2329. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.md +29 -0
  2330. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.txt +13 -0
  2331. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.xml +21 -0
  2332. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +29 -0
  2333. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +13 -0
  2334. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +7 -0
  2335. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +5 -0
  2336. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +1 -0
  2337. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +5 -0
  2338. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +7 -0
  2339. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +7 -0
  2340. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +1 -0
  2341. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +5 -0
  2342. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +7 -0
  2343. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +7 -0
  2344. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +1 -0
  2345. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +7 -0
  2346. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +7 -0
  2347. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +8 -0
  2348. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +2 -0
  2349. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +6 -0
  2350. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +7 -0
  2351. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +7 -0
  2352. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +1 -0
  2353. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +7 -0
  2354. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +7 -0
  2355. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +7 -0
  2356. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +1 -0
  2357. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +7 -0
  2358. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +4 -0
  2359. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +0 -0
  2360. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +0 -0
  2361. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +5 -0
  2362. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +12 -0
  2363. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +7 -0
  2364. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +2 -0
  2365. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +10 -0
  2366. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +14 -0
  2367. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +8 -0
  2368. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +2 -0
  2369. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +9 -0
  2370. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +22 -0
  2371. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +16 -0
  2372. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +5 -0
  2373. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +14 -0
  2374. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.json +9 -0
  2375. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.md +6 -0
  2376. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +1 -0
  2377. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +4 -0
  2378. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.json +9 -0
  2379. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.md +8 -0
  2380. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +1 -0
  2381. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +7 -0
  2382. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.json +9 -0
  2383. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.md +8 -0
  2384. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +1 -0
  2385. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +5 -0
  2386. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.json +9 -0
  2387. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.md +8 -0
  2388. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +1 -0
  2389. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +5 -0
  2390. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.json +9 -0
  2391. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.md +9 -0
  2392. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +2 -0
  2393. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +6 -0
  2394. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.json +9 -0
  2395. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.md +8 -0
  2396. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +1 -0
  2397. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +5 -0
  2398. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +9 -0
  2399. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +8 -0
  2400. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +1 -0
  2401. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +7 -0
  2402. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +9 -0
  2403. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +8 -0
  2404. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +1 -0
  2405. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +7 -0
  2406. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +12 -0
  2407. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +8 -0
  2408. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +1 -0
  2409. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +8 -0
  2410. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +69 -0
  2411. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
  2412. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +344 -0
  2413. data/helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +34 -0
  2414. data/helpers/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +129 -0
  2415. data/helpers/vendor/symfony/console/Tests/Helper/HelperSetTest.php +127 -0
  2416. data/helpers/vendor/symfony/console/Tests/Helper/HelperTest.php +55 -0
  2417. data/helpers/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +118 -0
  2418. data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +805 -0
  2419. data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +175 -0
  2420. data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +1081 -0
  2421. data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +166 -0
  2422. data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +26 -0
  2423. data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +868 -0
  2424. data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +462 -0
  2425. data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +173 -0
  2426. data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +109 -0
  2427. data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +389 -0
  2428. data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +194 -0
  2429. data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +137 -0
  2430. data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
  2431. data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +213 -0
  2432. data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
  2433. data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
  2434. data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +176 -0
  2435. data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +59 -0
  2436. data/helpers/vendor/symfony/console/Tests/Question/ChoiceQuestionTest.php +64 -0
  2437. data/helpers/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php +62 -0
  2438. data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +118 -0
  2439. data/helpers/vendor/symfony/console/Tests/TerminalTest.php +97 -0
  2440. data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +70 -0
  2441. data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +212 -0
  2442. data/helpers/vendor/symfony/console/composer.json +56 -0
  2443. data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
  2444. data/helpers/vendor/symfony/debug/.gitignore +3 -0
  2445. data/helpers/vendor/symfony/debug/BufferingLogger.php +37 -0
  2446. data/helpers/vendor/symfony/debug/CHANGELOG.md +64 -0
  2447. data/helpers/vendor/symfony/debug/Debug.php +60 -0
  2448. data/helpers/vendor/symfony/debug/DebugClassLoader.php +455 -0
  2449. data/helpers/vendor/symfony/debug/ErrorHandler.php +787 -0
  2450. data/helpers/vendor/symfony/debug/Exception/ClassNotFoundException.php +36 -0
  2451. data/helpers/vendor/symfony/debug/Exception/ContextErrorException.php +40 -0
  2452. data/helpers/vendor/symfony/debug/Exception/FatalErrorException.php +82 -0
  2453. data/helpers/vendor/symfony/debug/Exception/FatalThrowableError.php +45 -0
  2454. data/helpers/vendor/symfony/debug/Exception/FlattenException.php +263 -0
  2455. data/helpers/vendor/symfony/debug/Exception/OutOfMemoryException.php +21 -0
  2456. data/helpers/vendor/symfony/debug/Exception/SilencedErrorContext.php +67 -0
  2457. data/helpers/vendor/symfony/debug/Exception/UndefinedFunctionException.php +36 -0
  2458. data/helpers/vendor/symfony/debug/Exception/UndefinedMethodException.php +36 -0
  2459. data/helpers/vendor/symfony/debug/ExceptionHandler.php +444 -0
  2460. data/helpers/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +214 -0
  2461. data/helpers/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +32 -0
  2462. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +84 -0
  2463. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +66 -0
  2464. data/helpers/vendor/symfony/debug/LICENSE +19 -0
  2465. data/helpers/vendor/symfony/debug/README.md +13 -0
  2466. data/helpers/vendor/symfony/debug/Resources/ext/README.md +134 -0
  2467. data/helpers/vendor/symfony/debug/Resources/ext/config.m4 +63 -0
  2468. data/helpers/vendor/symfony/debug/Resources/ext/config.w32 +13 -0
  2469. data/helpers/vendor/symfony/debug/Resources/ext/php_symfony_debug.h +60 -0
  2470. data/helpers/vendor/symfony/debug/Resources/ext/symfony_debug.c +283 -0
  2471. data/helpers/vendor/symfony/debug/Resources/ext/tests/001.phpt +155 -0
  2472. data/helpers/vendor/symfony/debug/Resources/ext/tests/002.phpt +65 -0
  2473. data/helpers/vendor/symfony/debug/Resources/ext/tests/002_1.phpt +48 -0
  2474. data/helpers/vendor/symfony/debug/Resources/ext/tests/003.phpt +87 -0
  2475. data/helpers/vendor/symfony/debug/Tests/DebugClassLoaderTest.php +445 -0
  2476. data/helpers/vendor/symfony/debug/Tests/ErrorHandlerTest.php +646 -0
  2477. data/helpers/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php +302 -0
  2478. data/helpers/vendor/symfony/debug/Tests/ExceptionHandlerTest.php +163 -0
  2479. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php +180 -0
  2480. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php +81 -0
  2481. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +76 -0
  2482. data/helpers/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php +13 -0
  2483. data/helpers/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php +3 -0
  2484. data/helpers/vendor/symfony/debug/Tests/Fixtures/DefinitionInEvaluatedCode.php +11 -0
  2485. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php +12 -0
  2486. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +12 -0
  2487. data/helpers/vendor/symfony/debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +22 -0
  2488. data/helpers/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +19 -0
  2489. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php +85 -0
  2490. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php +26 -0
  2491. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php +10 -0
  2492. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalClass.php +15 -0
  2493. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php +10 -0
  2494. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php +10 -0
  2495. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php +23 -0
  2496. data/helpers/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php +15 -0
  2497. data/helpers/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php +7 -0
  2498. data/helpers/vendor/symfony/debug/Tests/Fixtures/PEARClass.php +5 -0
  2499. data/helpers/vendor/symfony/debug/Tests/Fixtures/Throwing.php +3 -0
  2500. data/helpers/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php +24 -0
  2501. data/helpers/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php +13 -0
  2502. data/helpers/vendor/symfony/debug/Tests/Fixtures/casemismatch.php +7 -0
  2503. data/helpers/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php +7 -0
  2504. data/helpers/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php +7 -0
  2505. data/helpers/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php +7 -0
  2506. data/helpers/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php +7 -0
  2507. data/helpers/vendor/symfony/debug/Tests/HeaderMock.php +38 -0
  2508. data/helpers/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt +27 -0
  2509. data/helpers/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +47 -0
  2510. data/helpers/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt +35 -0
  2511. data/helpers/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt +42 -0
  2512. data/helpers/vendor/symfony/debug/composer.json +40 -0
  2513. data/helpers/vendor/symfony/debug/phpunit.xml.dist +33 -0
  2514. data/helpers/vendor/symfony/event-dispatcher/.gitignore +3 -0
  2515. data/helpers/vendor/symfony/event-dispatcher/CHANGELOG.md +42 -0
  2516. data/helpers/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php +198 -0
  2517. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +332 -0
  2518. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php +36 -0
  2519. data/helpers/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +125 -0
  2520. data/helpers/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +137 -0
  2521. data/helpers/vendor/symfony/event-dispatcher/Event.php +58 -0
  2522. data/helpers/vendor/symfony/event-dispatcher/EventDispatcher.php +238 -0
  2523. data/helpers/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +93 -0
  2524. data/helpers/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +46 -0
  2525. data/helpers/vendor/symfony/event-dispatcher/GenericEvent.php +175 -0
  2526. data/helpers/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +91 -0
  2527. data/helpers/vendor/symfony/event-dispatcher/LICENSE +19 -0
  2528. data/helpers/vendor/symfony/event-dispatcher/README.md +15 -0
  2529. data/helpers/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php +442 -0
  2530. data/helpers/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php +210 -0
  2531. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php +269 -0
  2532. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php +64 -0
  2533. data/helpers/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php +147 -0
  2534. data/helpers/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php +22 -0
  2535. data/helpers/vendor/symfony/event-dispatcher/Tests/EventTest.php +55 -0
  2536. data/helpers/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php +134 -0
  2537. data/helpers/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php +100 -0
  2538. data/helpers/vendor/symfony/event-dispatcher/composer.json +47 -0
  2539. data/helpers/vendor/symfony/event-dispatcher/phpunit.xml.dist +31 -0
  2540. data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
  2541. data/helpers/vendor/symfony/filesystem/CHANGELOG.md +53 -0
  2542. data/helpers/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
  2543. data/helpers/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
  2544. data/helpers/vendor/symfony/filesystem/Exception/IOException.php +39 -0
  2545. data/helpers/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +27 -0
  2546. data/helpers/vendor/symfony/filesystem/Filesystem.php +775 -0
  2547. data/helpers/vendor/symfony/filesystem/LICENSE +19 -0
  2548. data/helpers/vendor/symfony/filesystem/LockHandler.php +121 -0
  2549. data/helpers/vendor/symfony/filesystem/README.md +13 -0
  2550. data/helpers/vendor/symfony/filesystem/Tests/ExceptionTest.php +47 -0
  2551. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTest.php +1656 -0
  2552. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +165 -0
  2553. data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -0
  2554. data/helpers/vendor/symfony/filesystem/Tests/LockHandlerTest.php +144 -0
  2555. data/helpers/vendor/symfony/filesystem/composer.json +34 -0
  2556. data/helpers/vendor/symfony/filesystem/phpunit.xml.dist +30 -0
  2557. data/helpers/vendor/symfony/finder +1 -0
  2558. data/helpers/vendor/symfony/options-resolver/.gitignore +3 -0
  2559. data/helpers/vendor/symfony/options-resolver/CHANGELOG.md +52 -0
  2560. data/helpers/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +102 -0
  2561. data/helpers/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
  2562. data/helpers/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
  2563. data/helpers/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
  2564. data/helpers/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
  2565. data/helpers/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
  2566. data/helpers/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
  2567. data/helpers/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
  2568. data/helpers/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
  2569. data/helpers/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
  2570. data/helpers/vendor/symfony/options-resolver/LICENSE +19 -0
  2571. data/helpers/vendor/symfony/options-resolver/Options.php +22 -0
  2572. data/helpers/vendor/symfony/options-resolver/OptionsResolver.php +1065 -0
  2573. data/helpers/vendor/symfony/options-resolver/README.md +15 -0
  2574. data/helpers/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php +183 -0
  2575. data/helpers/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php +1619 -0
  2576. data/helpers/vendor/symfony/options-resolver/composer.json +33 -0
  2577. data/helpers/vendor/symfony/options-resolver/phpunit.xml.dist +31 -0
  2578. data/helpers/vendor/symfony/polyfill-ctype/Ctype.php +227 -0
  2579. data/helpers/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  2580. data/helpers/vendor/symfony/polyfill-ctype/README.md +12 -0
  2581. data/helpers/vendor/symfony/polyfill-ctype/bootstrap.php +26 -0
  2582. data/helpers/vendor/symfony/polyfill-ctype/composer.json +34 -0
  2583. data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  2584. data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +829 -0
  2585. data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
  2586. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1096 -0
  2587. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  2588. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1104 -0
  2589. data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +62 -0
  2590. data/helpers/vendor/symfony/polyfill-mbstring/composer.json +34 -0
  2591. data/helpers/vendor/symfony/polyfill-php70/LICENSE +19 -0
  2592. data/helpers/vendor/symfony/polyfill-php70/Php70.php +74 -0
  2593. data/helpers/vendor/symfony/polyfill-php70/README.md +28 -0
  2594. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php +5 -0
  2595. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php +5 -0
  2596. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php +5 -0
  2597. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/Error.php +5 -0
  2598. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php +5 -0
  2599. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php +23 -0
  2600. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php +5 -0
  2601. data/helpers/vendor/symfony/polyfill-php70/bootstrap.php +27 -0
  2602. data/helpers/vendor/symfony/polyfill-php70/composer.json +33 -0
  2603. data/helpers/vendor/symfony/polyfill-php72/LICENSE +19 -0
  2604. data/helpers/vendor/symfony/polyfill-php72/Php72.php +216 -0
  2605. data/helpers/vendor/symfony/polyfill-php72/README.md +27 -0
  2606. data/helpers/vendor/symfony/polyfill-php72/bootstrap.php +36 -0
  2607. data/helpers/vendor/symfony/polyfill-php72/composer.json +31 -0
  2608. data/helpers/vendor/symfony/process +1 -0
  2609. data/helpers/vendor/symfony/stopwatch/.gitignore +3 -0
  2610. data/helpers/vendor/symfony/stopwatch/CHANGELOG.md +9 -0
  2611. data/helpers/vendor/symfony/stopwatch/LICENSE +19 -0
  2612. data/helpers/vendor/symfony/stopwatch/README.md +13 -0
  2613. data/helpers/vendor/symfony/stopwatch/Section.php +200 -0
  2614. data/helpers/vendor/symfony/stopwatch/Stopwatch.php +176 -0
  2615. data/helpers/vendor/symfony/stopwatch/StopwatchEvent.php +248 -0
  2616. data/helpers/vendor/symfony/stopwatch/StopwatchPeriod.php +76 -0
  2617. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchEventTest.php +172 -0
  2618. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchPeriodTest.php +67 -0
  2619. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchTest.php +182 -0
  2620. data/helpers/vendor/symfony/stopwatch/composer.json +33 -0
  2621. data/helpers/vendor/symfony/stopwatch/phpunit.xml.dist +30 -0
  2622. metadata +2968 -4
@@ -0,0 +1,120 @@
1
+ # CHANGELOG
2
+
3
+ ## 1.1.3 - 2017-09-06
4
+
5
+ This release fixes a bug that caused PackageVersions to prevent
6
+ the `composer remove` and `composer update` commands to fail when
7
+ this package is removed.
8
+
9
+ In addition to that, mutation testing has been added to the suite,
10
+ ensuring that the package is accurately and extensively tested.
11
+
12
+ Total issues resolved: **3**
13
+
14
+ - [40: Mutation testing, PHP 7.1 testing](https://github.com/Ocramius/PackageVersions/pull/40) thanks to @Ocramius
15
+ - [41: Removing this package on install results in file access error](https://github.com/Ocramius/PackageVersions/issues/41) thanks to @Xerkus
16
+ - [46: #41 Avoid issues when the package is scheduled for removal](https://github.com/Ocramius/PackageVersions/pull/46) thanks to @Jean85
17
+
18
+ ## 1.1.2 - 2016-12-30
19
+
20
+ This release fixes a bug that caused PackageVersions to be enabled
21
+ even when it was part of a globally installed package.
22
+
23
+ Total issues resolved: **3**
24
+
25
+ - [35: remove all temp directories](https://github.com/Ocramius/PackageVersions/pull/35)
26
+ - [38: Interferes with other projects when installed globally](https://github.com/Ocramius/PackageVersions/issues/38)
27
+ - [39: Ignore the global plugin when updating local projects](https://github.com/Ocramius/PackageVersions/pull/39)
28
+
29
+ ## 1.1.1 - 2016-07-25
30
+
31
+ This release removes the [`"files"`](https://getcomposer.org/doc/04-schema.md#files) directive from
32
+ [`composer.json`](https://github.com/Ocramius/PackageVersions/commit/86f2636f7c5e7b56fa035fa3826d5fcf80b6dc72),
33
+ as it is no longer needed for `composer install --classmap-authoritative`.
34
+ Also, that directive was causing issues with HHVM installations, since
35
+ PackageVersions is not compatible with it.
36
+
37
+ Total issues resolved: **1**
38
+
39
+ - [34: Fatal error during travis build after update to 1.1.0](https://github.com/Ocramius/PackageVersions/issues/34)
40
+
41
+ ## 1.1.0 - 2016-07-22
42
+
43
+ This release introduces support for running `composer install --classmap-authoritative`
44
+ and `composer install --no-scripts`. Please note that performance
45
+ while using these modes may be degraded, but the package will
46
+ still work.
47
+
48
+ Additionally, the package was tuned to prevent the plugin from
49
+ running twice at installation.
50
+
51
+ Total issues resolved: **10**
52
+
53
+ - [18: Fails when using composer install --no-scripts](https://github.com/Ocramius/PackageVersions/issues/18)
54
+ - [20: CS (spacing)](https://github.com/Ocramius/PackageVersions/pull/20)
55
+ - [22: Document the way the require-dev section is treated](https://github.com/Ocramius/PackageVersions/issues/22)
56
+ - [23: Underline that composer.lock is used as source of information](https://github.com/Ocramius/PackageVersions/pull/23)
57
+ - [27: Fix incompatibility with --classmap-authoritative](https://github.com/Ocramius/PackageVersions/pull/27)
58
+ - [29: mention optimize-autoloader composer.json config option in README](https://github.com/Ocramius/PackageVersions/pull/29)
59
+ - [30: The version class is generated twice during composer update](https://github.com/Ocramius/PackageVersions/issues/30)
60
+ - [31: Remove double registration of the event listeners](https://github.com/Ocramius/PackageVersions/pull/31)
61
+ - [32: Update the usage of mock APIs to use the new API](https://github.com/Ocramius/PackageVersions/pull/32)
62
+ - [33: Fix for #18 - support running with --no-scripts flag](https://github.com/Ocramius/PackageVersions/pull/33)
63
+
64
+ ## 1.0.4 - 2016-04-23
65
+
66
+ This release includes a fix/workaround for composer/composer#5237,
67
+ which causes `ocramius/package-versions` to sometimes generate a
68
+ `Versions` class with malformed name (something like
69
+ `Versions_composer_tmp0`) when running `composer require <package-name>`.
70
+
71
+ Total issues resolved: **2**
72
+
73
+ - [16: Workaround for composer/composer#5237 - class parsing](https://github.com/Ocramius/PackageVersions/pull/16)
74
+ - [17: Weird Class name being generated](https://github.com/Ocramius/PackageVersions/issues/17)
75
+
76
+ ## 1.0.3 - 2016-02-26
77
+
78
+ This release fixes an issue related to concurrent autoloader
79
+ re-generation caused by multiple composer plugins being installed.
80
+ The issue was solved by removing autoloader re-generation from this
81
+ package, but it may still affect other packages.
82
+
83
+ It is now recommended that you run `composer dump-autoload --optimize`
84
+ after installation when using this particular package.
85
+ Please note that `composer (install|update) -o` is not sufficient
86
+ to avoid autoload overhead when using this particular package.
87
+
88
+ Total issues resolved: **1**
89
+
90
+ - [15: Remove autoload re-dump optimization](https://github.com/Ocramius/PackageVersions/pull/15)
91
+
92
+ ## 1.0.2 - 2016-02-24
93
+
94
+ This release fixes issues related to installing the component without
95
+ any dev dependencies or with packages that don't have a source or dist
96
+ reference, which is usual with packages defined directly in the
97
+ `composer.json`.
98
+
99
+ Total issues resolved: **3**
100
+
101
+ - [11: fix composer install --no-dev PHP7](https://github.com/Ocramius/PackageVersions/pull/11)
102
+ - [12: Packages don't always have a source/reference](https://github.com/Ocramius/PackageVersions/issues/12)
103
+ - [13: Fix #12 - support dist and missing package version references](https://github.com/Ocramius/PackageVersions/pull/13)
104
+
105
+ ## 1.0.1 - 2016-02-01
106
+
107
+ This release fixes an issue related with composer updates to
108
+ already installed versions.
109
+ Using `composer require` within a package that already used
110
+ `ocramius/package-versions` caused the installation to be unable
111
+ to write the `PackageVersions\Versions` class to a file.
112
+
113
+ Total issues resolved: **6**
114
+
115
+ - [2: remove unused use statement](https://github.com/Ocramius/PackageVersions/pull/2)
116
+ - [3: Remove useless files from dist package](https://github.com/Ocramius/PackageVersions/pull/3)
117
+ - [5: failed to open stream: phar error: write operations disabled by the php.ini setting phar.readonly](https://github.com/Ocramius/PackageVersions/issues/5)
118
+ - [6: Fix/#5 use composer vendor dir](https://github.com/Ocramius/PackageVersions/pull/6)
119
+ - [7: Hotfix - #5 generate package versions also when in phar context](https://github.com/Ocramius/PackageVersions/pull/7)
120
+ - [8: Versions class should be ignored by VCS, as it is an install-time artifact](https://github.com/Ocramius/PackageVersions/pull/8)
@@ -0,0 +1,39 @@
1
+ ---
2
+ title: Contributing
3
+ ---
4
+
5
+ # Contributing
6
+
7
+ * Coding standard for the project is [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
8
+ * The project will follow strict [object calisthenics](http://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php)
9
+ * Any contribution must provide tests for additional introduced conditions
10
+ * Any un-confirmed issue needs a failing test case before being accepted
11
+ * Pull requests must be sent from a new hotfix/feature branch, not from `master`.
12
+
13
+ ## Installation
14
+
15
+ To install the project and run the tests, you need to clone it first:
16
+
17
+ ```sh
18
+ $ git clone git://github.com/Ocramius/PackageVersions.git
19
+ ```
20
+
21
+ You will then need to run a composer installation:
22
+
23
+ ```sh
24
+ $ cd PackageVersions
25
+ $ curl -s https://getcomposer.org/installer | php
26
+ $ php composer.phar update
27
+ ```
28
+
29
+ ## Testing
30
+
31
+ The PHPUnit version to be used is the one installed as a dev- dependency via composer:
32
+
33
+ ```sh
34
+ $ ./vendor/bin/phpunit
35
+ ```
36
+
37
+ Accepted coverage for new contributions is 80%. Any contribution not satisfying this requirement
38
+ won't be merged.
39
+
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2016 Marco Pivetta
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,60 @@
1
+ # Package Versions
2
+
3
+ This utility provides quick and easy access to version information of composer dependencies.
4
+
5
+ This information is derived from the ```composer.lock``` file which is (re)generated during ```composer install``` or ```composer update```.
6
+
7
+ ```php
8
+ $version = \PackageVersions\Versions::getVersion('ocramius/package-versions');
9
+
10
+ var_dump($version); // 1.0.0@0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33
11
+ ```
12
+
13
+ [![Build Status](https://travis-ci.org/Ocramius/PackageVersions.svg?branch=master)](https://travis-ci.org/Ocramius/PackageVersions)
14
+ [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Ocramius/PackageVersions/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Ocramius/PackageVersions/?branch=master)
15
+ [![Code Coverage](https://scrutinizer-ci.com/g/Ocramius/PackageVersions/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/Ocramius/PackageVersions/?branch=master)
16
+ [![Downloads](https://img.shields.io/packagist/dt/ocramius/package-versions.svg)](https://packagist.org/packages/ocramius/package-versions)
17
+ [![Packagist](https://img.shields.io/packagist/v/ocramius/package-versions.svg)](https://packagist.org/packages/ocramius/package-versions)
18
+ [![Dependencies](https://tidelift.com/badges/github/packagist/ocramius%2Fpackage-versions)](https://tidelift.com/subscription/pkg/packagist-ocramius%2Fpackage-versions?utm_source=packagist-ocramius%2Fpackage-versions&utm_medium=readme)
19
+
20
+ ### Installation
21
+
22
+ ```sh
23
+ composer require ocramius/package-versions
24
+ ```
25
+
26
+ It is suggested that you use a optimized composer autoloader in order to prevent
27
+ autoload I/O when accessing the `PackageVersions\Versions` API:
28
+
29
+ Therefore you should use `optimize-autoloader: true` in your composer.json:
30
+ ```
31
+ ...
32
+ "config": {
33
+ "optimize-autoloader": true
34
+ },
35
+ ...
36
+ ```
37
+ see https://getcomposer.org/doc/06-config.md#optimize-autoloader
38
+
39
+ In case you manually generate your autoloader via the CLI use the `--optimize` flag:
40
+
41
+ ```sh
42
+ composer dump-autoload --optimize
43
+ ```
44
+
45
+ ### Use-cases
46
+
47
+ This repository implements `PackageVersions\Versions::getVersion()` in such a way that no IO
48
+ happens when calling it, because the list of package versions is compiled during composer
49
+ installation.
50
+
51
+ This is especially useful when you want to generate assets/code/artifacts that are computed from
52
+ the current version of a certain dependency. Doing so at runtime by checking the installed
53
+ version of a package would be too expensive, and this package mitigates that.
54
+
55
+ ## Professional Support
56
+
57
+ [Professionally supported `ocramius/package-versions` is available through Tidelift](https://tidelift.com/subscription/pkg/packagist-ocramius-package-versions?utm_source=packagist-ocramius-package-versions&utm_medium=referral&utm_campaign=readme).
58
+
59
+ You can also contact the maintainer at ocramius@gmail.com for looking into issues related to this package
60
+ in your private projects.
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "ocramius/package-versions",
3
+ "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
4
+ "type": "composer-plugin",
5
+ "license": "MIT",
6
+ "authors": [
7
+ {
8
+ "name": "Marco Pivetta",
9
+ "email": "ocramius@gmail.com"
10
+ }
11
+ ],
12
+ "require": {
13
+ "php": "^7.1.0",
14
+ "composer-plugin-api": "^1.0.0"
15
+ },
16
+ "require-dev": {
17
+ "phpunit/phpunit": "^7.0.0",
18
+ "infection/infection": "^0.7.1",
19
+ "composer/composer": "^1.6.3",
20
+ "ext-zip": "*",
21
+ "doctrine/coding-standard": "^5.0.1"
22
+ },
23
+ "autoload": {
24
+ "psr-4": {
25
+ "PackageVersions\\": "src/PackageVersions"
26
+ }
27
+ },
28
+ "autoload-dev": {
29
+ "psr-4": {
30
+ "PackageVersionsTest\\": "test/PackageVersionsTest"
31
+ }
32
+ },
33
+ "extra": {
34
+ "class": "PackageVersions\\Installer",
35
+ "branch-alias": {
36
+ "dev-master": "2.0.x-dev"
37
+ }
38
+ },
39
+ "scripts": {
40
+ "post-update-cmd": "PackageVersions\\Installer::dumpVersionsClass",
41
+ "post-install-cmd": "PackageVersions\\Installer::dumpVersionsClass"
42
+ }
43
+ }
@@ -0,0 +1,2869 @@
1
+ {
2
+ "_readme": [
3
+ "This file locks the dependencies of your project to a known state",
4
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
+ "This file is @generated automatically"
6
+ ],
7
+ "content-hash": "8193d241c36d581f93f05282ea504ec5",
8
+ "packages": [],
9
+ "packages-dev": [
10
+ {
11
+ "name": "composer/ca-bundle",
12
+ "version": "1.1.1",
13
+ "source": {
14
+ "type": "git",
15
+ "url": "https://github.com/composer/ca-bundle.git",
16
+ "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169"
17
+ },
18
+ "dist": {
19
+ "type": "zip",
20
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d2c0a83b7533d6912e8d516756ebd34f893e9169",
21
+ "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169",
22
+ "shasum": ""
23
+ },
24
+ "require": {
25
+ "ext-openssl": "*",
26
+ "ext-pcre": "*",
27
+ "php": "^5.3.2 || ^7.0"
28
+ },
29
+ "require-dev": {
30
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
31
+ "psr/log": "^1.0",
32
+ "symfony/process": "^2.5 || ^3.0 || ^4.0"
33
+ },
34
+ "type": "library",
35
+ "extra": {
36
+ "branch-alias": {
37
+ "dev-master": "1.x-dev"
38
+ }
39
+ },
40
+ "autoload": {
41
+ "psr-4": {
42
+ "Composer\\CaBundle\\": "src"
43
+ }
44
+ },
45
+ "notification-url": "https://packagist.org/downloads/",
46
+ "license": [
47
+ "MIT"
48
+ ],
49
+ "authors": [
50
+ {
51
+ "name": "Jordi Boggiano",
52
+ "email": "j.boggiano@seld.be",
53
+ "homepage": "http://seld.be"
54
+ }
55
+ ],
56
+ "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
57
+ "keywords": [
58
+ "cabundle",
59
+ "cacert",
60
+ "certificate",
61
+ "ssl",
62
+ "tls"
63
+ ],
64
+ "time": "2018-03-29T19:57:20+00:00"
65
+ },
66
+ {
67
+ "name": "composer/composer",
68
+ "version": "1.6.4",
69
+ "source": {
70
+ "type": "git",
71
+ "url": "https://github.com/composer/composer.git",
72
+ "reference": "86ad51e8a3c64c9782446aae740a61fc6faa2522"
73
+ },
74
+ "dist": {
75
+ "type": "zip",
76
+ "url": "https://api.github.com/repos/composer/composer/zipball/86ad51e8a3c64c9782446aae740a61fc6faa2522",
77
+ "reference": "86ad51e8a3c64c9782446aae740a61fc6faa2522",
78
+ "shasum": ""
79
+ },
80
+ "require": {
81
+ "composer/ca-bundle": "^1.0",
82
+ "composer/semver": "^1.0",
83
+ "composer/spdx-licenses": "^1.2",
84
+ "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
85
+ "php": "^5.3.2 || ^7.0",
86
+ "psr/log": "^1.0",
87
+ "seld/cli-prompt": "^1.0",
88
+ "seld/jsonlint": "^1.4",
89
+ "seld/phar-utils": "^1.0",
90
+ "symfony/console": "^2.7 || ^3.0 || ^4.0",
91
+ "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
92
+ "symfony/finder": "^2.7 || ^3.0 || ^4.0",
93
+ "symfony/process": "^2.7 || ^3.0 || ^4.0"
94
+ },
95
+ "require-dev": {
96
+ "phpunit/phpunit": "^4.8.35 || ^5.7",
97
+ "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
98
+ },
99
+ "suggest": {
100
+ "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
101
+ "ext-zip": "Enabling the zip extension allows you to unzip archives",
102
+ "ext-zlib": "Allow gzip compression of HTTP requests"
103
+ },
104
+ "bin": [
105
+ "bin/composer"
106
+ ],
107
+ "type": "library",
108
+ "extra": {
109
+ "branch-alias": {
110
+ "dev-master": "1.6-dev"
111
+ }
112
+ },
113
+ "autoload": {
114
+ "psr-4": {
115
+ "Composer\\": "src/Composer"
116
+ }
117
+ },
118
+ "notification-url": "https://packagist.org/downloads/",
119
+ "license": [
120
+ "MIT"
121
+ ],
122
+ "authors": [
123
+ {
124
+ "name": "Nils Adermann",
125
+ "email": "naderman@naderman.de",
126
+ "homepage": "http://www.naderman.de"
127
+ },
128
+ {
129
+ "name": "Jordi Boggiano",
130
+ "email": "j.boggiano@seld.be",
131
+ "homepage": "http://seld.be"
132
+ }
133
+ ],
134
+ "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
135
+ "homepage": "https://getcomposer.org/",
136
+ "keywords": [
137
+ "autoload",
138
+ "dependency",
139
+ "package"
140
+ ],
141
+ "time": "2018-04-13T10:04:24+00:00"
142
+ },
143
+ {
144
+ "name": "composer/semver",
145
+ "version": "1.4.2",
146
+ "source": {
147
+ "type": "git",
148
+ "url": "https://github.com/composer/semver.git",
149
+ "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
150
+ },
151
+ "dist": {
152
+ "type": "zip",
153
+ "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
154
+ "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
155
+ "shasum": ""
156
+ },
157
+ "require": {
158
+ "php": "^5.3.2 || ^7.0"
159
+ },
160
+ "require-dev": {
161
+ "phpunit/phpunit": "^4.5 || ^5.0.5",
162
+ "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
163
+ },
164
+ "type": "library",
165
+ "extra": {
166
+ "branch-alias": {
167
+ "dev-master": "1.x-dev"
168
+ }
169
+ },
170
+ "autoload": {
171
+ "psr-4": {
172
+ "Composer\\Semver\\": "src"
173
+ }
174
+ },
175
+ "notification-url": "https://packagist.org/downloads/",
176
+ "license": [
177
+ "MIT"
178
+ ],
179
+ "authors": [
180
+ {
181
+ "name": "Nils Adermann",
182
+ "email": "naderman@naderman.de",
183
+ "homepage": "http://www.naderman.de"
184
+ },
185
+ {
186
+ "name": "Jordi Boggiano",
187
+ "email": "j.boggiano@seld.be",
188
+ "homepage": "http://seld.be"
189
+ },
190
+ {
191
+ "name": "Rob Bast",
192
+ "email": "rob.bast@gmail.com",
193
+ "homepage": "http://robbast.nl"
194
+ }
195
+ ],
196
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
197
+ "keywords": [
198
+ "semantic",
199
+ "semver",
200
+ "validation",
201
+ "versioning"
202
+ ],
203
+ "time": "2016-08-30T16:08:34+00:00"
204
+ },
205
+ {
206
+ "name": "composer/spdx-licenses",
207
+ "version": "1.3.0",
208
+ "source": {
209
+ "type": "git",
210
+ "url": "https://github.com/composer/spdx-licenses.git",
211
+ "reference": "7e111c50db92fa2ced140f5ba23b4e261bc77a30"
212
+ },
213
+ "dist": {
214
+ "type": "zip",
215
+ "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7e111c50db92fa2ced140f5ba23b4e261bc77a30",
216
+ "reference": "7e111c50db92fa2ced140f5ba23b4e261bc77a30",
217
+ "shasum": ""
218
+ },
219
+ "require": {
220
+ "php": "^5.3.2 || ^7.0"
221
+ },
222
+ "require-dev": {
223
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
224
+ "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
225
+ },
226
+ "type": "library",
227
+ "extra": {
228
+ "branch-alias": {
229
+ "dev-master": "1.x-dev"
230
+ }
231
+ },
232
+ "autoload": {
233
+ "psr-4": {
234
+ "Composer\\Spdx\\": "src"
235
+ }
236
+ },
237
+ "notification-url": "https://packagist.org/downloads/",
238
+ "license": [
239
+ "MIT"
240
+ ],
241
+ "authors": [
242
+ {
243
+ "name": "Nils Adermann",
244
+ "email": "naderman@naderman.de",
245
+ "homepage": "http://www.naderman.de"
246
+ },
247
+ {
248
+ "name": "Jordi Boggiano",
249
+ "email": "j.boggiano@seld.be",
250
+ "homepage": "http://seld.be"
251
+ },
252
+ {
253
+ "name": "Rob Bast",
254
+ "email": "rob.bast@gmail.com",
255
+ "homepage": "http://robbast.nl"
256
+ }
257
+ ],
258
+ "description": "SPDX licenses list and validation library.",
259
+ "keywords": [
260
+ "license",
261
+ "spdx",
262
+ "validator"
263
+ ],
264
+ "time": "2018-01-31T13:17:27+00:00"
265
+ },
266
+ {
267
+ "name": "dealerdirect/phpcodesniffer-composer-installer",
268
+ "version": "v0.5.0",
269
+ "source": {
270
+ "type": "git",
271
+ "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
272
+ "reference": "e749410375ff6fb7a040a68878c656c2e610b132"
273
+ },
274
+ "dist": {
275
+ "type": "zip",
276
+ "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/e749410375ff6fb7a040a68878c656c2e610b132",
277
+ "reference": "e749410375ff6fb7a040a68878c656c2e610b132",
278
+ "shasum": ""
279
+ },
280
+ "require": {
281
+ "composer-plugin-api": "^1.0",
282
+ "php": "^5.3|^7",
283
+ "squizlabs/php_codesniffer": "^2|^3"
284
+ },
285
+ "require-dev": {
286
+ "composer/composer": "*",
287
+ "phpcompatibility/php-compatibility": "^9.0",
288
+ "sensiolabs/security-checker": "^4.1.0"
289
+ },
290
+ "type": "composer-plugin",
291
+ "extra": {
292
+ "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
293
+ },
294
+ "autoload": {
295
+ "psr-4": {
296
+ "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
297
+ }
298
+ },
299
+ "notification-url": "https://packagist.org/downloads/",
300
+ "license": [
301
+ "MIT"
302
+ ],
303
+ "authors": [
304
+ {
305
+ "name": "Franck Nijhof",
306
+ "email": "franck.nijhof@dealerdirect.com",
307
+ "homepage": "http://www.frenck.nl",
308
+ "role": "Developer / IT Manager"
309
+ }
310
+ ],
311
+ "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
312
+ "homepage": "http://www.dealerdirect.com",
313
+ "keywords": [
314
+ "PHPCodeSniffer",
315
+ "PHP_CodeSniffer",
316
+ "code quality",
317
+ "codesniffer",
318
+ "composer",
319
+ "installer",
320
+ "phpcs",
321
+ "plugin",
322
+ "qa",
323
+ "quality",
324
+ "standard",
325
+ "standards",
326
+ "style guide",
327
+ "stylecheck",
328
+ "tests"
329
+ ],
330
+ "time": "2018-10-26T13:21:45+00:00"
331
+ },
332
+ {
333
+ "name": "doctrine/coding-standard",
334
+ "version": "5.0.1",
335
+ "source": {
336
+ "type": "git",
337
+ "url": "https://github.com/doctrine/coding-standard.git",
338
+ "reference": "9017efe98b47329cbd895d43f596747c8ef27307"
339
+ },
340
+ "dist": {
341
+ "type": "zip",
342
+ "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/9017efe98b47329cbd895d43f596747c8ef27307",
343
+ "reference": "9017efe98b47329cbd895d43f596747c8ef27307",
344
+ "shasum": ""
345
+ },
346
+ "require": {
347
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
348
+ "php": "^7.1",
349
+ "slevomat/coding-standard": "^4.8.0",
350
+ "squizlabs/php_codesniffer": "^3.3.2"
351
+ },
352
+ "type": "phpcodesniffer-standard",
353
+ "extra": {
354
+ "branch-alias": {
355
+ "dev-master": "5.0.x-dev"
356
+ }
357
+ },
358
+ "autoload": {
359
+ "psr-4": {
360
+ "Doctrine\\Sniffs\\": "lib/Doctrine/Sniffs"
361
+ }
362
+ },
363
+ "notification-url": "https://packagist.org/downloads/",
364
+ "license": [
365
+ "MIT"
366
+ ],
367
+ "authors": [
368
+ {
369
+ "name": "Benjamin Eberlei",
370
+ "email": "kontakt@beberlei.de"
371
+ },
372
+ {
373
+ "name": "Steve Müller",
374
+ "email": "st.mueller@dzh-online.de"
375
+ }
376
+ ],
377
+ "description": "The Doctrine Coding Standard is a set of PHPCS rules applied to all Doctrine projects.",
378
+ "homepage": "https://www.doctrine-project.org/projects/coding-standard.html",
379
+ "keywords": [
380
+ "checks",
381
+ "code",
382
+ "coding",
383
+ "cs",
384
+ "doctrine",
385
+ "rules",
386
+ "sniffer",
387
+ "sniffs",
388
+ "standard",
389
+ "style"
390
+ ],
391
+ "time": "2019-01-31T13:22:30+00:00"
392
+ },
393
+ {
394
+ "name": "doctrine/instantiator",
395
+ "version": "1.1.0",
396
+ "source": {
397
+ "type": "git",
398
+ "url": "https://github.com/doctrine/instantiator.git",
399
+ "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
400
+ },
401
+ "dist": {
402
+ "type": "zip",
403
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
404
+ "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
405
+ "shasum": ""
406
+ },
407
+ "require": {
408
+ "php": "^7.1"
409
+ },
410
+ "require-dev": {
411
+ "athletic/athletic": "~0.1.8",
412
+ "ext-pdo": "*",
413
+ "ext-phar": "*",
414
+ "phpunit/phpunit": "^6.2.3",
415
+ "squizlabs/php_codesniffer": "^3.0.2"
416
+ },
417
+ "type": "library",
418
+ "extra": {
419
+ "branch-alias": {
420
+ "dev-master": "1.2.x-dev"
421
+ }
422
+ },
423
+ "autoload": {
424
+ "psr-4": {
425
+ "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
426
+ }
427
+ },
428
+ "notification-url": "https://packagist.org/downloads/",
429
+ "license": [
430
+ "MIT"
431
+ ],
432
+ "authors": [
433
+ {
434
+ "name": "Marco Pivetta",
435
+ "email": "ocramius@gmail.com",
436
+ "homepage": "http://ocramius.github.com/"
437
+ }
438
+ ],
439
+ "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
440
+ "homepage": "https://github.com/doctrine/instantiator",
441
+ "keywords": [
442
+ "constructor",
443
+ "instantiate"
444
+ ],
445
+ "time": "2017-07-22T11:58:36+00:00"
446
+ },
447
+ {
448
+ "name": "infection/infection",
449
+ "version": "0.7.1",
450
+ "source": {
451
+ "type": "git",
452
+ "url": "https://github.com/infection/infection.git",
453
+ "reference": "44751a5835ec44e7f2754ddcf21a2012f8219c23"
454
+ },
455
+ "dist": {
456
+ "type": "zip",
457
+ "url": "https://api.github.com/repos/infection/infection/zipball/44751a5835ec44e7f2754ddcf21a2012f8219c23",
458
+ "reference": "44751a5835ec44e7f2754ddcf21a2012f8219c23",
459
+ "shasum": ""
460
+ },
461
+ "require": {
462
+ "nikic/php-parser": "^3.0",
463
+ "padraic/phar-updater": "^1.0.4",
464
+ "php": "^7.0",
465
+ "pimple/pimple": "^3.2",
466
+ "sebastian/diff": "^1.4 || ^2.0 || ^3.0",
467
+ "symfony/console": "^3.2 || ^4.0",
468
+ "symfony/finder": "^3.2 || ^4.0",
469
+ "symfony/process": "^3.2 || ^4.0",
470
+ "symfony/yaml": "^3.2 || ^4.0"
471
+ },
472
+ "conflict": {
473
+ "symfony/process": "3.4.2"
474
+ },
475
+ "require-dev": {
476
+ "mockery/mockery": "^1.0",
477
+ "phpunit/phpunit": "^6.1"
478
+ },
479
+ "bin": [
480
+ "bin/infection"
481
+ ],
482
+ "type": "library",
483
+ "autoload": {
484
+ "psr-4": {
485
+ "Infection\\": "src/"
486
+ }
487
+ },
488
+ "notification-url": "https://packagist.org/downloads/",
489
+ "license": [
490
+ "BSD-3-Clause"
491
+ ],
492
+ "authors": [
493
+ {
494
+ "name": "Maks Rafalko",
495
+ "email": "maks.rafalko@gmail.com",
496
+ "homepage": "https://twitter.com/maks_rafalko"
497
+ }
498
+ ],
499
+ "description": "Infection is a Mutation Testing framework for PHP. The mutation adequacy score can be used to measure the effectiveness of a test set in terms of its ability to detect faults.",
500
+ "keywords": [
501
+ "coverage",
502
+ "mutant",
503
+ "mutation framework",
504
+ "mutation testing",
505
+ "testing",
506
+ "unit testing"
507
+ ],
508
+ "time": "2018-02-02T11:25:42+00:00"
509
+ },
510
+ {
511
+ "name": "justinrainbow/json-schema",
512
+ "version": "5.2.7",
513
+ "source": {
514
+ "type": "git",
515
+ "url": "https://github.com/justinrainbow/json-schema.git",
516
+ "reference": "8560d4314577199ba51bf2032f02cd1315587c23"
517
+ },
518
+ "dist": {
519
+ "type": "zip",
520
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/8560d4314577199ba51bf2032f02cd1315587c23",
521
+ "reference": "8560d4314577199ba51bf2032f02cd1315587c23",
522
+ "shasum": ""
523
+ },
524
+ "require": {
525
+ "php": ">=5.3.3"
526
+ },
527
+ "require-dev": {
528
+ "friendsofphp/php-cs-fixer": "^2.1",
529
+ "json-schema/json-schema-test-suite": "1.2.0",
530
+ "phpunit/phpunit": "^4.8.35"
531
+ },
532
+ "bin": [
533
+ "bin/validate-json"
534
+ ],
535
+ "type": "library",
536
+ "extra": {
537
+ "branch-alias": {
538
+ "dev-master": "5.0.x-dev"
539
+ }
540
+ },
541
+ "autoload": {
542
+ "psr-4": {
543
+ "JsonSchema\\": "src/JsonSchema/"
544
+ }
545
+ },
546
+ "notification-url": "https://packagist.org/downloads/",
547
+ "license": [
548
+ "MIT"
549
+ ],
550
+ "authors": [
551
+ {
552
+ "name": "Bruno Prieto Reis",
553
+ "email": "bruno.p.reis@gmail.com"
554
+ },
555
+ {
556
+ "name": "Justin Rainbow",
557
+ "email": "justin.rainbow@gmail.com"
558
+ },
559
+ {
560
+ "name": "Igor Wiedler",
561
+ "email": "igor@wiedler.ch"
562
+ },
563
+ {
564
+ "name": "Robert Schönthal",
565
+ "email": "seroscho@googlemail.com"
566
+ }
567
+ ],
568
+ "description": "A library to validate a json schema.",
569
+ "homepage": "https://github.com/justinrainbow/json-schema",
570
+ "keywords": [
571
+ "json",
572
+ "schema"
573
+ ],
574
+ "time": "2018-02-14T22:26:30+00:00"
575
+ },
576
+ {
577
+ "name": "myclabs/deep-copy",
578
+ "version": "1.7.0",
579
+ "source": {
580
+ "type": "git",
581
+ "url": "https://github.com/myclabs/DeepCopy.git",
582
+ "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
583
+ },
584
+ "dist": {
585
+ "type": "zip",
586
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
587
+ "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
588
+ "shasum": ""
589
+ },
590
+ "require": {
591
+ "php": "^5.6 || ^7.0"
592
+ },
593
+ "require-dev": {
594
+ "doctrine/collections": "^1.0",
595
+ "doctrine/common": "^2.6",
596
+ "phpunit/phpunit": "^4.1"
597
+ },
598
+ "type": "library",
599
+ "autoload": {
600
+ "psr-4": {
601
+ "DeepCopy\\": "src/DeepCopy/"
602
+ },
603
+ "files": [
604
+ "src/DeepCopy/deep_copy.php"
605
+ ]
606
+ },
607
+ "notification-url": "https://packagist.org/downloads/",
608
+ "license": [
609
+ "MIT"
610
+ ],
611
+ "description": "Create deep copies (clones) of your objects",
612
+ "keywords": [
613
+ "clone",
614
+ "copy",
615
+ "duplicate",
616
+ "object",
617
+ "object graph"
618
+ ],
619
+ "time": "2017-10-19T19:58:43+00:00"
620
+ },
621
+ {
622
+ "name": "nikic/php-parser",
623
+ "version": "v3.1.5",
624
+ "source": {
625
+ "type": "git",
626
+ "url": "https://github.com/nikic/PHP-Parser.git",
627
+ "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce"
628
+ },
629
+ "dist": {
630
+ "type": "zip",
631
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
632
+ "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
633
+ "shasum": ""
634
+ },
635
+ "require": {
636
+ "ext-tokenizer": "*",
637
+ "php": ">=5.5"
638
+ },
639
+ "require-dev": {
640
+ "phpunit/phpunit": "~4.0|~5.0"
641
+ },
642
+ "bin": [
643
+ "bin/php-parse"
644
+ ],
645
+ "type": "library",
646
+ "extra": {
647
+ "branch-alias": {
648
+ "dev-master": "3.0-dev"
649
+ }
650
+ },
651
+ "autoload": {
652
+ "psr-4": {
653
+ "PhpParser\\": "lib/PhpParser"
654
+ }
655
+ },
656
+ "notification-url": "https://packagist.org/downloads/",
657
+ "license": [
658
+ "BSD-3-Clause"
659
+ ],
660
+ "authors": [
661
+ {
662
+ "name": "Nikita Popov"
663
+ }
664
+ ],
665
+ "description": "A PHP parser written in PHP",
666
+ "keywords": [
667
+ "parser",
668
+ "php"
669
+ ],
670
+ "time": "2018-02-28T20:30:58+00:00"
671
+ },
672
+ {
673
+ "name": "padraic/humbug_get_contents",
674
+ "version": "1.1.2",
675
+ "source": {
676
+ "type": "git",
677
+ "url": "https://github.com/humbug/file_get_contents.git",
678
+ "reference": "dcb086060c9dd6b2f51d8f7a895500307110b7a7"
679
+ },
680
+ "dist": {
681
+ "type": "zip",
682
+ "url": "https://api.github.com/repos/humbug/file_get_contents/zipball/dcb086060c9dd6b2f51d8f7a895500307110b7a7",
683
+ "reference": "dcb086060c9dd6b2f51d8f7a895500307110b7a7",
684
+ "shasum": ""
685
+ },
686
+ "require": {
687
+ "composer/ca-bundle": "^1.0",
688
+ "ext-openssl": "*",
689
+ "php": "^5.3 || ^7.0 || ^7.1 || ^7.2"
690
+ },
691
+ "require-dev": {
692
+ "bamarni/composer-bin-plugin": "^1.1",
693
+ "mikey179/vfsstream": "^1.6",
694
+ "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5"
695
+ },
696
+ "type": "library",
697
+ "extra": {
698
+ "bamarni-bin": {
699
+ "bin-links": false
700
+ },
701
+ "branch-alias": {
702
+ "dev-master": "2.0-dev"
703
+ }
704
+ },
705
+ "autoload": {
706
+ "psr-4": {
707
+ "Humbug\\": "src/"
708
+ },
709
+ "files": [
710
+ "src/function.php",
711
+ "src/functions.php"
712
+ ]
713
+ },
714
+ "notification-url": "https://packagist.org/downloads/",
715
+ "license": [
716
+ "BSD-3-Clause"
717
+ ],
718
+ "authors": [
719
+ {
720
+ "name": "Padraic Brady",
721
+ "email": "padraic.brady@gmail.com",
722
+ "homepage": "http://blog.astrumfutura.com"
723
+ },
724
+ {
725
+ "name": "Théo Fidry",
726
+ "email": "theo.fidry@gmail.com"
727
+ }
728
+ ],
729
+ "description": "Secure wrapper for accessing HTTPS resources with file_get_contents for PHP 5.3+",
730
+ "homepage": "https://github.com/padraic/file_get_contents",
731
+ "keywords": [
732
+ "download",
733
+ "file_get_contents",
734
+ "http",
735
+ "https",
736
+ "ssl",
737
+ "tls"
738
+ ],
739
+ "time": "2018-02-12T18:47:17+00:00"
740
+ },
741
+ {
742
+ "name": "padraic/phar-updater",
743
+ "version": "v1.0.6",
744
+ "source": {
745
+ "type": "git",
746
+ "url": "https://github.com/humbug/phar-updater.git",
747
+ "reference": "d01d3b8f26e541ac9b9eeba1e18d005d852f7ff1"
748
+ },
749
+ "dist": {
750
+ "type": "zip",
751
+ "url": "https://api.github.com/repos/humbug/phar-updater/zipball/d01d3b8f26e541ac9b9eeba1e18d005d852f7ff1",
752
+ "reference": "d01d3b8f26e541ac9b9eeba1e18d005d852f7ff1",
753
+ "shasum": ""
754
+ },
755
+ "require": {
756
+ "padraic/humbug_get_contents": "^1.0",
757
+ "php": ">=5.3.3"
758
+ },
759
+ "require-dev": {
760
+ "phpunit/phpunit": "~4.0"
761
+ },
762
+ "type": "library",
763
+ "extra": {
764
+ "branch-alias": {
765
+ "dev-master": "1.0-dev"
766
+ }
767
+ },
768
+ "autoload": {
769
+ "psr-4": {
770
+ "Humbug\\SelfUpdate\\": "src/"
771
+ }
772
+ },
773
+ "notification-url": "https://packagist.org/downloads/",
774
+ "license": [
775
+ "BSD-3-Clause"
776
+ ],
777
+ "authors": [
778
+ {
779
+ "name": "Pádraic Brady",
780
+ "email": "padraic.brady@gmail.com",
781
+ "homepage": "http://blog.astrumfutura.com"
782
+ }
783
+ ],
784
+ "description": "A thing to make PHAR self-updating easy and secure.",
785
+ "keywords": [
786
+ "humbug",
787
+ "phar",
788
+ "self-update",
789
+ "update"
790
+ ],
791
+ "time": "2018-03-30T12:52:15+00:00"
792
+ },
793
+ {
794
+ "name": "phar-io/manifest",
795
+ "version": "1.0.1",
796
+ "source": {
797
+ "type": "git",
798
+ "url": "https://github.com/phar-io/manifest.git",
799
+ "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
800
+ },
801
+ "dist": {
802
+ "type": "zip",
803
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
804
+ "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
805
+ "shasum": ""
806
+ },
807
+ "require": {
808
+ "ext-dom": "*",
809
+ "ext-phar": "*",
810
+ "phar-io/version": "^1.0.1",
811
+ "php": "^5.6 || ^7.0"
812
+ },
813
+ "type": "library",
814
+ "extra": {
815
+ "branch-alias": {
816
+ "dev-master": "1.0.x-dev"
817
+ }
818
+ },
819
+ "autoload": {
820
+ "classmap": [
821
+ "src/"
822
+ ]
823
+ },
824
+ "notification-url": "https://packagist.org/downloads/",
825
+ "license": [
826
+ "BSD-3-Clause"
827
+ ],
828
+ "authors": [
829
+ {
830
+ "name": "Arne Blankerts",
831
+ "email": "arne@blankerts.de",
832
+ "role": "Developer"
833
+ },
834
+ {
835
+ "name": "Sebastian Heuer",
836
+ "email": "sebastian@phpeople.de",
837
+ "role": "Developer"
838
+ },
839
+ {
840
+ "name": "Sebastian Bergmann",
841
+ "email": "sebastian@phpunit.de",
842
+ "role": "Developer"
843
+ }
844
+ ],
845
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
846
+ "time": "2017-03-05T18:14:27+00:00"
847
+ },
848
+ {
849
+ "name": "phar-io/version",
850
+ "version": "1.0.1",
851
+ "source": {
852
+ "type": "git",
853
+ "url": "https://github.com/phar-io/version.git",
854
+ "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
855
+ },
856
+ "dist": {
857
+ "type": "zip",
858
+ "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
859
+ "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
860
+ "shasum": ""
861
+ },
862
+ "require": {
863
+ "php": "^5.6 || ^7.0"
864
+ },
865
+ "type": "library",
866
+ "autoload": {
867
+ "classmap": [
868
+ "src/"
869
+ ]
870
+ },
871
+ "notification-url": "https://packagist.org/downloads/",
872
+ "license": [
873
+ "BSD-3-Clause"
874
+ ],
875
+ "authors": [
876
+ {
877
+ "name": "Arne Blankerts",
878
+ "email": "arne@blankerts.de",
879
+ "role": "Developer"
880
+ },
881
+ {
882
+ "name": "Sebastian Heuer",
883
+ "email": "sebastian@phpeople.de",
884
+ "role": "Developer"
885
+ },
886
+ {
887
+ "name": "Sebastian Bergmann",
888
+ "email": "sebastian@phpunit.de",
889
+ "role": "Developer"
890
+ }
891
+ ],
892
+ "description": "Library for handling version information and constraints",
893
+ "time": "2017-03-05T17:38:23+00:00"
894
+ },
895
+ {
896
+ "name": "phpdocumentor/reflection-common",
897
+ "version": "1.0.1",
898
+ "source": {
899
+ "type": "git",
900
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
901
+ "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
902
+ },
903
+ "dist": {
904
+ "type": "zip",
905
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
906
+ "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
907
+ "shasum": ""
908
+ },
909
+ "require": {
910
+ "php": ">=5.5"
911
+ },
912
+ "require-dev": {
913
+ "phpunit/phpunit": "^4.6"
914
+ },
915
+ "type": "library",
916
+ "extra": {
917
+ "branch-alias": {
918
+ "dev-master": "1.0.x-dev"
919
+ }
920
+ },
921
+ "autoload": {
922
+ "psr-4": {
923
+ "phpDocumentor\\Reflection\\": [
924
+ "src"
925
+ ]
926
+ }
927
+ },
928
+ "notification-url": "https://packagist.org/downloads/",
929
+ "license": [
930
+ "MIT"
931
+ ],
932
+ "authors": [
933
+ {
934
+ "name": "Jaap van Otterdijk",
935
+ "email": "opensource@ijaap.nl"
936
+ }
937
+ ],
938
+ "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
939
+ "homepage": "http://www.phpdoc.org",
940
+ "keywords": [
941
+ "FQSEN",
942
+ "phpDocumentor",
943
+ "phpdoc",
944
+ "reflection",
945
+ "static analysis"
946
+ ],
947
+ "time": "2017-09-11T18:02:19+00:00"
948
+ },
949
+ {
950
+ "name": "phpdocumentor/reflection-docblock",
951
+ "version": "4.3.0",
952
+ "source": {
953
+ "type": "git",
954
+ "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
955
+ "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
956
+ },
957
+ "dist": {
958
+ "type": "zip",
959
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
960
+ "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
961
+ "shasum": ""
962
+ },
963
+ "require": {
964
+ "php": "^7.0",
965
+ "phpdocumentor/reflection-common": "^1.0.0",
966
+ "phpdocumentor/type-resolver": "^0.4.0",
967
+ "webmozart/assert": "^1.0"
968
+ },
969
+ "require-dev": {
970
+ "doctrine/instantiator": "~1.0.5",
971
+ "mockery/mockery": "^1.0",
972
+ "phpunit/phpunit": "^6.4"
973
+ },
974
+ "type": "library",
975
+ "extra": {
976
+ "branch-alias": {
977
+ "dev-master": "4.x-dev"
978
+ }
979
+ },
980
+ "autoload": {
981
+ "psr-4": {
982
+ "phpDocumentor\\Reflection\\": [
983
+ "src/"
984
+ ]
985
+ }
986
+ },
987
+ "notification-url": "https://packagist.org/downloads/",
988
+ "license": [
989
+ "MIT"
990
+ ],
991
+ "authors": [
992
+ {
993
+ "name": "Mike van Riel",
994
+ "email": "me@mikevanriel.com"
995
+ }
996
+ ],
997
+ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
998
+ "time": "2017-11-30T07:14:17+00:00"
999
+ },
1000
+ {
1001
+ "name": "phpdocumentor/type-resolver",
1002
+ "version": "0.4.0",
1003
+ "source": {
1004
+ "type": "git",
1005
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
1006
+ "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
1007
+ },
1008
+ "dist": {
1009
+ "type": "zip",
1010
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
1011
+ "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
1012
+ "shasum": ""
1013
+ },
1014
+ "require": {
1015
+ "php": "^5.5 || ^7.0",
1016
+ "phpdocumentor/reflection-common": "^1.0"
1017
+ },
1018
+ "require-dev": {
1019
+ "mockery/mockery": "^0.9.4",
1020
+ "phpunit/phpunit": "^5.2||^4.8.24"
1021
+ },
1022
+ "type": "library",
1023
+ "extra": {
1024
+ "branch-alias": {
1025
+ "dev-master": "1.0.x-dev"
1026
+ }
1027
+ },
1028
+ "autoload": {
1029
+ "psr-4": {
1030
+ "phpDocumentor\\Reflection\\": [
1031
+ "src/"
1032
+ ]
1033
+ }
1034
+ },
1035
+ "notification-url": "https://packagist.org/downloads/",
1036
+ "license": [
1037
+ "MIT"
1038
+ ],
1039
+ "authors": [
1040
+ {
1041
+ "name": "Mike van Riel",
1042
+ "email": "me@mikevanriel.com"
1043
+ }
1044
+ ],
1045
+ "time": "2017-07-14T14:27:02+00:00"
1046
+ },
1047
+ {
1048
+ "name": "phpspec/prophecy",
1049
+ "version": "1.7.6",
1050
+ "source": {
1051
+ "type": "git",
1052
+ "url": "https://github.com/phpspec/prophecy.git",
1053
+ "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712"
1054
+ },
1055
+ "dist": {
1056
+ "type": "zip",
1057
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
1058
+ "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
1059
+ "shasum": ""
1060
+ },
1061
+ "require": {
1062
+ "doctrine/instantiator": "^1.0.2",
1063
+ "php": "^5.3|^7.0",
1064
+ "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
1065
+ "sebastian/comparator": "^1.1|^2.0|^3.0",
1066
+ "sebastian/recursion-context": "^1.0|^2.0|^3.0"
1067
+ },
1068
+ "require-dev": {
1069
+ "phpspec/phpspec": "^2.5|^3.2",
1070
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
1071
+ },
1072
+ "type": "library",
1073
+ "extra": {
1074
+ "branch-alias": {
1075
+ "dev-master": "1.7.x-dev"
1076
+ }
1077
+ },
1078
+ "autoload": {
1079
+ "psr-0": {
1080
+ "Prophecy\\": "src/"
1081
+ }
1082
+ },
1083
+ "notification-url": "https://packagist.org/downloads/",
1084
+ "license": [
1085
+ "MIT"
1086
+ ],
1087
+ "authors": [
1088
+ {
1089
+ "name": "Konstantin Kudryashov",
1090
+ "email": "ever.zet@gmail.com",
1091
+ "homepage": "http://everzet.com"
1092
+ },
1093
+ {
1094
+ "name": "Marcello Duarte",
1095
+ "email": "marcello.duarte@gmail.com"
1096
+ }
1097
+ ],
1098
+ "description": "Highly opinionated mocking framework for PHP 5.3+",
1099
+ "homepage": "https://github.com/phpspec/prophecy",
1100
+ "keywords": [
1101
+ "Double",
1102
+ "Dummy",
1103
+ "fake",
1104
+ "mock",
1105
+ "spy",
1106
+ "stub"
1107
+ ],
1108
+ "time": "2018-04-18T13:57:24+00:00"
1109
+ },
1110
+ {
1111
+ "name": "phpunit/php-code-coverage",
1112
+ "version": "6.0.4",
1113
+ "source": {
1114
+ "type": "git",
1115
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
1116
+ "reference": "52187754b0eed0b8159f62a6fa30073327e8c2ca"
1117
+ },
1118
+ "dist": {
1119
+ "type": "zip",
1120
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/52187754b0eed0b8159f62a6fa30073327e8c2ca",
1121
+ "reference": "52187754b0eed0b8159f62a6fa30073327e8c2ca",
1122
+ "shasum": ""
1123
+ },
1124
+ "require": {
1125
+ "ext-dom": "*",
1126
+ "ext-xmlwriter": "*",
1127
+ "php": "^7.1",
1128
+ "phpunit/php-file-iterator": "^1.4.2",
1129
+ "phpunit/php-text-template": "^1.2.1",
1130
+ "phpunit/php-token-stream": "^3.0",
1131
+ "sebastian/code-unit-reverse-lookup": "^1.0.1",
1132
+ "sebastian/environment": "^3.1",
1133
+ "sebastian/version": "^2.0.1",
1134
+ "theseer/tokenizer": "^1.1"
1135
+ },
1136
+ "require-dev": {
1137
+ "phpunit/phpunit": "^7.0"
1138
+ },
1139
+ "suggest": {
1140
+ "ext-xdebug": "^2.6.0"
1141
+ },
1142
+ "type": "library",
1143
+ "extra": {
1144
+ "branch-alias": {
1145
+ "dev-master": "6.0-dev"
1146
+ }
1147
+ },
1148
+ "autoload": {
1149
+ "classmap": [
1150
+ "src/"
1151
+ ]
1152
+ },
1153
+ "notification-url": "https://packagist.org/downloads/",
1154
+ "license": [
1155
+ "BSD-3-Clause"
1156
+ ],
1157
+ "authors": [
1158
+ {
1159
+ "name": "Sebastian Bergmann",
1160
+ "email": "sebastian@phpunit.de",
1161
+ "role": "lead"
1162
+ }
1163
+ ],
1164
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
1165
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
1166
+ "keywords": [
1167
+ "coverage",
1168
+ "testing",
1169
+ "xunit"
1170
+ ],
1171
+ "time": "2018-04-29T14:59:09+00:00"
1172
+ },
1173
+ {
1174
+ "name": "phpunit/php-file-iterator",
1175
+ "version": "1.4.5",
1176
+ "source": {
1177
+ "type": "git",
1178
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
1179
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
1180
+ },
1181
+ "dist": {
1182
+ "type": "zip",
1183
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
1184
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
1185
+ "shasum": ""
1186
+ },
1187
+ "require": {
1188
+ "php": ">=5.3.3"
1189
+ },
1190
+ "type": "library",
1191
+ "extra": {
1192
+ "branch-alias": {
1193
+ "dev-master": "1.4.x-dev"
1194
+ }
1195
+ },
1196
+ "autoload": {
1197
+ "classmap": [
1198
+ "src/"
1199
+ ]
1200
+ },
1201
+ "notification-url": "https://packagist.org/downloads/",
1202
+ "license": [
1203
+ "BSD-3-Clause"
1204
+ ],
1205
+ "authors": [
1206
+ {
1207
+ "name": "Sebastian Bergmann",
1208
+ "email": "sb@sebastian-bergmann.de",
1209
+ "role": "lead"
1210
+ }
1211
+ ],
1212
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
1213
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
1214
+ "keywords": [
1215
+ "filesystem",
1216
+ "iterator"
1217
+ ],
1218
+ "time": "2017-11-27T13:52:08+00:00"
1219
+ },
1220
+ {
1221
+ "name": "phpunit/php-text-template",
1222
+ "version": "1.2.1",
1223
+ "source": {
1224
+ "type": "git",
1225
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
1226
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
1227
+ },
1228
+ "dist": {
1229
+ "type": "zip",
1230
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1231
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1232
+ "shasum": ""
1233
+ },
1234
+ "require": {
1235
+ "php": ">=5.3.3"
1236
+ },
1237
+ "type": "library",
1238
+ "autoload": {
1239
+ "classmap": [
1240
+ "src/"
1241
+ ]
1242
+ },
1243
+ "notification-url": "https://packagist.org/downloads/",
1244
+ "license": [
1245
+ "BSD-3-Clause"
1246
+ ],
1247
+ "authors": [
1248
+ {
1249
+ "name": "Sebastian Bergmann",
1250
+ "email": "sebastian@phpunit.de",
1251
+ "role": "lead"
1252
+ }
1253
+ ],
1254
+ "description": "Simple template engine.",
1255
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
1256
+ "keywords": [
1257
+ "template"
1258
+ ],
1259
+ "time": "2015-06-21T13:50:34+00:00"
1260
+ },
1261
+ {
1262
+ "name": "phpunit/php-timer",
1263
+ "version": "2.0.0",
1264
+ "source": {
1265
+ "type": "git",
1266
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
1267
+ "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f"
1268
+ },
1269
+ "dist": {
1270
+ "type": "zip",
1271
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f",
1272
+ "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f",
1273
+ "shasum": ""
1274
+ },
1275
+ "require": {
1276
+ "php": "^7.1"
1277
+ },
1278
+ "require-dev": {
1279
+ "phpunit/phpunit": "^7.0"
1280
+ },
1281
+ "type": "library",
1282
+ "extra": {
1283
+ "branch-alias": {
1284
+ "dev-master": "2.0-dev"
1285
+ }
1286
+ },
1287
+ "autoload": {
1288
+ "classmap": [
1289
+ "src/"
1290
+ ]
1291
+ },
1292
+ "notification-url": "https://packagist.org/downloads/",
1293
+ "license": [
1294
+ "BSD-3-Clause"
1295
+ ],
1296
+ "authors": [
1297
+ {
1298
+ "name": "Sebastian Bergmann",
1299
+ "email": "sebastian@phpunit.de",
1300
+ "role": "lead"
1301
+ }
1302
+ ],
1303
+ "description": "Utility class for timing",
1304
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
1305
+ "keywords": [
1306
+ "timer"
1307
+ ],
1308
+ "time": "2018-02-01T13:07:23+00:00"
1309
+ },
1310
+ {
1311
+ "name": "phpunit/php-token-stream",
1312
+ "version": "3.0.0",
1313
+ "source": {
1314
+ "type": "git",
1315
+ "url": "https://github.com/sebastianbergmann/php-token-stream.git",
1316
+ "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace"
1317
+ },
1318
+ "dist": {
1319
+ "type": "zip",
1320
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace",
1321
+ "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace",
1322
+ "shasum": ""
1323
+ },
1324
+ "require": {
1325
+ "ext-tokenizer": "*",
1326
+ "php": "^7.1"
1327
+ },
1328
+ "require-dev": {
1329
+ "phpunit/phpunit": "^7.0"
1330
+ },
1331
+ "type": "library",
1332
+ "extra": {
1333
+ "branch-alias": {
1334
+ "dev-master": "3.0-dev"
1335
+ }
1336
+ },
1337
+ "autoload": {
1338
+ "classmap": [
1339
+ "src/"
1340
+ ]
1341
+ },
1342
+ "notification-url": "https://packagist.org/downloads/",
1343
+ "license": [
1344
+ "BSD-3-Clause"
1345
+ ],
1346
+ "authors": [
1347
+ {
1348
+ "name": "Sebastian Bergmann",
1349
+ "email": "sebastian@phpunit.de"
1350
+ }
1351
+ ],
1352
+ "description": "Wrapper around PHP's tokenizer extension.",
1353
+ "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
1354
+ "keywords": [
1355
+ "tokenizer"
1356
+ ],
1357
+ "time": "2018-02-01T13:16:43+00:00"
1358
+ },
1359
+ {
1360
+ "name": "phpunit/phpunit",
1361
+ "version": "7.1.5",
1362
+ "source": {
1363
+ "type": "git",
1364
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
1365
+ "reference": "ca64dba53b88aba6af32aebc6b388068db95c435"
1366
+ },
1367
+ "dist": {
1368
+ "type": "zip",
1369
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ca64dba53b88aba6af32aebc6b388068db95c435",
1370
+ "reference": "ca64dba53b88aba6af32aebc6b388068db95c435",
1371
+ "shasum": ""
1372
+ },
1373
+ "require": {
1374
+ "ext-dom": "*",
1375
+ "ext-json": "*",
1376
+ "ext-libxml": "*",
1377
+ "ext-mbstring": "*",
1378
+ "ext-xml": "*",
1379
+ "myclabs/deep-copy": "^1.6.1",
1380
+ "phar-io/manifest": "^1.0.1",
1381
+ "phar-io/version": "^1.0",
1382
+ "php": "^7.1",
1383
+ "phpspec/prophecy": "^1.7",
1384
+ "phpunit/php-code-coverage": "^6.0.1",
1385
+ "phpunit/php-file-iterator": "^1.4.3",
1386
+ "phpunit/php-text-template": "^1.2.1",
1387
+ "phpunit/php-timer": "^2.0",
1388
+ "phpunit/phpunit-mock-objects": "^6.1.1",
1389
+ "sebastian/comparator": "^3.0",
1390
+ "sebastian/diff": "^3.0",
1391
+ "sebastian/environment": "^3.1",
1392
+ "sebastian/exporter": "^3.1",
1393
+ "sebastian/global-state": "^2.0",
1394
+ "sebastian/object-enumerator": "^3.0.3",
1395
+ "sebastian/resource-operations": "^1.0",
1396
+ "sebastian/version": "^2.0.1"
1397
+ },
1398
+ "require-dev": {
1399
+ "ext-pdo": "*"
1400
+ },
1401
+ "suggest": {
1402
+ "ext-xdebug": "*",
1403
+ "phpunit/php-invoker": "^2.0"
1404
+ },
1405
+ "bin": [
1406
+ "phpunit"
1407
+ ],
1408
+ "type": "library",
1409
+ "extra": {
1410
+ "branch-alias": {
1411
+ "dev-master": "7.1-dev"
1412
+ }
1413
+ },
1414
+ "autoload": {
1415
+ "classmap": [
1416
+ "src/"
1417
+ ]
1418
+ },
1419
+ "notification-url": "https://packagist.org/downloads/",
1420
+ "license": [
1421
+ "BSD-3-Clause"
1422
+ ],
1423
+ "authors": [
1424
+ {
1425
+ "name": "Sebastian Bergmann",
1426
+ "email": "sebastian@phpunit.de",
1427
+ "role": "lead"
1428
+ }
1429
+ ],
1430
+ "description": "The PHP Unit Testing framework.",
1431
+ "homepage": "https://phpunit.de/",
1432
+ "keywords": [
1433
+ "phpunit",
1434
+ "testing",
1435
+ "xunit"
1436
+ ],
1437
+ "time": "2018-04-29T15:09:19+00:00"
1438
+ },
1439
+ {
1440
+ "name": "phpunit/phpunit-mock-objects",
1441
+ "version": "6.1.1",
1442
+ "source": {
1443
+ "type": "git",
1444
+ "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
1445
+ "reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157"
1446
+ },
1447
+ "dist": {
1448
+ "type": "zip",
1449
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/70c740bde8fd9ea9ea295be1cd875dd7b267e157",
1450
+ "reference": "70c740bde8fd9ea9ea295be1cd875dd7b267e157",
1451
+ "shasum": ""
1452
+ },
1453
+ "require": {
1454
+ "doctrine/instantiator": "^1.0.5",
1455
+ "php": "^7.1",
1456
+ "phpunit/php-text-template": "^1.2.1",
1457
+ "sebastian/exporter": "^3.1"
1458
+ },
1459
+ "require-dev": {
1460
+ "phpunit/phpunit": "^7.0"
1461
+ },
1462
+ "suggest": {
1463
+ "ext-soap": "*"
1464
+ },
1465
+ "type": "library",
1466
+ "extra": {
1467
+ "branch-alias": {
1468
+ "dev-master": "6.1-dev"
1469
+ }
1470
+ },
1471
+ "autoload": {
1472
+ "classmap": [
1473
+ "src/"
1474
+ ]
1475
+ },
1476
+ "notification-url": "https://packagist.org/downloads/",
1477
+ "license": [
1478
+ "BSD-3-Clause"
1479
+ ],
1480
+ "authors": [
1481
+ {
1482
+ "name": "Sebastian Bergmann",
1483
+ "email": "sebastian@phpunit.de",
1484
+ "role": "lead"
1485
+ }
1486
+ ],
1487
+ "description": "Mock Object library for PHPUnit",
1488
+ "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
1489
+ "keywords": [
1490
+ "mock",
1491
+ "xunit"
1492
+ ],
1493
+ "time": "2018-04-11T04:50:36+00:00"
1494
+ },
1495
+ {
1496
+ "name": "pimple/pimple",
1497
+ "version": "v3.2.3",
1498
+ "source": {
1499
+ "type": "git",
1500
+ "url": "https://github.com/silexphp/Pimple.git",
1501
+ "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
1502
+ },
1503
+ "dist": {
1504
+ "type": "zip",
1505
+ "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
1506
+ "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
1507
+ "shasum": ""
1508
+ },
1509
+ "require": {
1510
+ "php": ">=5.3.0",
1511
+ "psr/container": "^1.0"
1512
+ },
1513
+ "require-dev": {
1514
+ "symfony/phpunit-bridge": "^3.2"
1515
+ },
1516
+ "type": "library",
1517
+ "extra": {
1518
+ "branch-alias": {
1519
+ "dev-master": "3.2.x-dev"
1520
+ }
1521
+ },
1522
+ "autoload": {
1523
+ "psr-0": {
1524
+ "Pimple": "src/"
1525
+ }
1526
+ },
1527
+ "notification-url": "https://packagist.org/downloads/",
1528
+ "license": [
1529
+ "MIT"
1530
+ ],
1531
+ "authors": [
1532
+ {
1533
+ "name": "Fabien Potencier",
1534
+ "email": "fabien@symfony.com"
1535
+ }
1536
+ ],
1537
+ "description": "Pimple, a simple Dependency Injection Container",
1538
+ "homepage": "http://pimple.sensiolabs.org",
1539
+ "keywords": [
1540
+ "container",
1541
+ "dependency injection"
1542
+ ],
1543
+ "time": "2018-01-21T07:42:36+00:00"
1544
+ },
1545
+ {
1546
+ "name": "psr/container",
1547
+ "version": "1.0.0",
1548
+ "source": {
1549
+ "type": "git",
1550
+ "url": "https://github.com/php-fig/container.git",
1551
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
1552
+ },
1553
+ "dist": {
1554
+ "type": "zip",
1555
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
1556
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
1557
+ "shasum": ""
1558
+ },
1559
+ "require": {
1560
+ "php": ">=5.3.0"
1561
+ },
1562
+ "type": "library",
1563
+ "extra": {
1564
+ "branch-alias": {
1565
+ "dev-master": "1.0.x-dev"
1566
+ }
1567
+ },
1568
+ "autoload": {
1569
+ "psr-4": {
1570
+ "Psr\\Container\\": "src/"
1571
+ }
1572
+ },
1573
+ "notification-url": "https://packagist.org/downloads/",
1574
+ "license": [
1575
+ "MIT"
1576
+ ],
1577
+ "authors": [
1578
+ {
1579
+ "name": "PHP-FIG",
1580
+ "homepage": "http://www.php-fig.org/"
1581
+ }
1582
+ ],
1583
+ "description": "Common Container Interface (PHP FIG PSR-11)",
1584
+ "homepage": "https://github.com/php-fig/container",
1585
+ "keywords": [
1586
+ "PSR-11",
1587
+ "container",
1588
+ "container-interface",
1589
+ "container-interop",
1590
+ "psr"
1591
+ ],
1592
+ "time": "2017-02-14T16:28:37+00:00"
1593
+ },
1594
+ {
1595
+ "name": "psr/log",
1596
+ "version": "1.0.2",
1597
+ "source": {
1598
+ "type": "git",
1599
+ "url": "https://github.com/php-fig/log.git",
1600
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
1601
+ },
1602
+ "dist": {
1603
+ "type": "zip",
1604
+ "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
1605
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
1606
+ "shasum": ""
1607
+ },
1608
+ "require": {
1609
+ "php": ">=5.3.0"
1610
+ },
1611
+ "type": "library",
1612
+ "extra": {
1613
+ "branch-alias": {
1614
+ "dev-master": "1.0.x-dev"
1615
+ }
1616
+ },
1617
+ "autoload": {
1618
+ "psr-4": {
1619
+ "Psr\\Log\\": "Psr/Log/"
1620
+ }
1621
+ },
1622
+ "notification-url": "https://packagist.org/downloads/",
1623
+ "license": [
1624
+ "MIT"
1625
+ ],
1626
+ "authors": [
1627
+ {
1628
+ "name": "PHP-FIG",
1629
+ "homepage": "http://www.php-fig.org/"
1630
+ }
1631
+ ],
1632
+ "description": "Common interface for logging libraries",
1633
+ "homepage": "https://github.com/php-fig/log",
1634
+ "keywords": [
1635
+ "log",
1636
+ "psr",
1637
+ "psr-3"
1638
+ ],
1639
+ "time": "2016-10-10T12:19:37+00:00"
1640
+ },
1641
+ {
1642
+ "name": "sebastian/code-unit-reverse-lookup",
1643
+ "version": "1.0.1",
1644
+ "source": {
1645
+ "type": "git",
1646
+ "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
1647
+ "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
1648
+ },
1649
+ "dist": {
1650
+ "type": "zip",
1651
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
1652
+ "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
1653
+ "shasum": ""
1654
+ },
1655
+ "require": {
1656
+ "php": "^5.6 || ^7.0"
1657
+ },
1658
+ "require-dev": {
1659
+ "phpunit/phpunit": "^5.7 || ^6.0"
1660
+ },
1661
+ "type": "library",
1662
+ "extra": {
1663
+ "branch-alias": {
1664
+ "dev-master": "1.0.x-dev"
1665
+ }
1666
+ },
1667
+ "autoload": {
1668
+ "classmap": [
1669
+ "src/"
1670
+ ]
1671
+ },
1672
+ "notification-url": "https://packagist.org/downloads/",
1673
+ "license": [
1674
+ "BSD-3-Clause"
1675
+ ],
1676
+ "authors": [
1677
+ {
1678
+ "name": "Sebastian Bergmann",
1679
+ "email": "sebastian@phpunit.de"
1680
+ }
1681
+ ],
1682
+ "description": "Looks up which function or method a line of code belongs to",
1683
+ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
1684
+ "time": "2017-03-04T06:30:41+00:00"
1685
+ },
1686
+ {
1687
+ "name": "sebastian/comparator",
1688
+ "version": "3.0.0",
1689
+ "source": {
1690
+ "type": "git",
1691
+ "url": "https://github.com/sebastianbergmann/comparator.git",
1692
+ "reference": "ed5fd2281113729f1ebcc64d101ad66028aeb3d5"
1693
+ },
1694
+ "dist": {
1695
+ "type": "zip",
1696
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/ed5fd2281113729f1ebcc64d101ad66028aeb3d5",
1697
+ "reference": "ed5fd2281113729f1ebcc64d101ad66028aeb3d5",
1698
+ "shasum": ""
1699
+ },
1700
+ "require": {
1701
+ "php": "^7.1",
1702
+ "sebastian/diff": "^3.0",
1703
+ "sebastian/exporter": "^3.1"
1704
+ },
1705
+ "require-dev": {
1706
+ "phpunit/phpunit": "^7.1"
1707
+ },
1708
+ "type": "library",
1709
+ "extra": {
1710
+ "branch-alias": {
1711
+ "dev-master": "3.0-dev"
1712
+ }
1713
+ },
1714
+ "autoload": {
1715
+ "classmap": [
1716
+ "src/"
1717
+ ]
1718
+ },
1719
+ "notification-url": "https://packagist.org/downloads/",
1720
+ "license": [
1721
+ "BSD-3-Clause"
1722
+ ],
1723
+ "authors": [
1724
+ {
1725
+ "name": "Jeff Welch",
1726
+ "email": "whatthejeff@gmail.com"
1727
+ },
1728
+ {
1729
+ "name": "Volker Dusch",
1730
+ "email": "github@wallbash.com"
1731
+ },
1732
+ {
1733
+ "name": "Bernhard Schussek",
1734
+ "email": "bschussek@2bepublished.at"
1735
+ },
1736
+ {
1737
+ "name": "Sebastian Bergmann",
1738
+ "email": "sebastian@phpunit.de"
1739
+ }
1740
+ ],
1741
+ "description": "Provides the functionality to compare PHP values for equality",
1742
+ "homepage": "https://github.com/sebastianbergmann/comparator",
1743
+ "keywords": [
1744
+ "comparator",
1745
+ "compare",
1746
+ "equality"
1747
+ ],
1748
+ "time": "2018-04-18T13:33:00+00:00"
1749
+ },
1750
+ {
1751
+ "name": "sebastian/diff",
1752
+ "version": "3.0.0",
1753
+ "source": {
1754
+ "type": "git",
1755
+ "url": "https://github.com/sebastianbergmann/diff.git",
1756
+ "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8"
1757
+ },
1758
+ "dist": {
1759
+ "type": "zip",
1760
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/e09160918c66281713f1c324c1f4c4c3037ba1e8",
1761
+ "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8",
1762
+ "shasum": ""
1763
+ },
1764
+ "require": {
1765
+ "php": "^7.1"
1766
+ },
1767
+ "require-dev": {
1768
+ "phpunit/phpunit": "^7.0",
1769
+ "symfony/process": "^2 || ^3.3 || ^4"
1770
+ },
1771
+ "type": "library",
1772
+ "extra": {
1773
+ "branch-alias": {
1774
+ "dev-master": "3.0-dev"
1775
+ }
1776
+ },
1777
+ "autoload": {
1778
+ "classmap": [
1779
+ "src/"
1780
+ ]
1781
+ },
1782
+ "notification-url": "https://packagist.org/downloads/",
1783
+ "license": [
1784
+ "BSD-3-Clause"
1785
+ ],
1786
+ "authors": [
1787
+ {
1788
+ "name": "Kore Nordmann",
1789
+ "email": "mail@kore-nordmann.de"
1790
+ },
1791
+ {
1792
+ "name": "Sebastian Bergmann",
1793
+ "email": "sebastian@phpunit.de"
1794
+ }
1795
+ ],
1796
+ "description": "Diff implementation",
1797
+ "homepage": "https://github.com/sebastianbergmann/diff",
1798
+ "keywords": [
1799
+ "diff",
1800
+ "udiff",
1801
+ "unidiff",
1802
+ "unified diff"
1803
+ ],
1804
+ "time": "2018-02-01T13:45:15+00:00"
1805
+ },
1806
+ {
1807
+ "name": "sebastian/environment",
1808
+ "version": "3.1.0",
1809
+ "source": {
1810
+ "type": "git",
1811
+ "url": "https://github.com/sebastianbergmann/environment.git",
1812
+ "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
1813
+ },
1814
+ "dist": {
1815
+ "type": "zip",
1816
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
1817
+ "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
1818
+ "shasum": ""
1819
+ },
1820
+ "require": {
1821
+ "php": "^7.0"
1822
+ },
1823
+ "require-dev": {
1824
+ "phpunit/phpunit": "^6.1"
1825
+ },
1826
+ "type": "library",
1827
+ "extra": {
1828
+ "branch-alias": {
1829
+ "dev-master": "3.1.x-dev"
1830
+ }
1831
+ },
1832
+ "autoload": {
1833
+ "classmap": [
1834
+ "src/"
1835
+ ]
1836
+ },
1837
+ "notification-url": "https://packagist.org/downloads/",
1838
+ "license": [
1839
+ "BSD-3-Clause"
1840
+ ],
1841
+ "authors": [
1842
+ {
1843
+ "name": "Sebastian Bergmann",
1844
+ "email": "sebastian@phpunit.de"
1845
+ }
1846
+ ],
1847
+ "description": "Provides functionality to handle HHVM/PHP environments",
1848
+ "homepage": "http://www.github.com/sebastianbergmann/environment",
1849
+ "keywords": [
1850
+ "Xdebug",
1851
+ "environment",
1852
+ "hhvm"
1853
+ ],
1854
+ "time": "2017-07-01T08:51:00+00:00"
1855
+ },
1856
+ {
1857
+ "name": "sebastian/exporter",
1858
+ "version": "3.1.0",
1859
+ "source": {
1860
+ "type": "git",
1861
+ "url": "https://github.com/sebastianbergmann/exporter.git",
1862
+ "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
1863
+ },
1864
+ "dist": {
1865
+ "type": "zip",
1866
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
1867
+ "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
1868
+ "shasum": ""
1869
+ },
1870
+ "require": {
1871
+ "php": "^7.0",
1872
+ "sebastian/recursion-context": "^3.0"
1873
+ },
1874
+ "require-dev": {
1875
+ "ext-mbstring": "*",
1876
+ "phpunit/phpunit": "^6.0"
1877
+ },
1878
+ "type": "library",
1879
+ "extra": {
1880
+ "branch-alias": {
1881
+ "dev-master": "3.1.x-dev"
1882
+ }
1883
+ },
1884
+ "autoload": {
1885
+ "classmap": [
1886
+ "src/"
1887
+ ]
1888
+ },
1889
+ "notification-url": "https://packagist.org/downloads/",
1890
+ "license": [
1891
+ "BSD-3-Clause"
1892
+ ],
1893
+ "authors": [
1894
+ {
1895
+ "name": "Jeff Welch",
1896
+ "email": "whatthejeff@gmail.com"
1897
+ },
1898
+ {
1899
+ "name": "Volker Dusch",
1900
+ "email": "github@wallbash.com"
1901
+ },
1902
+ {
1903
+ "name": "Bernhard Schussek",
1904
+ "email": "bschussek@2bepublished.at"
1905
+ },
1906
+ {
1907
+ "name": "Sebastian Bergmann",
1908
+ "email": "sebastian@phpunit.de"
1909
+ },
1910
+ {
1911
+ "name": "Adam Harvey",
1912
+ "email": "aharvey@php.net"
1913
+ }
1914
+ ],
1915
+ "description": "Provides the functionality to export PHP variables for visualization",
1916
+ "homepage": "http://www.github.com/sebastianbergmann/exporter",
1917
+ "keywords": [
1918
+ "export",
1919
+ "exporter"
1920
+ ],
1921
+ "time": "2017-04-03T13:19:02+00:00"
1922
+ },
1923
+ {
1924
+ "name": "sebastian/global-state",
1925
+ "version": "2.0.0",
1926
+ "source": {
1927
+ "type": "git",
1928
+ "url": "https://github.com/sebastianbergmann/global-state.git",
1929
+ "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
1930
+ },
1931
+ "dist": {
1932
+ "type": "zip",
1933
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
1934
+ "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
1935
+ "shasum": ""
1936
+ },
1937
+ "require": {
1938
+ "php": "^7.0"
1939
+ },
1940
+ "require-dev": {
1941
+ "phpunit/phpunit": "^6.0"
1942
+ },
1943
+ "suggest": {
1944
+ "ext-uopz": "*"
1945
+ },
1946
+ "type": "library",
1947
+ "extra": {
1948
+ "branch-alias": {
1949
+ "dev-master": "2.0-dev"
1950
+ }
1951
+ },
1952
+ "autoload": {
1953
+ "classmap": [
1954
+ "src/"
1955
+ ]
1956
+ },
1957
+ "notification-url": "https://packagist.org/downloads/",
1958
+ "license": [
1959
+ "BSD-3-Clause"
1960
+ ],
1961
+ "authors": [
1962
+ {
1963
+ "name": "Sebastian Bergmann",
1964
+ "email": "sebastian@phpunit.de"
1965
+ }
1966
+ ],
1967
+ "description": "Snapshotting of global state",
1968
+ "homepage": "http://www.github.com/sebastianbergmann/global-state",
1969
+ "keywords": [
1970
+ "global state"
1971
+ ],
1972
+ "time": "2017-04-27T15:39:26+00:00"
1973
+ },
1974
+ {
1975
+ "name": "sebastian/object-enumerator",
1976
+ "version": "3.0.3",
1977
+ "source": {
1978
+ "type": "git",
1979
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
1980
+ "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
1981
+ },
1982
+ "dist": {
1983
+ "type": "zip",
1984
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
1985
+ "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
1986
+ "shasum": ""
1987
+ },
1988
+ "require": {
1989
+ "php": "^7.0",
1990
+ "sebastian/object-reflector": "^1.1.1",
1991
+ "sebastian/recursion-context": "^3.0"
1992
+ },
1993
+ "require-dev": {
1994
+ "phpunit/phpunit": "^6.0"
1995
+ },
1996
+ "type": "library",
1997
+ "extra": {
1998
+ "branch-alias": {
1999
+ "dev-master": "3.0.x-dev"
2000
+ }
2001
+ },
2002
+ "autoload": {
2003
+ "classmap": [
2004
+ "src/"
2005
+ ]
2006
+ },
2007
+ "notification-url": "https://packagist.org/downloads/",
2008
+ "license": [
2009
+ "BSD-3-Clause"
2010
+ ],
2011
+ "authors": [
2012
+ {
2013
+ "name": "Sebastian Bergmann",
2014
+ "email": "sebastian@phpunit.de"
2015
+ }
2016
+ ],
2017
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
2018
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
2019
+ "time": "2017-08-03T12:35:26+00:00"
2020
+ },
2021
+ {
2022
+ "name": "sebastian/object-reflector",
2023
+ "version": "1.1.1",
2024
+ "source": {
2025
+ "type": "git",
2026
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
2027
+ "reference": "773f97c67f28de00d397be301821b06708fca0be"
2028
+ },
2029
+ "dist": {
2030
+ "type": "zip",
2031
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
2032
+ "reference": "773f97c67f28de00d397be301821b06708fca0be",
2033
+ "shasum": ""
2034
+ },
2035
+ "require": {
2036
+ "php": "^7.0"
2037
+ },
2038
+ "require-dev": {
2039
+ "phpunit/phpunit": "^6.0"
2040
+ },
2041
+ "type": "library",
2042
+ "extra": {
2043
+ "branch-alias": {
2044
+ "dev-master": "1.1-dev"
2045
+ }
2046
+ },
2047
+ "autoload": {
2048
+ "classmap": [
2049
+ "src/"
2050
+ ]
2051
+ },
2052
+ "notification-url": "https://packagist.org/downloads/",
2053
+ "license": [
2054
+ "BSD-3-Clause"
2055
+ ],
2056
+ "authors": [
2057
+ {
2058
+ "name": "Sebastian Bergmann",
2059
+ "email": "sebastian@phpunit.de"
2060
+ }
2061
+ ],
2062
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
2063
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
2064
+ "time": "2017-03-29T09:07:27+00:00"
2065
+ },
2066
+ {
2067
+ "name": "sebastian/recursion-context",
2068
+ "version": "3.0.0",
2069
+ "source": {
2070
+ "type": "git",
2071
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
2072
+ "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
2073
+ },
2074
+ "dist": {
2075
+ "type": "zip",
2076
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
2077
+ "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
2078
+ "shasum": ""
2079
+ },
2080
+ "require": {
2081
+ "php": "^7.0"
2082
+ },
2083
+ "require-dev": {
2084
+ "phpunit/phpunit": "^6.0"
2085
+ },
2086
+ "type": "library",
2087
+ "extra": {
2088
+ "branch-alias": {
2089
+ "dev-master": "3.0.x-dev"
2090
+ }
2091
+ },
2092
+ "autoload": {
2093
+ "classmap": [
2094
+ "src/"
2095
+ ]
2096
+ },
2097
+ "notification-url": "https://packagist.org/downloads/",
2098
+ "license": [
2099
+ "BSD-3-Clause"
2100
+ ],
2101
+ "authors": [
2102
+ {
2103
+ "name": "Jeff Welch",
2104
+ "email": "whatthejeff@gmail.com"
2105
+ },
2106
+ {
2107
+ "name": "Sebastian Bergmann",
2108
+ "email": "sebastian@phpunit.de"
2109
+ },
2110
+ {
2111
+ "name": "Adam Harvey",
2112
+ "email": "aharvey@php.net"
2113
+ }
2114
+ ],
2115
+ "description": "Provides functionality to recursively process PHP variables",
2116
+ "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
2117
+ "time": "2017-03-03T06:23:57+00:00"
2118
+ },
2119
+ {
2120
+ "name": "sebastian/resource-operations",
2121
+ "version": "1.0.0",
2122
+ "source": {
2123
+ "type": "git",
2124
+ "url": "https://github.com/sebastianbergmann/resource-operations.git",
2125
+ "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
2126
+ },
2127
+ "dist": {
2128
+ "type": "zip",
2129
+ "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
2130
+ "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
2131
+ "shasum": ""
2132
+ },
2133
+ "require": {
2134
+ "php": ">=5.6.0"
2135
+ },
2136
+ "type": "library",
2137
+ "extra": {
2138
+ "branch-alias": {
2139
+ "dev-master": "1.0.x-dev"
2140
+ }
2141
+ },
2142
+ "autoload": {
2143
+ "classmap": [
2144
+ "src/"
2145
+ ]
2146
+ },
2147
+ "notification-url": "https://packagist.org/downloads/",
2148
+ "license": [
2149
+ "BSD-3-Clause"
2150
+ ],
2151
+ "authors": [
2152
+ {
2153
+ "name": "Sebastian Bergmann",
2154
+ "email": "sebastian@phpunit.de"
2155
+ }
2156
+ ],
2157
+ "description": "Provides a list of PHP built-in functions that operate on resources",
2158
+ "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
2159
+ "time": "2015-07-28T20:34:47+00:00"
2160
+ },
2161
+ {
2162
+ "name": "sebastian/version",
2163
+ "version": "2.0.1",
2164
+ "source": {
2165
+ "type": "git",
2166
+ "url": "https://github.com/sebastianbergmann/version.git",
2167
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
2168
+ },
2169
+ "dist": {
2170
+ "type": "zip",
2171
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
2172
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
2173
+ "shasum": ""
2174
+ },
2175
+ "require": {
2176
+ "php": ">=5.6"
2177
+ },
2178
+ "type": "library",
2179
+ "extra": {
2180
+ "branch-alias": {
2181
+ "dev-master": "2.0.x-dev"
2182
+ }
2183
+ },
2184
+ "autoload": {
2185
+ "classmap": [
2186
+ "src/"
2187
+ ]
2188
+ },
2189
+ "notification-url": "https://packagist.org/downloads/",
2190
+ "license": [
2191
+ "BSD-3-Clause"
2192
+ ],
2193
+ "authors": [
2194
+ {
2195
+ "name": "Sebastian Bergmann",
2196
+ "email": "sebastian@phpunit.de",
2197
+ "role": "lead"
2198
+ }
2199
+ ],
2200
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
2201
+ "homepage": "https://github.com/sebastianbergmann/version",
2202
+ "time": "2016-10-03T07:35:21+00:00"
2203
+ },
2204
+ {
2205
+ "name": "seld/cli-prompt",
2206
+ "version": "1.0.3",
2207
+ "source": {
2208
+ "type": "git",
2209
+ "url": "https://github.com/Seldaek/cli-prompt.git",
2210
+ "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
2211
+ },
2212
+ "dist": {
2213
+ "type": "zip",
2214
+ "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
2215
+ "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
2216
+ "shasum": ""
2217
+ },
2218
+ "require": {
2219
+ "php": ">=5.3"
2220
+ },
2221
+ "type": "library",
2222
+ "extra": {
2223
+ "branch-alias": {
2224
+ "dev-master": "1.x-dev"
2225
+ }
2226
+ },
2227
+ "autoload": {
2228
+ "psr-4": {
2229
+ "Seld\\CliPrompt\\": "src/"
2230
+ }
2231
+ },
2232
+ "notification-url": "https://packagist.org/downloads/",
2233
+ "license": [
2234
+ "MIT"
2235
+ ],
2236
+ "authors": [
2237
+ {
2238
+ "name": "Jordi Boggiano",
2239
+ "email": "j.boggiano@seld.be"
2240
+ }
2241
+ ],
2242
+ "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
2243
+ "keywords": [
2244
+ "cli",
2245
+ "console",
2246
+ "hidden",
2247
+ "input",
2248
+ "prompt"
2249
+ ],
2250
+ "time": "2017-03-18T11:32:45+00:00"
2251
+ },
2252
+ {
2253
+ "name": "seld/jsonlint",
2254
+ "version": "1.7.1",
2255
+ "source": {
2256
+ "type": "git",
2257
+ "url": "https://github.com/Seldaek/jsonlint.git",
2258
+ "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
2259
+ },
2260
+ "dist": {
2261
+ "type": "zip",
2262
+ "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
2263
+ "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
2264
+ "shasum": ""
2265
+ },
2266
+ "require": {
2267
+ "php": "^5.3 || ^7.0"
2268
+ },
2269
+ "require-dev": {
2270
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
2271
+ },
2272
+ "bin": [
2273
+ "bin/jsonlint"
2274
+ ],
2275
+ "type": "library",
2276
+ "autoload": {
2277
+ "psr-4": {
2278
+ "Seld\\JsonLint\\": "src/Seld/JsonLint/"
2279
+ }
2280
+ },
2281
+ "notification-url": "https://packagist.org/downloads/",
2282
+ "license": [
2283
+ "MIT"
2284
+ ],
2285
+ "authors": [
2286
+ {
2287
+ "name": "Jordi Boggiano",
2288
+ "email": "j.boggiano@seld.be",
2289
+ "homepage": "http://seld.be"
2290
+ }
2291
+ ],
2292
+ "description": "JSON Linter",
2293
+ "keywords": [
2294
+ "json",
2295
+ "linter",
2296
+ "parser",
2297
+ "validator"
2298
+ ],
2299
+ "time": "2018-01-24T12:46:19+00:00"
2300
+ },
2301
+ {
2302
+ "name": "seld/phar-utils",
2303
+ "version": "1.0.1",
2304
+ "source": {
2305
+ "type": "git",
2306
+ "url": "https://github.com/Seldaek/phar-utils.git",
2307
+ "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
2308
+ },
2309
+ "dist": {
2310
+ "type": "zip",
2311
+ "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
2312
+ "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
2313
+ "shasum": ""
2314
+ },
2315
+ "require": {
2316
+ "php": ">=5.3"
2317
+ },
2318
+ "type": "library",
2319
+ "extra": {
2320
+ "branch-alias": {
2321
+ "dev-master": "1.x-dev"
2322
+ }
2323
+ },
2324
+ "autoload": {
2325
+ "psr-4": {
2326
+ "Seld\\PharUtils\\": "src/"
2327
+ }
2328
+ },
2329
+ "notification-url": "https://packagist.org/downloads/",
2330
+ "license": [
2331
+ "MIT"
2332
+ ],
2333
+ "authors": [
2334
+ {
2335
+ "name": "Jordi Boggiano",
2336
+ "email": "j.boggiano@seld.be"
2337
+ }
2338
+ ],
2339
+ "description": "PHAR file format utilities, for when PHP phars you up",
2340
+ "keywords": [
2341
+ "phra"
2342
+ ],
2343
+ "time": "2015-10-13T18:44:15+00:00"
2344
+ },
2345
+ {
2346
+ "name": "slevomat/coding-standard",
2347
+ "version": "4.8.7",
2348
+ "source": {
2349
+ "type": "git",
2350
+ "url": "https://github.com/slevomat/coding-standard.git",
2351
+ "reference": "bff96313d8c7c2ba57a4edb13c1c141df8988c58"
2352
+ },
2353
+ "dist": {
2354
+ "type": "zip",
2355
+ "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/bff96313d8c7c2ba57a4edb13c1c141df8988c58",
2356
+ "reference": "bff96313d8c7c2ba57a4edb13c1c141df8988c58",
2357
+ "shasum": ""
2358
+ },
2359
+ "require": {
2360
+ "php": "^7.1",
2361
+ "squizlabs/php_codesniffer": "^3.4.0"
2362
+ },
2363
+ "require-dev": {
2364
+ "jakub-onderka/php-parallel-lint": "1.0.0",
2365
+ "phing/phing": "2.16.1",
2366
+ "phpstan/phpstan": "0.9.2",
2367
+ "phpstan/phpstan-phpunit": "0.9.4",
2368
+ "phpstan/phpstan-strict-rules": "0.9",
2369
+ "phpunit/phpunit": "7.5.1"
2370
+ },
2371
+ "type": "phpcodesniffer-standard",
2372
+ "autoload": {
2373
+ "psr-4": {
2374
+ "SlevomatCodingStandard\\": "SlevomatCodingStandard"
2375
+ }
2376
+ },
2377
+ "notification-url": "https://packagist.org/downloads/",
2378
+ "license": [
2379
+ "MIT"
2380
+ ],
2381
+ "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
2382
+ "time": "2019-01-03T13:15:50+00:00"
2383
+ },
2384
+ {
2385
+ "name": "squizlabs/php_codesniffer",
2386
+ "version": "3.4.0",
2387
+ "source": {
2388
+ "type": "git",
2389
+ "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
2390
+ "reference": "379deb987e26c7cd103a7b387aea178baec96e48"
2391
+ },
2392
+ "dist": {
2393
+ "type": "zip",
2394
+ "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/379deb987e26c7cd103a7b387aea178baec96e48",
2395
+ "reference": "379deb987e26c7cd103a7b387aea178baec96e48",
2396
+ "shasum": ""
2397
+ },
2398
+ "require": {
2399
+ "ext-simplexml": "*",
2400
+ "ext-tokenizer": "*",
2401
+ "ext-xmlwriter": "*",
2402
+ "php": ">=5.4.0"
2403
+ },
2404
+ "require-dev": {
2405
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
2406
+ },
2407
+ "bin": [
2408
+ "bin/phpcs",
2409
+ "bin/phpcbf"
2410
+ ],
2411
+ "type": "library",
2412
+ "extra": {
2413
+ "branch-alias": {
2414
+ "dev-master": "3.x-dev"
2415
+ }
2416
+ },
2417
+ "notification-url": "https://packagist.org/downloads/",
2418
+ "license": [
2419
+ "BSD-3-Clause"
2420
+ ],
2421
+ "authors": [
2422
+ {
2423
+ "name": "Greg Sherwood",
2424
+ "role": "lead"
2425
+ }
2426
+ ],
2427
+ "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
2428
+ "homepage": "http://www.squizlabs.com/php-codesniffer",
2429
+ "keywords": [
2430
+ "phpcs",
2431
+ "standards"
2432
+ ],
2433
+ "time": "2018-12-19T23:57:18+00:00"
2434
+ },
2435
+ {
2436
+ "name": "symfony/console",
2437
+ "version": "v4.0.9",
2438
+ "source": {
2439
+ "type": "git",
2440
+ "url": "https://github.com/symfony/console.git",
2441
+ "reference": "3e820bc2c520a87ca209ad8fa961c97f42e0b4ae"
2442
+ },
2443
+ "dist": {
2444
+ "type": "zip",
2445
+ "url": "https://api.github.com/repos/symfony/console/zipball/3e820bc2c520a87ca209ad8fa961c97f42e0b4ae",
2446
+ "reference": "3e820bc2c520a87ca209ad8fa961c97f42e0b4ae",
2447
+ "shasum": ""
2448
+ },
2449
+ "require": {
2450
+ "php": "^7.1.3",
2451
+ "symfony/polyfill-mbstring": "~1.0"
2452
+ },
2453
+ "conflict": {
2454
+ "symfony/dependency-injection": "<3.4",
2455
+ "symfony/process": "<3.3"
2456
+ },
2457
+ "require-dev": {
2458
+ "psr/log": "~1.0",
2459
+ "symfony/config": "~3.4|~4.0",
2460
+ "symfony/dependency-injection": "~3.4|~4.0",
2461
+ "symfony/event-dispatcher": "~3.4|~4.0",
2462
+ "symfony/lock": "~3.4|~4.0",
2463
+ "symfony/process": "~3.4|~4.0"
2464
+ },
2465
+ "suggest": {
2466
+ "psr/log-implementation": "For using the console logger",
2467
+ "symfony/event-dispatcher": "",
2468
+ "symfony/lock": "",
2469
+ "symfony/process": ""
2470
+ },
2471
+ "type": "library",
2472
+ "extra": {
2473
+ "branch-alias": {
2474
+ "dev-master": "4.0-dev"
2475
+ }
2476
+ },
2477
+ "autoload": {
2478
+ "psr-4": {
2479
+ "Symfony\\Component\\Console\\": ""
2480
+ },
2481
+ "exclude-from-classmap": [
2482
+ "/Tests/"
2483
+ ]
2484
+ },
2485
+ "notification-url": "https://packagist.org/downloads/",
2486
+ "license": [
2487
+ "MIT"
2488
+ ],
2489
+ "authors": [
2490
+ {
2491
+ "name": "Fabien Potencier",
2492
+ "email": "fabien@symfony.com"
2493
+ },
2494
+ {
2495
+ "name": "Symfony Community",
2496
+ "homepage": "https://symfony.com/contributors"
2497
+ }
2498
+ ],
2499
+ "description": "Symfony Console Component",
2500
+ "homepage": "https://symfony.com",
2501
+ "time": "2018-04-30T01:23:47+00:00"
2502
+ },
2503
+ {
2504
+ "name": "symfony/filesystem",
2505
+ "version": "v4.0.9",
2506
+ "source": {
2507
+ "type": "git",
2508
+ "url": "https://github.com/symfony/filesystem.git",
2509
+ "reference": "5d2d655b2c72fc4d9bf7e9bf14f72a447b940f21"
2510
+ },
2511
+ "dist": {
2512
+ "type": "zip",
2513
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/5d2d655b2c72fc4d9bf7e9bf14f72a447b940f21",
2514
+ "reference": "5d2d655b2c72fc4d9bf7e9bf14f72a447b940f21",
2515
+ "shasum": ""
2516
+ },
2517
+ "require": {
2518
+ "php": "^7.1.3"
2519
+ },
2520
+ "type": "library",
2521
+ "extra": {
2522
+ "branch-alias": {
2523
+ "dev-master": "4.0-dev"
2524
+ }
2525
+ },
2526
+ "autoload": {
2527
+ "psr-4": {
2528
+ "Symfony\\Component\\Filesystem\\": ""
2529
+ },
2530
+ "exclude-from-classmap": [
2531
+ "/Tests/"
2532
+ ]
2533
+ },
2534
+ "notification-url": "https://packagist.org/downloads/",
2535
+ "license": [
2536
+ "MIT"
2537
+ ],
2538
+ "authors": [
2539
+ {
2540
+ "name": "Fabien Potencier",
2541
+ "email": "fabien@symfony.com"
2542
+ },
2543
+ {
2544
+ "name": "Symfony Community",
2545
+ "homepage": "https://symfony.com/contributors"
2546
+ }
2547
+ ],
2548
+ "description": "Symfony Filesystem Component",
2549
+ "homepage": "https://symfony.com",
2550
+ "time": "2018-02-22T10:50:29+00:00"
2551
+ },
2552
+ {
2553
+ "name": "symfony/finder",
2554
+ "version": "v4.0.9",
2555
+ "source": {
2556
+ "type": "git",
2557
+ "url": "https://github.com/symfony/finder.git",
2558
+ "reference": "ca27c02b7a3fef4828c998c2ff9ba7aae1641c49"
2559
+ },
2560
+ "dist": {
2561
+ "type": "zip",
2562
+ "url": "https://api.github.com/repos/symfony/finder/zipball/ca27c02b7a3fef4828c998c2ff9ba7aae1641c49",
2563
+ "reference": "ca27c02b7a3fef4828c998c2ff9ba7aae1641c49",
2564
+ "shasum": ""
2565
+ },
2566
+ "require": {
2567
+ "php": "^7.1.3"
2568
+ },
2569
+ "type": "library",
2570
+ "extra": {
2571
+ "branch-alias": {
2572
+ "dev-master": "4.0-dev"
2573
+ }
2574
+ },
2575
+ "autoload": {
2576
+ "psr-4": {
2577
+ "Symfony\\Component\\Finder\\": ""
2578
+ },
2579
+ "exclude-from-classmap": [
2580
+ "/Tests/"
2581
+ ]
2582
+ },
2583
+ "notification-url": "https://packagist.org/downloads/",
2584
+ "license": [
2585
+ "MIT"
2586
+ ],
2587
+ "authors": [
2588
+ {
2589
+ "name": "Fabien Potencier",
2590
+ "email": "fabien@symfony.com"
2591
+ },
2592
+ {
2593
+ "name": "Symfony Community",
2594
+ "homepage": "https://symfony.com/contributors"
2595
+ }
2596
+ ],
2597
+ "description": "Symfony Finder Component",
2598
+ "homepage": "https://symfony.com",
2599
+ "time": "2018-04-04T05:10:37+00:00"
2600
+ },
2601
+ {
2602
+ "name": "symfony/polyfill-mbstring",
2603
+ "version": "v1.8.0",
2604
+ "source": {
2605
+ "type": "git",
2606
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
2607
+ "reference": "3296adf6a6454a050679cde90f95350ad604b171"
2608
+ },
2609
+ "dist": {
2610
+ "type": "zip",
2611
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
2612
+ "reference": "3296adf6a6454a050679cde90f95350ad604b171",
2613
+ "shasum": ""
2614
+ },
2615
+ "require": {
2616
+ "php": ">=5.3.3"
2617
+ },
2618
+ "suggest": {
2619
+ "ext-mbstring": "For best performance"
2620
+ },
2621
+ "type": "library",
2622
+ "extra": {
2623
+ "branch-alias": {
2624
+ "dev-master": "1.8-dev"
2625
+ }
2626
+ },
2627
+ "autoload": {
2628
+ "psr-4": {
2629
+ "Symfony\\Polyfill\\Mbstring\\": ""
2630
+ },
2631
+ "files": [
2632
+ "bootstrap.php"
2633
+ ]
2634
+ },
2635
+ "notification-url": "https://packagist.org/downloads/",
2636
+ "license": [
2637
+ "MIT"
2638
+ ],
2639
+ "authors": [
2640
+ {
2641
+ "name": "Nicolas Grekas",
2642
+ "email": "p@tchwork.com"
2643
+ },
2644
+ {
2645
+ "name": "Symfony Community",
2646
+ "homepage": "https://symfony.com/contributors"
2647
+ }
2648
+ ],
2649
+ "description": "Symfony polyfill for the Mbstring extension",
2650
+ "homepage": "https://symfony.com",
2651
+ "keywords": [
2652
+ "compatibility",
2653
+ "mbstring",
2654
+ "polyfill",
2655
+ "portable",
2656
+ "shim"
2657
+ ],
2658
+ "time": "2018-04-26T10:06:28+00:00"
2659
+ },
2660
+ {
2661
+ "name": "symfony/process",
2662
+ "version": "v4.0.9",
2663
+ "source": {
2664
+ "type": "git",
2665
+ "url": "https://github.com/symfony/process.git",
2666
+ "reference": "d7dc1ee5dfe9f732cb1bba7310f5b99f2b7a6d25"
2667
+ },
2668
+ "dist": {
2669
+ "type": "zip",
2670
+ "url": "https://api.github.com/repos/symfony/process/zipball/d7dc1ee5dfe9f732cb1bba7310f5b99f2b7a6d25",
2671
+ "reference": "d7dc1ee5dfe9f732cb1bba7310f5b99f2b7a6d25",
2672
+ "shasum": ""
2673
+ },
2674
+ "require": {
2675
+ "php": "^7.1.3"
2676
+ },
2677
+ "type": "library",
2678
+ "extra": {
2679
+ "branch-alias": {
2680
+ "dev-master": "4.0-dev"
2681
+ }
2682
+ },
2683
+ "autoload": {
2684
+ "psr-4": {
2685
+ "Symfony\\Component\\Process\\": ""
2686
+ },
2687
+ "exclude-from-classmap": [
2688
+ "/Tests/"
2689
+ ]
2690
+ },
2691
+ "notification-url": "https://packagist.org/downloads/",
2692
+ "license": [
2693
+ "MIT"
2694
+ ],
2695
+ "authors": [
2696
+ {
2697
+ "name": "Fabien Potencier",
2698
+ "email": "fabien@symfony.com"
2699
+ },
2700
+ {
2701
+ "name": "Symfony Community",
2702
+ "homepage": "https://symfony.com/contributors"
2703
+ }
2704
+ ],
2705
+ "description": "Symfony Process Component",
2706
+ "homepage": "https://symfony.com",
2707
+ "time": "2018-04-03T05:24:00+00:00"
2708
+ },
2709
+ {
2710
+ "name": "symfony/yaml",
2711
+ "version": "v4.0.9",
2712
+ "source": {
2713
+ "type": "git",
2714
+ "url": "https://github.com/symfony/yaml.git",
2715
+ "reference": "275ad099e4cbe612a2acbca14a16dd1c5311324d"
2716
+ },
2717
+ "dist": {
2718
+ "type": "zip",
2719
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/275ad099e4cbe612a2acbca14a16dd1c5311324d",
2720
+ "reference": "275ad099e4cbe612a2acbca14a16dd1c5311324d",
2721
+ "shasum": ""
2722
+ },
2723
+ "require": {
2724
+ "php": "^7.1.3"
2725
+ },
2726
+ "conflict": {
2727
+ "symfony/console": "<3.4"
2728
+ },
2729
+ "require-dev": {
2730
+ "symfony/console": "~3.4|~4.0"
2731
+ },
2732
+ "suggest": {
2733
+ "symfony/console": "For validating YAML files using the lint command"
2734
+ },
2735
+ "type": "library",
2736
+ "extra": {
2737
+ "branch-alias": {
2738
+ "dev-master": "4.0-dev"
2739
+ }
2740
+ },
2741
+ "autoload": {
2742
+ "psr-4": {
2743
+ "Symfony\\Component\\Yaml\\": ""
2744
+ },
2745
+ "exclude-from-classmap": [
2746
+ "/Tests/"
2747
+ ]
2748
+ },
2749
+ "notification-url": "https://packagist.org/downloads/",
2750
+ "license": [
2751
+ "MIT"
2752
+ ],
2753
+ "authors": [
2754
+ {
2755
+ "name": "Fabien Potencier",
2756
+ "email": "fabien@symfony.com"
2757
+ },
2758
+ {
2759
+ "name": "Symfony Community",
2760
+ "homepage": "https://symfony.com/contributors"
2761
+ }
2762
+ ],
2763
+ "description": "Symfony Yaml Component",
2764
+ "homepage": "https://symfony.com",
2765
+ "time": "2018-04-08T08:49:08+00:00"
2766
+ },
2767
+ {
2768
+ "name": "theseer/tokenizer",
2769
+ "version": "1.1.0",
2770
+ "source": {
2771
+ "type": "git",
2772
+ "url": "https://github.com/theseer/tokenizer.git",
2773
+ "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
2774
+ },
2775
+ "dist": {
2776
+ "type": "zip",
2777
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
2778
+ "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
2779
+ "shasum": ""
2780
+ },
2781
+ "require": {
2782
+ "ext-dom": "*",
2783
+ "ext-tokenizer": "*",
2784
+ "ext-xmlwriter": "*",
2785
+ "php": "^7.0"
2786
+ },
2787
+ "type": "library",
2788
+ "autoload": {
2789
+ "classmap": [
2790
+ "src/"
2791
+ ]
2792
+ },
2793
+ "notification-url": "https://packagist.org/downloads/",
2794
+ "license": [
2795
+ "BSD-3-Clause"
2796
+ ],
2797
+ "authors": [
2798
+ {
2799
+ "name": "Arne Blankerts",
2800
+ "email": "arne@blankerts.de",
2801
+ "role": "Developer"
2802
+ }
2803
+ ],
2804
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
2805
+ "time": "2017-04-07T12:08:54+00:00"
2806
+ },
2807
+ {
2808
+ "name": "webmozart/assert",
2809
+ "version": "1.3.0",
2810
+ "source": {
2811
+ "type": "git",
2812
+ "url": "https://github.com/webmozart/assert.git",
2813
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
2814
+ },
2815
+ "dist": {
2816
+ "type": "zip",
2817
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
2818
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
2819
+ "shasum": ""
2820
+ },
2821
+ "require": {
2822
+ "php": "^5.3.3 || ^7.0"
2823
+ },
2824
+ "require-dev": {
2825
+ "phpunit/phpunit": "^4.6",
2826
+ "sebastian/version": "^1.0.1"
2827
+ },
2828
+ "type": "library",
2829
+ "extra": {
2830
+ "branch-alias": {
2831
+ "dev-master": "1.3-dev"
2832
+ }
2833
+ },
2834
+ "autoload": {
2835
+ "psr-4": {
2836
+ "Webmozart\\Assert\\": "src/"
2837
+ }
2838
+ },
2839
+ "notification-url": "https://packagist.org/downloads/",
2840
+ "license": [
2841
+ "MIT"
2842
+ ],
2843
+ "authors": [
2844
+ {
2845
+ "name": "Bernhard Schussek",
2846
+ "email": "bschussek@gmail.com"
2847
+ }
2848
+ ],
2849
+ "description": "Assertions to validate method input/output with nice error messages.",
2850
+ "keywords": [
2851
+ "assert",
2852
+ "check",
2853
+ "validate"
2854
+ ],
2855
+ "time": "2018-01-29T19:49:41+00:00"
2856
+ }
2857
+ ],
2858
+ "aliases": [],
2859
+ "minimum-stability": "stable",
2860
+ "stability-flags": [],
2861
+ "prefer-stable": false,
2862
+ "prefer-lowest": false,
2863
+ "platform": {
2864
+ "php": "^7.1.0"
2865
+ },
2866
+ "platform-dev": {
2867
+ "ext-zip": "*"
2868
+ }
2869
+ }