dependabot-composer 0.118.13 → 0.119.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1558) hide show
  1. checksums.yaml +4 -4
  2. data/helpers/.php_cs.cache +1 -0
  3. data/helpers/vendor/autoload.php +7 -0
  4. data/helpers/vendor/bin/composer +1 -0
  5. data/helpers/vendor/bin/jsonlint +1 -0
  6. data/helpers/vendor/bin/php-cs-fixer +1 -0
  7. data/helpers/vendor/bin/phpstan +1 -0
  8. data/helpers/vendor/bin/phpstan.phar +1 -0
  9. data/helpers/vendor/bin/validate-json +1 -0
  10. data/helpers/vendor/composer/ClassLoader.php +445 -0
  11. data/helpers/vendor/composer/LICENSE +21 -0
  12. data/helpers/vendor/composer/autoload_classmap.php +66 -0
  13. data/helpers/vendor/composer/autoload_files.php +14 -0
  14. data/helpers/vendor/composer/autoload_namespaces.php +9 -0
  15. data/helpers/vendor/composer/autoload_psr4.php +34 -0
  16. data/helpers/vendor/composer/autoload_real.php +73 -0
  17. data/helpers/vendor/composer/autoload_static.php +232 -0
  18. data/helpers/vendor/composer/ca-bundle/LICENSE +19 -0
  19. data/helpers/vendor/composer/ca-bundle/README.md +85 -0
  20. data/helpers/vendor/composer/ca-bundle/composer.json +54 -0
  21. data/helpers/vendor/composer/ca-bundle/res/cacert.pem +3466 -0
  22. data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +325 -0
  23. data/helpers/vendor/composer/composer/.editorconfig +11 -0
  24. data/helpers/vendor/composer/composer/.gitattributes +17 -0
  25. data/helpers/vendor/composer/composer/.gitignore +11 -0
  26. data/helpers/vendor/composer/composer/CHANGELOG.md +952 -0
  27. data/helpers/vendor/composer/composer/LICENSE +19 -0
  28. data/helpers/vendor/composer/composer/PORTING_INFO +39 -0
  29. data/helpers/vendor/composer/composer/README.md +63 -0
  30. data/helpers/vendor/composer/composer/bin/compile +31 -0
  31. data/helpers/vendor/composer/composer/bin/composer +62 -0
  32. data/helpers/vendor/composer/composer/composer.json +86 -0
  33. data/helpers/vendor/composer/composer/composer.lock +1425 -0
  34. data/helpers/vendor/composer/composer/doc/00-intro.md +166 -0
  35. data/helpers/vendor/composer/composer/doc/01-basic-usage.md +273 -0
  36. data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
  37. data/helpers/vendor/composer/composer/doc/03-cli.md +957 -0
  38. data/helpers/vendor/composer/composer/doc/04-schema.md +958 -0
  39. data/helpers/vendor/composer/composer/doc/05-repositories.md +719 -0
  40. data/helpers/vendor/composer/composer/doc/06-config.md +310 -0
  41. data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
  42. data/helpers/vendor/composer/composer/doc/articles/aliases.md +111 -0
  43. data/helpers/vendor/composer/composer/doc/articles/autoloader-optimization.md +111 -0
  44. data/helpers/vendor/composer/composer/doc/articles/custom-installers.md +204 -0
  45. data/helpers/vendor/composer/composer/doc/articles/handling-private-packages-with-satis.md +356 -0
  46. data/helpers/vendor/composer/composer/doc/articles/http-basic-authentication.md +59 -0
  47. data/helpers/vendor/composer/composer/doc/articles/plugins.md +290 -0
  48. data/helpers/vendor/composer/composer/doc/articles/scripts.md +372 -0
  49. data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +322 -0
  50. data/helpers/vendor/composer/composer/doc/articles/vendor-binaries.md +110 -0
  51. data/helpers/vendor/composer/composer/doc/articles/versions.md +230 -0
  52. data/helpers/vendor/composer/composer/doc/dev/DefaultPolicy.md +55 -0
  53. data/helpers/vendor/composer/composer/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md +55 -0
  54. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-composer-programmatically.md +42 -0
  55. data/helpers/vendor/composer/composer/doc/faqs/how-to-install-untrusted-packages-safely.md +19 -0
  56. data/helpers/vendor/composer/composer/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md +32 -0
  57. data/helpers/vendor/composer/composer/doc/faqs/which-version-numbering-system-does-composer-itself-use.md +4 -0
  58. data/helpers/vendor/composer/composer/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md +21 -0
  59. data/helpers/vendor/composer/composer/doc/faqs/why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md +21 -0
  60. data/helpers/vendor/composer/composer/doc/faqs/why-can't-composer-load-repositories-recursively.md +35 -0
  61. data/helpers/vendor/composer/composer/doc/fixtures/fixtures.md +22 -0
  62. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-plain/packages.json +158 -0
  63. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/bar/baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json +50 -0
  64. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/foo/bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json +77 -0
  65. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/gar/nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json +50 -0
  66. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json +16 -0
  67. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/qux/quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json +22 -0
  68. data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/packages.json +9 -0
  69. data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
  70. data/helpers/vendor/composer/composer/res/composer-schema.json +880 -0
  71. data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1070 -0
  72. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
  73. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +312 -0
  74. data/helpers/vendor/composer/composer/src/Composer/Cache.php +257 -0
  75. data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +48 -0
  76. data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +172 -0
  77. data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
  78. data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +259 -0
  79. data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +166 -0
  80. data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +76 -0
  81. data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +803 -0
  82. data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +423 -0
  83. data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +57 -0
  84. data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +747 -0
  85. data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +90 -0
  86. data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +108 -0
  87. data/helpers/vendor/composer/composer/src/Composer/Command/FundCommand.php +107 -0
  88. data/helpers/vendor/composer/composer/src/Composer/Command/GlobalCommand.php +111 -0
  89. data/helpers/vendor/composer/composer/src/Composer/Command/HomeCommand.php +168 -0
  90. data/helpers/vendor/composer/composer/src/Composer/Command/InitCommand.php +854 -0
  91. data/helpers/vendor/composer/composer/src/Composer/Command/InstallCommand.php +124 -0
  92. data/helpers/vendor/composer/composer/src/Composer/Command/LicensesCommand.php +165 -0
  93. data/helpers/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php +95 -0
  94. data/helpers/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php +57 -0
  95. data/helpers/vendor/composer/composer/src/Composer/Command/RemoveCommand.php +163 -0
  96. data/helpers/vendor/composer/composer/src/Composer/Command/RequireCommand.php +297 -0
  97. data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +146 -0
  98. data/helpers/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php +66 -0
  99. data/helpers/vendor/composer/composer/src/Composer/Command/SearchCommand.php +85 -0
  100. data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +556 -0
  101. data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1211 -0
  102. data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +228 -0
  103. data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +154 -0
  104. data/helpers/vendor/composer/composer/src/Composer/Command/UpdateCommand.php +228 -0
  105. data/helpers/vendor/composer/composer/src/Composer/Command/ValidateCommand.php +178 -0
  106. data/helpers/vendor/composer/composer/src/Composer/Compiler.php +287 -0
  107. data/helpers/vendor/composer/composer/src/Composer/Composer.php +294 -0
  108. data/helpers/vendor/composer/composer/src/Composer/Config.php +483 -0
  109. data/helpers/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php +91 -0
  110. data/helpers/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php +277 -0
  111. data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +519 -0
  112. data/helpers/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php +90 -0
  113. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php +211 -0
  114. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php +285 -0
  115. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php +91 -0
  116. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php +66 -0
  117. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php +67 -0
  118. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php +67 -0
  119. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php +42 -0
  120. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php +50 -0
  121. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php +66 -0
  122. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php +83 -0
  123. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php +27 -0
  124. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php +387 -0
  125. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php +257 -0
  126. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Request.php +78 -0
  127. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php +268 -0
  128. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php +113 -0
  129. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSet.php +176 -0
  130. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php +394 -0
  131. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php +94 -0
  132. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php +52 -0
  133. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php +144 -0
  134. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php +113 -0
  135. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Solver.php +872 -0
  136. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverBugException.php +27 -0
  137. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php +88 -0
  138. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Transaction.php +244 -0
  139. data/helpers/vendor/composer/composer/src/Composer/Downloader/ArchiveDownloader.php +135 -0
  140. data/helpers/vendor/composer/composer/src/Composer/Downloader/ChangeReportInterface.php +32 -0
  141. data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloadManager.php +325 -0
  142. data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloaderInterface.php +64 -0
  143. data/helpers/vendor/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php +32 -0
  144. data/helpers/vendor/composer/composer/src/Composer/Downloader/FileDownloader.php +322 -0
  145. data/helpers/vendor/composer/composer/src/Composer/Downloader/FilesystemException.php +26 -0
  146. data/helpers/vendor/composer/composer/src/Composer/Downloader/FossilDownloader.php +116 -0
  147. data/helpers/vendor/composer/composer/src/Composer/Downloader/GitDownloader.php +528 -0
  148. data/helpers/vendor/composer/composer/src/Composer/Downloader/GzipDownloader.php +84 -0
  149. data/helpers/vendor/composer/composer/src/Composer/Downloader/HgDownloader.php +100 -0
  150. data/helpers/vendor/composer/composer/src/Composer/Downloader/PathDownloader.php +228 -0
  151. data/helpers/vendor/composer/composer/src/Composer/Downloader/PearPackageExtractor.php +266 -0
  152. data/helpers/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php +112 -0
  153. data/helpers/vendor/composer/composer/src/Composer/Downloader/PharDownloader.php +36 -0
  154. data/helpers/vendor/composer/composer/src/Composer/Downloader/RarDownloader.php +91 -0
  155. data/helpers/vendor/composer/composer/src/Composer/Downloader/SvnDownloader.php +225 -0
  156. data/helpers/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php +31 -0
  157. data/helpers/vendor/composer/composer/src/Composer/Downloader/TransportException.php +53 -0
  158. data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php +32 -0
  159. data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsDownloader.php +293 -0
  160. data/helpers/vendor/composer/composer/src/Composer/Downloader/XzDownloader.php +60 -0
  161. data/helpers/vendor/composer/composer/src/Composer/Downloader/ZipDownloader.php +230 -0
  162. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/Event.php +103 -0
  163. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php +571 -0
  164. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php +48 -0
  165. data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php +20 -0
  166. data/helpers/vendor/composer/composer/src/Composer/Exception/NoSslException.php +20 -0
  167. data/helpers/vendor/composer/composer/src/Composer/Factory.php +653 -0
  168. data/helpers/vendor/composer/composer/src/Composer/IO/BaseIO.php +284 -0
  169. data/helpers/vendor/composer/composer/src/Composer/IO/BufferIO.php +86 -0
  170. data/helpers/vendor/composer/composer/src/Composer/IO/ConsoleIO.php +346 -0
  171. data/helpers/vendor/composer/composer/src/Composer/IO/IOInterface.php +207 -0
  172. data/helpers/vendor/composer/composer/src/Composer/IO/NullIO.php +129 -0
  173. data/helpers/vendor/composer/composer/src/Composer/Installer.php +1876 -0
  174. data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php +214 -0
  175. data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php +30 -0
  176. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallationManager.php +326 -0
  177. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvent.php +161 -0
  178. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvents.php +43 -0
  179. data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerInterface.php +79 -0
  180. data/helpers/vendor/composer/composer/src/Composer/Installer/LibraryInstaller.php +232 -0
  181. data/helpers/vendor/composer/composer/src/Composer/Installer/MetapackageInstaller.php +100 -0
  182. data/helpers/vendor/composer/composer/src/Composer/Installer/NoopInstaller.php +88 -0
  183. data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvent.php +65 -0
  184. data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvents.php +75 -0
  185. data/helpers/vendor/composer/composer/src/Composer/Installer/PearBinaryInstaller.php +144 -0
  186. data/helpers/vendor/composer/composer/src/Composer/Installer/PearInstaller.php +84 -0
  187. data/helpers/vendor/composer/composer/src/Composer/Installer/PluginInstaller.php +84 -0
  188. data/helpers/vendor/composer/composer/src/Composer/Installer/ProjectInstaller.php +99 -0
  189. data/helpers/vendor/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php +151 -0
  190. data/helpers/vendor/composer/composer/src/Composer/Json/JsonFile.php +319 -0
  191. data/helpers/vendor/composer/composer/src/Composer/Json/JsonFormatter.php +134 -0
  192. data/helpers/vendor/composer/composer/src/Composer/Json/JsonManipulator.php +530 -0
  193. data/helpers/vendor/composer/composer/src/Composer/Json/JsonValidationException.php +34 -0
  194. data/helpers/vendor/composer/composer/src/Composer/Package/AliasPackage.php +419 -0
  195. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php +44 -0
  196. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php +105 -0
  197. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php +183 -0
  198. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php +43 -0
  199. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php +148 -0
  200. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php +31 -0
  201. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php +79 -0
  202. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php +107 -0
  203. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php +97 -0
  204. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php +86 -0
  205. data/helpers/vendor/composer/composer/src/Composer/Package/BasePackage.php +251 -0
  206. data/helpers/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php +129 -0
  207. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackage.php +218 -0
  208. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +104 -0
  209. data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +152 -0
  210. data/helpers/vendor/composer/composer/src/Composer/Package/Link.php +128 -0
  211. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php +24 -0
  212. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php +24 -0
  213. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php +24 -0
  214. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php +24 -0
  215. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php +24 -0
  216. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php +294 -0
  217. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php +46 -0
  218. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php +45 -0
  219. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php +30 -0
  220. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php +264 -0
  221. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php +525 -0
  222. data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +440 -0
  223. data/helpers/vendor/composer/composer/src/Composer/Package/Package.php +612 -0
  224. data/helpers/vendor/composer/composer/src/Composer/Package/PackageInterface.php +389 -0
  225. data/helpers/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php +173 -0
  226. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackage.php +136 -0
  227. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php +142 -0
  228. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php +326 -0
  229. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php +81 -0
  230. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php +182 -0
  231. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php +23 -0
  232. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php +33 -0
  233. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capable.php +43 -0
  234. data/helpers/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php +88 -0
  235. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php +61 -0
  236. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php +39 -0
  237. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginManager.php +406 -0
  238. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php +68 -0
  239. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php +78 -0
  240. data/helpers/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php +94 -0
  241. data/helpers/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php +218 -0
  242. data/helpers/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php +107 -0
  243. data/helpers/vendor/composer/composer/src/Composer/Repository/BaseRepository.php +178 -0
  244. data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +841 -0
  245. data/helpers/vendor/composer/composer/src/Composer/Repository/CompositeRepository.php +164 -0
  246. data/helpers/vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php +23 -0
  247. data/helpers/vendor/composer/composer/src/Composer/Repository/FilesystemRepository.php +97 -0
  248. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php +24 -0
  249. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php +22 -0
  250. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php +24 -0
  251. data/helpers/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php +22 -0
  252. data/helpers/vendor/composer/composer/src/Composer/Repository/PackageRepository.php +61 -0
  253. data/helpers/vendor/composer/composer/src/Composer/Repository/PathRepository.php +224 -0
  254. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php +82 -0
  255. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php +67 -0
  256. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelReader.php +101 -0
  257. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php +164 -0
  258. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php +139 -0
  259. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php +60 -0
  260. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php +50 -0
  261. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php +317 -0
  262. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageInfo.php +94 -0
  263. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php +50 -0
  264. data/helpers/vendor/composer/composer/src/Composer/Repository/PearRepository.php +198 -0
  265. data/helpers/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php +349 -0
  266. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +177 -0
  267. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php +74 -0
  268. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php +189 -0
  269. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php +22 -0
  270. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php +452 -0
  271. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php +243 -0
  272. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php +91 -0
  273. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitDriver.php +235 -0
  274. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +567 -0
  275. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +579 -0
  276. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php +91 -0
  277. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgDriver.php +236 -0
  278. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php +186 -0
  279. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php +397 -0
  280. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php +175 -0
  281. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php +117 -0
  282. data/helpers/vendor/composer/composer/src/Composer/Repository/VcsRepository.php +430 -0
  283. data/helpers/vendor/composer/composer/src/Composer/Repository/VersionCacheInterface.php +23 -0
  284. data/helpers/vendor/composer/composer/src/Composer/Repository/WritableArrayRepository.php +66 -0
  285. data/helpers/vendor/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php +54 -0
  286. data/helpers/vendor/composer/composer/src/Composer/Script/CommandEvent.php +22 -0
  287. data/helpers/vendor/composer/composer/src/Composer/Script/Event.php +133 -0
  288. data/helpers/vendor/composer/composer/src/Composer/Script/PackageEvent.php +24 -0
  289. data/helpers/vendor/composer/composer/src/Composer/Script/ScriptEvents.php +193 -0
  290. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php +36 -0
  291. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php +82 -0
  292. data/helpers/vendor/composer/composer/src/Composer/Util/AuthHelper.php +63 -0
  293. data/helpers/vendor/composer/composer/src/Composer/Util/Bitbucket.php +245 -0
  294. data/helpers/vendor/composer/composer/src/Composer/Util/ComposerMirror.php +57 -0
  295. data/helpers/vendor/composer/composer/src/Composer/Util/ConfigValidator.php +191 -0
  296. data/helpers/vendor/composer/composer/src/Composer/Util/ErrorHandler.php +82 -0
  297. data/helpers/vendor/composer/composer/src/Composer/Util/Filesystem.php +719 -0
  298. data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +425 -0
  299. data/helpers/vendor/composer/composer/src/Composer/Util/GitHub.php +180 -0
  300. data/helpers/vendor/composer/composer/src/Composer/Util/GitLab.php +177 -0
  301. data/helpers/vendor/composer/composer/src/Composer/Util/Hg.php +94 -0
  302. data/helpers/vendor/composer/composer/src/Composer/Util/IniHelper.php +64 -0
  303. data/helpers/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php +435 -0
  304. data/helpers/vendor/composer/composer/src/Composer/Util/PackageSorter.php +92 -0
  305. data/helpers/vendor/composer/composer/src/Composer/Util/Perforce.php +579 -0
  306. data/helpers/vendor/composer/composer/src/Composer/Util/Platform.php +92 -0
  307. data/helpers/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php +201 -0
  308. data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1147 -0
  309. data/helpers/vendor/composer/composer/src/Composer/Util/Silencer.php +78 -0
  310. data/helpers/vendor/composer/composer/src/Composer/Util/SpdxLicense.php +24 -0
  311. data/helpers/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php +177 -0
  312. data/helpers/vendor/composer/composer/src/Composer/Util/Svn.php +381 -0
  313. data/helpers/vendor/composer/composer/src/Composer/Util/TlsHelper.php +202 -0
  314. data/helpers/vendor/composer/composer/src/Composer/Util/Url.php +55 -0
  315. data/helpers/vendor/composer/composer/src/Composer/Util/Zip.php +107 -0
  316. data/helpers/vendor/composer/composer/src/Composer/XdebugHandler.php +31 -0
  317. data/helpers/vendor/composer/composer/src/bootstrap.php +24 -0
  318. data/helpers/vendor/composer/installed.json +1860 -0
  319. data/helpers/vendor/composer/semver/CHANGELOG.md +78 -0
  320. data/helpers/vendor/composer/semver/LICENSE +19 -0
  321. data/helpers/vendor/composer/semver/README.md +70 -0
  322. data/helpers/vendor/composer/semver/composer.json +57 -0
  323. data/helpers/vendor/composer/semver/src/Comparator.php +111 -0
  324. data/helpers/vendor/composer/semver/src/Constraint/AbstractConstraint.php +63 -0
  325. data/helpers/vendor/composer/semver/src/Constraint/Constraint.php +215 -0
  326. data/helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php +32 -0
  327. data/helpers/vendor/composer/semver/src/Constraint/EmptyConstraint.php +59 -0
  328. data/helpers/vendor/composer/semver/src/Constraint/MultiConstraint.php +120 -0
  329. data/helpers/vendor/composer/semver/src/Semver.php +127 -0
  330. data/helpers/vendor/composer/semver/src/VersionParser.php +545 -0
  331. data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +104 -0
  332. data/helpers/vendor/composer/spdx-licenses/LICENSE +19 -0
  333. data/helpers/vendor/composer/spdx-licenses/README.md +69 -0
  334. data/helpers/vendor/composer/spdx-licenses/composer.json +56 -0
  335. data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +125 -0
  336. data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +2112 -0
  337. data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
  338. data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +74 -0
  339. data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
  340. data/helpers/vendor/composer/xdebug-handler/README.md +289 -0
  341. data/helpers/vendor/composer/xdebug-handler/composer.json +40 -0
  342. data/helpers/vendor/composer/xdebug-handler/src/PhpConfig.php +73 -0
  343. data/helpers/vendor/composer/xdebug-handler/src/Process.php +181 -0
  344. data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
  345. data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +572 -0
  346. data/helpers/vendor/doctrine/annotations/.doctrine-project.json +40 -0
  347. data/helpers/vendor/doctrine/annotations/CHANGELOG.md +162 -0
  348. data/helpers/vendor/doctrine/annotations/LICENSE +19 -0
  349. data/helpers/vendor/doctrine/annotations/README.md +17 -0
  350. data/helpers/vendor/doctrine/annotations/composer.json +44 -0
  351. data/helpers/vendor/doctrine/annotations/docs/en/annotations.rst +271 -0
  352. data/helpers/vendor/doctrine/annotations/docs/en/custom.rst +353 -0
  353. data/helpers/vendor/doctrine/annotations/docs/en/index.rst +97 -0
  354. data/helpers/vendor/doctrine/annotations/docs/en/sidebar.rst +6 -0
  355. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php +79 -0
  356. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attribute.php +47 -0
  357. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php +37 -0
  358. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php +84 -0
  359. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php +54 -0
  360. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Required.php +33 -0
  361. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php +107 -0
  362. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php +197 -0
  363. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php +418 -0
  364. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php +180 -0
  365. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php +278 -0
  366. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php +147 -0
  367. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php +1221 -0
  368. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php +290 -0
  369. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php +119 -0
  370. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/PhpParser.php +91 -0
  371. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php +89 -0
  372. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php +127 -0
  373. data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php +194 -0
  374. data/helpers/vendor/doctrine/annotations/phpbench.json.dist +4 -0
  375. data/helpers/vendor/doctrine/annotations/phpstan.neon +14 -0
  376. data/helpers/vendor/doctrine/lexer/.doctrine-project.json +17 -0
  377. data/helpers/vendor/doctrine/lexer/.github/FUNDING.yml +3 -0
  378. data/helpers/vendor/doctrine/lexer/.gitignore +2 -0
  379. data/helpers/vendor/doctrine/lexer/LICENSE +19 -0
  380. data/helpers/vendor/doctrine/lexer/README.md +7 -0
  381. data/helpers/vendor/doctrine/lexer/composer.json +36 -0
  382. data/helpers/vendor/doctrine/lexer/docs/en/dql-parser.rst +294 -0
  383. data/helpers/vendor/doctrine/lexer/docs/en/index.rst +53 -0
  384. data/helpers/vendor/doctrine/lexer/docs/en/sidebar.rst +6 -0
  385. data/helpers/vendor/doctrine/lexer/docs/en/simple-parser-example.rst +102 -0
  386. data/helpers/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php +332 -0
  387. data/helpers/vendor/doctrine/lexer/phpunit.xml.dist +26 -0
  388. data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/AbstractLexerTest.php +268 -0
  389. data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/ConcreteLexer.php +49 -0
  390. data/helpers/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +3249 -0
  391. data/helpers/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +43 -0
  392. data/helpers/vendor/friendsofphp/php-cs-fixer/LICENSE +20 -0
  393. data/helpers/vendor/friendsofphp/php-cs-fixer/README.rst +2203 -0
  394. data/helpers/vendor/friendsofphp/php-cs-fixer/UPGRADE.md +184 -0
  395. data/helpers/vendor/friendsofphp/php-cs-fixer/ci-integration.sh +8 -0
  396. data/helpers/vendor/friendsofphp/php-cs-fixer/composer.json +83 -0
  397. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/COOKBOOK-FIXERS.md +530 -0
  398. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/checkstyle.xsd +44 -0
  399. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/junit-10.xsd +135 -0
  400. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/schema.json +47 -0
  401. data/helpers/vendor/friendsofphp/php-cs-fixer/doc/xml.xsd +83 -0
  402. data/helpers/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +99 -0
  403. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractAlignFixerHelper.php +122 -0
  404. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +221 -0
  405. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +227 -0
  406. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +127 -0
  407. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +67 -0
  408. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractLinesBeforeNamespaceFixer.php +110 -0
  409. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +207 -0
  410. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +135 -0
  411. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +122 -0
  412. data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPsrAutoloadingFixer.php +87 -0
  413. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +138 -0
  414. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +56 -0
  415. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +35 -0
  416. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +53 -0
  417. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +26 -0
  418. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +122 -0
  419. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +99 -0
  420. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +33 -0
  421. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +30 -0
  422. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +110 -0
  423. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +53 -0
  424. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Config.php +280 -0
  425. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +194 -0
  426. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +40 -0
  427. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +54 -0
  428. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
  429. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
  430. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +122 -0
  431. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +415 -0
  432. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +59 -0
  433. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +270 -0
  434. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +58 -0
  435. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +637 -0
  436. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ReadmeCommand.php +279 -0
  437. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +177 -0
  438. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +941 -0
  439. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +154 -0
  440. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/NullOutput.php +23 -0
  441. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutput.php +145 -0
  442. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutputInterface.php +21 -0
  443. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +52 -0
  444. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +24 -0
  445. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +114 -0
  446. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +46 -0
  447. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +74 -0
  448. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +102 -0
  449. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +31 -0
  450. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +48 -0
  451. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +27 -0
  452. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannDiffer.php +39 -0
  453. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannShortDiffer.php +39 -0
  454. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +43 -0
  455. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +323 -0
  456. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +269 -0
  457. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +144 -0
  458. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +65 -0
  459. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +111 -0
  460. data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +57 -0
  461. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +99 -0
  462. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +377 -0
  463. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +118 -0
  464. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +79 -0
  465. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Event/Event.php +29 -0
  466. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +87 -0
  467. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +80 -0
  468. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Finder.php +35 -0
  469. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +145 -0
  470. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +184 -0
  471. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +130 -0
  472. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +227 -0
  473. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +162 -0
  474. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +211 -0
  475. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +167 -0
  476. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +249 -0
  477. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +149 -0
  478. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +86 -0
  479. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +89 -0
  480. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +152 -0
  481. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +59 -0
  482. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrailingCommaInMultilineArrayFixer.php +147 -0
  483. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +103 -0
  484. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +104 -0
  485. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +1070 -0
  486. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +94 -0
  487. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +180 -0
  488. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr0Fixer.php +171 -0
  489. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr4Fixer.php +100 -0
  490. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ConstantCaseFixer.php +146 -0
  491. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseConstantsFixer.php +60 -0
  492. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +75 -0
  493. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +105 -0
  494. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +98 -0
  495. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +228 -0
  496. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +117 -0
  497. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +177 -0
  498. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +129 -0
  499. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +95 -0
  500. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +159 -0
  501. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +106 -0
  502. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +90 -0
  503. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +86 -0
  504. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +392 -0
  505. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +436 -0
  506. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +60 -0
  507. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +214 -0
  508. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalPublicMethodForAbstractClassFixer.php +168 -0
  509. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalStaticAccessFixer.php +154 -0
  510. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/MethodSeparationFixer.php +84 -0
  511. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +101 -0
  512. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +98 -0
  513. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +390 -0
  514. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +143 -0
  515. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +500 -0
  516. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +231 -0
  517. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +140 -0
  518. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +191 -0
  519. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfStaticAccessorFixer.php +206 -0
  520. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +242 -0
  521. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +119 -0
  522. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +202 -0
  523. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +162 -0
  524. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +232 -0
  525. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HashToSlashCommentFixer.php +58 -0
  526. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +452 -0
  527. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +95 -0
  528. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +173 -0
  529. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +85 -0
  530. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +168 -0
  531. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +51 -0
  532. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurationDefinitionFixerInterface.php +28 -0
  533. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +284 -0
  534. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +102 -0
  535. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +153 -0
  536. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +227 -0
  537. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +369 -0
  538. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +113 -0
  539. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +74 -0
  540. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +189 -0
  541. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +177 -0
  542. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +127 -0
  543. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +113 -0
  544. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +92 -0
  545. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +750 -0
  546. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DefinedFixerInterface.php +29 -0
  547. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +26 -0
  548. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +104 -0
  549. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +123 -0
  550. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +199 -0
  551. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +349 -0
  552. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +77 -0
  553. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +234 -0
  554. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +130 -0
  555. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +114 -0
  556. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +217 -0
  557. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +94 -0
  558. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +150 -0
  559. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +511 -0
  560. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +424 -0
  561. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +184 -0
  562. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +218 -0
  563. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NullableTypeDeclarationForDefaultNullValueFixer.php +151 -0
  564. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToParamTypeFixer.php +420 -0
  565. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +378 -0
  566. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +133 -0
  567. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/SingleLineThrowFixer.php +149 -0
  568. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +149 -0
  569. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +259 -0
  570. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +178 -0
  571. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GlobalNamespaceImportFixer.php +751 -0
  572. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +99 -0
  573. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +277 -0
  574. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +534 -0
  575. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +252 -0
  576. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +158 -0
  577. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +248 -0
  578. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +172 -0
  579. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +191 -0
  580. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +140 -0
  581. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +131 -0
  582. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +175 -0
  583. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +91 -0
  584. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +320 -0
  585. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +203 -0
  586. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +231 -0
  587. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SilencedDeprecationErrorFixer.php +55 -0
  588. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +149 -0
  589. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +144 -0
  590. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +73 -0
  591. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +101 -0
  592. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +70 -0
  593. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +244 -0
  594. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignDoubleArrowFixerHelper.php +151 -0
  595. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignEqualsFixerHelper.php +78 -0
  596. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +833 -0
  597. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +161 -0
  598. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +217 -0
  599. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +76 -0
  600. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +150 -0
  601. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +81 -0
  602. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +79 -0
  603. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +67 -0
  604. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/PreIncrementFixer.php +56 -0
  605. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +167 -0
  606. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +66 -0
  607. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +121 -0
  608. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +215 -0
  609. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +78 -0
  610. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +98 -0
  611. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +131 -0
  612. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +73 -0
  613. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +69 -0
  614. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoShortEchoTagFixer.php +80 -0
  615. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +218 -0
  616. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +443 -0
  617. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +200 -0
  618. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +282 -0
  619. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +104 -0
  620. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +234 -0
  621. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +278 -0
  622. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +150 -0
  623. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +145 -0
  624. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +225 -0
  625. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +302 -0
  626. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitOrderedCoversFixer.php +107 -0
  627. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +140 -0
  628. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +270 -0
  629. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +154 -0
  630. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +61 -0
  631. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +533 -0
  632. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +474 -0
  633. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +150 -0
  634. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +171 -0
  635. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +130 -0
  636. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +113 -0
  637. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +71 -0
  638. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +506 -0
  639. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +278 -0
  640. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +434 -0
  641. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +132 -0
  642. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +139 -0
  643. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagFixer.php +107 -0
  644. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocLineSpanFixer.php +168 -0
  645. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +70 -0
  646. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +178 -0
  647. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +123 -0
  648. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +70 -0
  649. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +190 -0
  650. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +171 -0
  651. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +228 -0
  652. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +125 -0
  653. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +172 -0
  654. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +108 -0
  655. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +104 -0
  656. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +97 -0
  657. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +217 -0
  658. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +129 -0
  659. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +163 -0
  660. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +223 -0
  661. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +78 -0
  662. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +151 -0
  663. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/BlankLineBeforeReturnFixer.php +71 -0
  664. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +112 -0
  665. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +374 -0
  666. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +170 -0
  667. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +304 -0
  668. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +162 -0
  669. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoMultilineWhitespaceBeforeSemicolonsFixer.php +68 -0
  670. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +75 -0
  671. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +63 -0
  672. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +145 -0
  673. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +152 -0
  674. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +86 -0
  675. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +164 -0
  676. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +167 -0
  677. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +172 -0
  678. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +115 -0
  679. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +65 -0
  680. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +113 -0
  681. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +116 -0
  682. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +85 -0
  683. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +400 -0
  684. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +367 -0
  685. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +79 -0
  686. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +167 -0
  687. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +163 -0
  688. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +102 -0
  689. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +202 -0
  690. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +484 -0
  691. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraConsecutiveBlankLinesFixer.php +73 -0
  692. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +107 -0
  693. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +110 -0
  694. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +114 -0
  695. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +103 -0
  696. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +73 -0
  697. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +23 -0
  698. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +103 -0
  699. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +94 -0
  700. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +53 -0
  701. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +99 -0
  702. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +21 -0
  703. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +128 -0
  704. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +28 -0
  705. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverRootless.php +99 -0
  706. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +172 -0
  707. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +145 -0
  708. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +53 -0
  709. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
  710. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +54 -0
  711. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +29 -0
  712. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +67 -0
  713. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +26 -0
  714. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +93 -0
  715. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +55 -0
  716. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +65 -0
  717. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +26 -0
  718. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +75 -0
  719. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +26 -0
  720. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +254 -0
  721. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFileProcessedEvent.php +59 -0
  722. data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +36 -0
  723. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +75 -0
  724. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +72 -0
  725. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +64 -0
  726. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +44 -0
  727. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +20 -0
  728. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +24 -0
  729. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
  730. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +50 -0
  731. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +59 -0
  732. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +70 -0
  733. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +45 -0
  734. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +22 -0
  735. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +39 -0
  736. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
  737. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Preg.php +233 -0
  738. data/helpers/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
  739. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/CheckstyleReporter.php +74 -0
  740. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/GitlabReporter.php +60 -0
  741. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JsonReporter.php +71 -0
  742. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JunitReporter.php +141 -0
  743. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReportSummary.php +122 -0
  744. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterFactory.php +100 -0
  745. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterInterface.php +31 -0
  746. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/TextReporter.php +108 -0
  747. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/XmlReporter.php +140 -0
  748. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSet.php +534 -0
  749. data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSetInterface.php +59 -0
  750. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingIterator.php +80 -0
  751. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +122 -0
  752. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileLintingIterator.php +68 -0
  753. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +307 -0
  754. data/helpers/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +172 -0
  755. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractFixerTestCase.php +36 -0
  756. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractIntegrationTestCase.php +36 -0
  757. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AccessibleObject.php +93 -0
  758. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/IntegrationCase.php +136 -0
  759. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +42 -0
  760. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +108 -0
  761. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +127 -0
  762. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +147 -0
  763. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +30 -0
  764. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +125 -0
  765. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +140 -0
  766. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/BlocksAnalyzer.php +67 -0
  767. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ClassyAnalyzer.php +82 -0
  768. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +314 -0
  769. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +262 -0
  770. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +105 -0
  771. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +71 -0
  772. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +95 -0
  773. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CodeHasher.php +38 -0
  774. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Generator/NamespacedStringTokenGenerator.php +43 -0
  775. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Resolver/TypeShortNameResolver.php +94 -0
  776. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +618 -0
  777. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1453 -0
  778. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +743 -0
  779. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +61 -0
  780. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +88 -0
  781. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +64 -0
  782. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/CurlyBraceTransformer.php +221 -0
  783. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +67 -0
  784. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +61 -0
  785. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +70 -0
  786. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +62 -0
  787. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +196 -0
  788. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +86 -0
  789. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +88 -0
  790. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +110 -0
  791. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +71 -0
  792. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +72 -0
  793. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +113 -0
  794. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +111 -0
  795. data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +31 -0
  796. data/helpers/vendor/friendsofphp/php-cs-fixer/src/Utils.php +185 -0
  797. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +56 -0
  798. data/helpers/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +57 -0
  799. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractFixerTestCase.php +259 -0
  800. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationCaseFactory.php +254 -0
  801. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationTestCase.php +402 -0
  802. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/Assert/AssertTokensTrait.php +48 -0
  803. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCase.php +153 -0
  804. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactory.php +22 -0
  805. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactoryInterface.php +28 -0
  806. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/InternalIntegrationCaseFactory.php +35 -0
  807. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IsIdenticalConstraint.php +56 -0
  808. data/helpers/vendor/friendsofphp/php-cs-fixer/tests/TestCase.php +49 -0
  809. data/helpers/vendor/justinrainbow/json-schema/.php_cs.dist +33 -0
  810. data/helpers/vendor/justinrainbow/json-schema/LICENSE +21 -0
  811. data/helpers/vendor/justinrainbow/json-schema/README.md +206 -0
  812. data/helpers/vendor/justinrainbow/json-schema/bin/validate-json +251 -0
  813. data/helpers/vendor/justinrainbow/json-schema/composer.json +76 -0
  814. data/helpers/vendor/justinrainbow/json-schema/demo/README.md +14 -0
  815. data/helpers/vendor/justinrainbow/json-schema/demo/data.json +3 -0
  816. data/helpers/vendor/justinrainbow/json-schema/demo/demo.php +18 -0
  817. data/helpers/vendor/justinrainbow/json-schema/demo/schema.json +3 -0
  818. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json +174 -0
  819. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json +150 -0
  820. data/helpers/vendor/justinrainbow/json-schema/phpunit.xml.dist +26 -0
  821. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php +148 -0
  822. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php +121 -0
  823. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php +213 -0
  824. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php +65 -0
  825. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php +54 -0
  826. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php +220 -0
  827. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php +214 -0
  828. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php +81 -0
  829. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php +192 -0
  830. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php +94 -0
  831. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php +60 -0
  832. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php +68 -0
  833. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php +40 -0
  834. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php +18 -0
  835. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php +261 -0
  836. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php +419 -0
  837. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php +161 -0
  838. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php +7 -0
  839. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php +17 -0
  840. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php +17 -0
  841. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php +17 -0
  842. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php +17 -0
  843. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php +17 -0
  844. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php +40 -0
  845. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php +17 -0
  846. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php +17 -0
  847. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php +19 -0
  848. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php +17 -0
  849. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php +14 -0
  850. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php +149 -0
  851. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php +30 -0
  852. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php +169 -0
  853. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php +41 -0
  854. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +34 -0
  855. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php +83 -0
  856. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php +93 -0
  857. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php +56 -0
  858. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php +36 -0
  859. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php +175 -0
  860. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php +349 -0
  861. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php +26 -0
  862. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php +26 -0
  863. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php +88 -0
  864. data/helpers/vendor/paragonie/random_compat/LICENSE +22 -0
  865. data/helpers/vendor/paragonie/random_compat/build-phar.sh +5 -0
  866. data/helpers/vendor/paragonie/random_compat/composer.json +34 -0
  867. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey +5 -0
  868. data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc +11 -0
  869. data/helpers/vendor/paragonie/random_compat/lib/random.php +32 -0
  870. data/helpers/vendor/paragonie/random_compat/other/build_phar.php +57 -0
  871. data/helpers/vendor/paragonie/random_compat/psalm-autoload.php +9 -0
  872. data/helpers/vendor/paragonie/random_compat/psalm.xml +19 -0
  873. data/helpers/vendor/php-cs-fixer/diff/ChangeLog.md +7 -0
  874. data/helpers/vendor/php-cs-fixer/diff/LICENSE +5 -0
  875. data/helpers/vendor/php-cs-fixer/diff/LICENSE_DIFF +31 -0
  876. data/helpers/vendor/php-cs-fixer/diff/LICENSE_GECKO +19 -0
  877. data/helpers/vendor/php-cs-fixer/diff/README.md +13 -0
  878. data/helpers/vendor/php-cs-fixer/diff/composer.json +41 -0
  879. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/ConfigurationException.php +36 -0
  880. data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/UnifiedDiffOutputBuilder.php +295 -0
  881. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Chunk.php +103 -0
  882. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Diff.php +73 -0
  883. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Differ.php +399 -0
  884. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/LongestCommonSubsequence.php +27 -0
  885. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php +95 -0
  886. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php +74 -0
  887. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Line.php +54 -0
  888. data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Parser.php +110 -0
  889. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Chunk.php +78 -0
  890. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Diff.php +67 -0
  891. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Differ.php +321 -0
  892. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/Exception.php +15 -0
  893. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/InvalidArgumentException.php +15 -0
  894. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Line.php +44 -0
  895. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/LongestCommonSubsequenceCalculator.php +24 -0
  896. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  897. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/AbstractChunkOutputBuilder.php +56 -0
  898. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOnlyOutputBuilder.php +63 -0
  899. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOutputBuilderInterface.php +19 -0
  900. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/UnifiedDiffOutputBuilder.php +165 -0
  901. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Parser.php +106 -0
  902. data/helpers/vendor/php-cs-fixer/diff/src/v2_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  903. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Chunk.php +78 -0
  904. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Diff.php +67 -0
  905. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Differ.php +329 -0
  906. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/ConfigurationException.php +40 -0
  907. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/Exception.php +15 -0
  908. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/InvalidArgumentException.php +15 -0
  909. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Line.php +44 -0
  910. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/LongestCommonSubsequenceCalculator.php +24 -0
  911. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
  912. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/AbstractChunkOutputBuilder.php +56 -0
  913. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOnlyOutputBuilder.php +66 -0
  914. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOutputBuilderInterface.php +20 -0
  915. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/StrictUnifiedDiffOutputBuilder.php +315 -0
  916. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/UnifiedDiffOutputBuilder.php +259 -0
  917. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Parser.php +106 -0
  918. data/helpers/vendor/php-cs-fixer/diff/src/v3_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
  919. data/helpers/vendor/phpstan/phpstan/.gitattributes +10 -0
  920. data/helpers/vendor/phpstan/phpstan/.gitignore +9 -0
  921. data/helpers/vendor/phpstan/phpstan/LICENSE +21 -0
  922. data/helpers/vendor/phpstan/phpstan/README.md +64 -0
  923. data/helpers/vendor/phpstan/phpstan/bootstrap.php +43 -0
  924. data/helpers/vendor/phpstan/phpstan/composer.json +23 -0
  925. data/helpers/vendor/phpstan/phpstan/conf/bleedingEdge.neon +2 -0
  926. data/helpers/vendor/phpstan/phpstan/phpstan +0 -0
  927. data/helpers/vendor/phpstan/phpstan/phpstan.phar +0 -0
  928. data/helpers/vendor/phpstan/phpstan/phpstan.phar.asc +17 -0
  929. data/helpers/vendor/psr/log/LICENSE +19 -0
  930. data/helpers/vendor/psr/log/Psr/Log/AbstractLogger.php +128 -0
  931. data/helpers/vendor/psr/log/Psr/Log/InvalidArgumentException.php +7 -0
  932. data/helpers/vendor/psr/log/Psr/Log/LogLevel.php +18 -0
  933. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +18 -0
  934. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +26 -0
  935. data/helpers/vendor/psr/log/Psr/Log/LoggerInterface.php +125 -0
  936. data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +142 -0
  937. data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +30 -0
  938. data/helpers/vendor/psr/log/Psr/Log/Test/DummyTest.php +18 -0
  939. data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +138 -0
  940. data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +147 -0
  941. data/helpers/vendor/psr/log/README.md +58 -0
  942. data/helpers/vendor/psr/log/composer.json +26 -0
  943. data/helpers/vendor/seld/jsonlint/.github/FUNDING.yml +2 -0
  944. data/helpers/vendor/seld/jsonlint/.github/SECURITY.md +6 -0
  945. data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
  946. data/helpers/vendor/seld/jsonlint/.travis.yml +31 -0
  947. data/helpers/vendor/seld/jsonlint/CHANGELOG.md +76 -0
  948. data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
  949. data/helpers/vendor/seld/jsonlint/README.md +94 -0
  950. data/helpers/vendor/seld/jsonlint/bin/jsonlint +117 -0
  951. data/helpers/vendor/seld/jsonlint/composer.json +24 -0
  952. data/helpers/vendor/seld/jsonlint/phpunit.xml.dist +25 -0
  953. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php +26 -0
  954. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php +502 -0
  955. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php +231 -0
  956. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php +28 -0
  957. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php +16 -0
  958. data/helpers/vendor/seld/jsonlint/tests/JsonParserTest.php +272 -0
  959. data/helpers/vendor/seld/jsonlint/tests/bom.json +6 -0
  960. data/helpers/vendor/seld/jsonlint/tests/bootstrap.php +13 -0
  961. data/helpers/vendor/seld/phar-utils/.gitignore +1 -0
  962. data/helpers/vendor/seld/phar-utils/LICENSE +19 -0
  963. data/helpers/vendor/seld/phar-utils/README.md +45 -0
  964. data/helpers/vendor/seld/phar-utils/composer.json +26 -0
  965. data/helpers/vendor/seld/phar-utils/composer.lock +19 -0
  966. data/helpers/vendor/seld/phar-utils/src/Linter.php +110 -0
  967. data/helpers/vendor/seld/phar-utils/src/Timestamps.php +192 -0
  968. data/helpers/vendor/symfony/console/.gitignore +3 -0
  969. data/helpers/vendor/symfony/console/Application.php +1271 -0
  970. data/helpers/vendor/symfony/console/CHANGELOG.md +112 -0
  971. data/helpers/vendor/symfony/console/Command/Command.php +668 -0
  972. data/helpers/vendor/symfony/console/Command/HelpCommand.php +81 -0
  973. data/helpers/vendor/symfony/console/Command/ListCommand.php +90 -0
  974. data/helpers/vendor/symfony/console/Command/LockableTrait.php +72 -0
  975. data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +46 -0
  976. data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +64 -0
  977. data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
  978. data/helpers/vendor/symfony/console/ConsoleEvents.php +60 -0
  979. data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +106 -0
  980. data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +157 -0
  981. data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
  982. data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +29 -0
  983. data/helpers/vendor/symfony/console/Descriptor/JsonDescriptor.php +168 -0
  984. data/helpers/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +182 -0
  985. data/helpers/vendor/symfony/console/Descriptor/TextDescriptor.php +342 -0
  986. data/helpers/vendor/symfony/console/Descriptor/XmlDescriptor.php +248 -0
  987. data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
  988. data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +83 -0
  989. data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
  990. data/helpers/vendor/symfony/console/Event/ConsoleExceptionEvent.php +71 -0
  991. data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +58 -0
  992. data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +95 -0
  993. data/helpers/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
  994. data/helpers/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
  995. data/helpers/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
  996. data/helpers/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
  997. data/helpers/vendor/symfony/console/Exception/LogicException.php +19 -0
  998. data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
  999. data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +243 -0
  1000. data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
  1001. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +183 -0
  1002. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
  1003. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +109 -0
  1004. data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
  1005. data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
  1006. data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +102 -0
  1007. data/helpers/vendor/symfony/console/Helper/Helper.php +138 -0
  1008. data/helpers/vendor/symfony/console/Helper/HelperInterface.php +39 -0
  1009. data/helpers/vendor/symfony/console/Helper/HelperSet.php +108 -0
  1010. data/helpers/vendor/symfony/console/Helper/InputAwareHelper.php +33 -0
  1011. data/helpers/vendor/symfony/console/Helper/ProcessHelper.php +145 -0
  1012. data/helpers/vendor/symfony/console/Helper/ProgressBar.php +614 -0
  1013. data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +270 -0
  1014. data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +513 -0
  1015. data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +124 -0
  1016. data/helpers/vendor/symfony/console/Helper/Table.php +698 -0
  1017. data/helpers/vendor/symfony/console/Helper/TableCell.php +75 -0
  1018. data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
  1019. data/helpers/vendor/symfony/console/Helper/TableStyle.php +258 -0
  1020. data/helpers/vendor/symfony/console/Input/ArgvInput.php +372 -0
  1021. data/helpers/vendor/symfony/console/Input/ArrayInput.php +208 -0
  1022. data/helpers/vendor/symfony/console/Input/Input.php +203 -0
  1023. data/helpers/vendor/symfony/console/Input/InputArgument.php +129 -0
  1024. data/helpers/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
  1025. data/helpers/vendor/symfony/console/Input/InputDefinition.php +404 -0
  1026. data/helpers/vendor/symfony/console/Input/InputInterface.php +163 -0
  1027. data/helpers/vendor/symfony/console/Input/InputOption.php +208 -0
  1028. data/helpers/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
  1029. data/helpers/vendor/symfony/console/Input/StringInput.php +72 -0
  1030. data/helpers/vendor/symfony/console/LICENSE +19 -0
  1031. data/helpers/vendor/symfony/console/Logger/ConsoleLogger.php +128 -0
  1032. data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
  1033. data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +152 -0
  1034. data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
  1035. data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
  1036. data/helpers/vendor/symfony/console/Output/Output.php +175 -0
  1037. data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
  1038. data/helpers/vendor/symfony/console/Output/StreamOutput.php +120 -0
  1039. data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +187 -0
  1040. data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
  1041. data/helpers/vendor/symfony/console/Question/Question.php +242 -0
  1042. data/helpers/vendor/symfony/console/README.md +20 -0
  1043. data/helpers/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
  1044. data/helpers/vendor/symfony/console/Style/OutputStyle.php +155 -0
  1045. data/helpers/vendor/symfony/console/Style/StyleInterface.php +153 -0
  1046. data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +431 -0
  1047. data/helpers/vendor/symfony/console/Terminal.php +176 -0
  1048. data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +176 -0
  1049. data/helpers/vendor/symfony/console/Tester/CommandTester.php +162 -0
  1050. data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1772 -0
  1051. data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +430 -0
  1052. data/helpers/vendor/symfony/console/Tests/Command/HelpCommandTest.php +71 -0
  1053. data/helpers/vendor/symfony/console/Tests/Command/ListCommandTest.php +113 -0
  1054. data/helpers/vendor/symfony/console/Tests/Command/LockableTraitTest.php +67 -0
  1055. data/helpers/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +59 -0
  1056. data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +58 -0
  1057. data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +256 -0
  1058. data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -0
  1059. data/helpers/vendor/symfony/console/Tests/Descriptor/ApplicationDescriptionTest.php +53 -0
  1060. data/helpers/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +35 -0
  1061. data/helpers/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +45 -0
  1062. data/helpers/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +82 -0
  1063. data/helpers/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +53 -0
  1064. data/helpers/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +27 -0
  1065. data/helpers/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +156 -0
  1066. data/helpers/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +11 -0
  1067. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +18 -0
  1068. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +26 -0
  1069. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +24 -0
  1070. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +27 -0
  1071. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +32 -0
  1072. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +27 -0
  1073. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +25 -0
  1074. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +32 -0
  1075. data/helpers/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +36 -0
  1076. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +26 -0
  1077. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +21 -0
  1078. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +29 -0
  1079. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +11 -0
  1080. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +10 -0
  1081. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +11 -0
  1082. data/helpers/vendor/symfony/console/Tests/Fixtures/FooCommand.php +33 -0
  1083. data/helpers/vendor/symfony/console/Tests/Fixtures/FooHiddenCommand.php +21 -0
  1084. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +28 -0
  1085. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +27 -0
  1086. data/helpers/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +36 -0
  1087. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +11 -0
  1088. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +11 -0
  1089. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +26 -0
  1090. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +26 -0
  1091. data/helpers/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +25 -0
  1092. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +11 -0
  1093. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +13 -0
  1094. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +17 -0
  1095. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +12 -0
  1096. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +13 -0
  1097. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +14 -0
  1098. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +17 -0
  1099. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +14 -0
  1100. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +15 -0
  1101. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +13 -0
  1102. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +16 -0
  1103. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +12 -0
  1104. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +34 -0
  1105. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +37 -0
  1106. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +16 -0
  1107. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +15 -0
  1108. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +26 -0
  1109. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +11 -0
  1110. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +19 -0
  1111. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +7 -0
  1112. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +3 -0
  1113. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +9 -0
  1114. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +7 -0
  1115. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +4 -0
  1116. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +6 -0
  1117. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +7 -0
  1118. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +6 -0
  1119. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +7 -0
  1120. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +8 -0
  1121. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +7 -0
  1122. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +13 -0
  1123. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +7 -0
  1124. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +32 -0
  1125. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +18 -0
  1126. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +6 -0
  1127. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +5 -0
  1128. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +9 -0
  1129. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +5 -0
  1130. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering.php +22 -0
  1131. data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering2.php +21 -0
  1132. data/helpers/vendor/symfony/console/Tests/Fixtures/TestCommand.php +28 -0
  1133. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.json +156 -0
  1134. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.md +172 -0
  1135. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.txt +17 -0
  1136. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.xml +104 -0
  1137. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.json +509 -0
  1138. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.md +431 -0
  1139. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.txt +21 -0
  1140. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.xml +254 -0
  1141. data/helpers/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +16 -0
  1142. data/helpers/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +1 -0
  1143. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +269 -0
  1144. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +19 -0
  1145. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +5 -0
  1146. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +7 -0
  1147. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +18 -0
  1148. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +18 -0
  1149. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +6 -0
  1150. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +8 -0
  1151. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +8 -0
  1152. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +9 -0
  1153. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +9 -0
  1154. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +11 -0
  1155. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run1.txt +17 -0
  1156. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run2.txt +26 -0
  1157. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +26 -0
  1158. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run4.txt +1 -0
  1159. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.json +15 -0
  1160. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.md +12 -0
  1161. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.txt +7 -0
  1162. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.xml +12 -0
  1163. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.json +33 -0
  1164. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.md +29 -0
  1165. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.txt +13 -0
  1166. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.xml +21 -0
  1167. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +29 -0
  1168. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +13 -0
  1169. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +7 -0
  1170. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +5 -0
  1171. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +1 -0
  1172. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +5 -0
  1173. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +7 -0
  1174. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +7 -0
  1175. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +1 -0
  1176. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +5 -0
  1177. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +7 -0
  1178. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +7 -0
  1179. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +1 -0
  1180. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +7 -0
  1181. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +7 -0
  1182. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +8 -0
  1183. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +2 -0
  1184. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +6 -0
  1185. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +7 -0
  1186. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +7 -0
  1187. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +1 -0
  1188. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +7 -0
  1189. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +7 -0
  1190. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +7 -0
  1191. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +1 -0
  1192. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +7 -0
  1193. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +4 -0
  1194. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +0 -0
  1195. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +0 -0
  1196. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +5 -0
  1197. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +12 -0
  1198. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +7 -0
  1199. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +2 -0
  1200. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +10 -0
  1201. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +14 -0
  1202. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +8 -0
  1203. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +2 -0
  1204. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +9 -0
  1205. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +22 -0
  1206. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +16 -0
  1207. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +5 -0
  1208. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +14 -0
  1209. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.json +9 -0
  1210. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.md +6 -0
  1211. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +1 -0
  1212. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +4 -0
  1213. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.json +9 -0
  1214. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.md +8 -0
  1215. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +1 -0
  1216. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +7 -0
  1217. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.json +9 -0
  1218. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.md +8 -0
  1219. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +1 -0
  1220. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +5 -0
  1221. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.json +9 -0
  1222. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.md +8 -0
  1223. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +1 -0
  1224. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +5 -0
  1225. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.json +9 -0
  1226. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.md +9 -0
  1227. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +2 -0
  1228. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +6 -0
  1229. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.json +9 -0
  1230. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.md +8 -0
  1231. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +1 -0
  1232. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +5 -0
  1233. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +9 -0
  1234. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +8 -0
  1235. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +1 -0
  1236. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +7 -0
  1237. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +9 -0
  1238. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +8 -0
  1239. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +1 -0
  1240. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +7 -0
  1241. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +12 -0
  1242. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +8 -0
  1243. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +1 -0
  1244. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +8 -0
  1245. data/helpers/vendor/symfony/console/Tests/Fixtures/stream_output_file.txt +0 -0
  1246. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +69 -0
  1247. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
  1248. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +344 -0
  1249. data/helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +34 -0
  1250. data/helpers/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +129 -0
  1251. data/helpers/vendor/symfony/console/Tests/Helper/HelperSetTest.php +127 -0
  1252. data/helpers/vendor/symfony/console/Tests/Helper/HelperTest.php +55 -0
  1253. data/helpers/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +118 -0
  1254. data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +805 -0
  1255. data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +175 -0
  1256. data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +1115 -0
  1257. data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +214 -0
  1258. data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +26 -0
  1259. data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +868 -0
  1260. data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +462 -0
  1261. data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +173 -0
  1262. data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +109 -0
  1263. data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +389 -0
  1264. data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +194 -0
  1265. data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +137 -0
  1266. data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
  1267. data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +213 -0
  1268. data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
  1269. data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
  1270. data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +176 -0
  1271. data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +67 -0
  1272. data/helpers/vendor/symfony/console/Tests/Question/ChoiceQuestionTest.php +64 -0
  1273. data/helpers/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php +62 -0
  1274. data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +118 -0
  1275. data/helpers/vendor/symfony/console/Tests/TerminalTest.php +97 -0
  1276. data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +70 -0
  1277. data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +212 -0
  1278. data/helpers/vendor/symfony/console/composer.json +56 -0
  1279. data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
  1280. data/helpers/vendor/symfony/debug/.gitignore +3 -0
  1281. data/helpers/vendor/symfony/debug/BufferingLogger.php +37 -0
  1282. data/helpers/vendor/symfony/debug/CHANGELOG.md +64 -0
  1283. data/helpers/vendor/symfony/debug/Debug.php +60 -0
  1284. data/helpers/vendor/symfony/debug/DebugClassLoader.php +455 -0
  1285. data/helpers/vendor/symfony/debug/ErrorHandler.php +787 -0
  1286. data/helpers/vendor/symfony/debug/Exception/ClassNotFoundException.php +36 -0
  1287. data/helpers/vendor/symfony/debug/Exception/ContextErrorException.php +40 -0
  1288. data/helpers/vendor/symfony/debug/Exception/FatalErrorException.php +82 -0
  1289. data/helpers/vendor/symfony/debug/Exception/FatalThrowableError.php +45 -0
  1290. data/helpers/vendor/symfony/debug/Exception/FlattenException.php +263 -0
  1291. data/helpers/vendor/symfony/debug/Exception/OutOfMemoryException.php +21 -0
  1292. data/helpers/vendor/symfony/debug/Exception/SilencedErrorContext.php +67 -0
  1293. data/helpers/vendor/symfony/debug/Exception/UndefinedFunctionException.php +36 -0
  1294. data/helpers/vendor/symfony/debug/Exception/UndefinedMethodException.php +36 -0
  1295. data/helpers/vendor/symfony/debug/ExceptionHandler.php +444 -0
  1296. data/helpers/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +214 -0
  1297. data/helpers/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +32 -0
  1298. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +84 -0
  1299. data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +66 -0
  1300. data/helpers/vendor/symfony/debug/LICENSE +19 -0
  1301. data/helpers/vendor/symfony/debug/README.md +25 -0
  1302. data/helpers/vendor/symfony/debug/Resources/ext/README.md +134 -0
  1303. data/helpers/vendor/symfony/debug/Resources/ext/config.m4 +63 -0
  1304. data/helpers/vendor/symfony/debug/Resources/ext/config.w32 +13 -0
  1305. data/helpers/vendor/symfony/debug/Resources/ext/php_symfony_debug.h +60 -0
  1306. data/helpers/vendor/symfony/debug/Resources/ext/symfony_debug.c +283 -0
  1307. data/helpers/vendor/symfony/debug/Resources/ext/tests/001.phpt +155 -0
  1308. data/helpers/vendor/symfony/debug/Resources/ext/tests/002.phpt +65 -0
  1309. data/helpers/vendor/symfony/debug/Resources/ext/tests/002_1.phpt +48 -0
  1310. data/helpers/vendor/symfony/debug/Resources/ext/tests/003.phpt +87 -0
  1311. data/helpers/vendor/symfony/debug/Tests/DebugClassLoaderTest.php +448 -0
  1312. data/helpers/vendor/symfony/debug/Tests/ErrorHandlerTest.php +660 -0
  1313. data/helpers/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php +314 -0
  1314. data/helpers/vendor/symfony/debug/Tests/ExceptionHandlerTest.php +163 -0
  1315. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php +184 -0
  1316. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php +81 -0
  1317. data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +76 -0
  1318. data/helpers/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php +13 -0
  1319. data/helpers/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php +3 -0
  1320. data/helpers/vendor/symfony/debug/Tests/Fixtures/DefinitionInEvaluatedCode.php +11 -0
  1321. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php +12 -0
  1322. data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +12 -0
  1323. data/helpers/vendor/symfony/debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +22 -0
  1324. data/helpers/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +19 -0
  1325. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php +85 -0
  1326. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php +26 -0
  1327. data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php +10 -0
  1328. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalClass.php +15 -0
  1329. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php +10 -0
  1330. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php +10 -0
  1331. data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php +23 -0
  1332. data/helpers/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php +15 -0
  1333. data/helpers/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php +7 -0
  1334. data/helpers/vendor/symfony/debug/Tests/Fixtures/PEARClass.php +5 -0
  1335. data/helpers/vendor/symfony/debug/Tests/Fixtures/Throwing.php +3 -0
  1336. data/helpers/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php +24 -0
  1337. data/helpers/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php +13 -0
  1338. data/helpers/vendor/symfony/debug/Tests/Fixtures/casemismatch.php +7 -0
  1339. data/helpers/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php +7 -0
  1340. data/helpers/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php +7 -0
  1341. data/helpers/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php +7 -0
  1342. data/helpers/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php +7 -0
  1343. data/helpers/vendor/symfony/debug/Tests/HeaderMock.php +38 -0
  1344. data/helpers/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt +27 -0
  1345. data/helpers/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +47 -0
  1346. data/helpers/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt +35 -0
  1347. data/helpers/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt +42 -0
  1348. data/helpers/vendor/symfony/debug/composer.json +40 -0
  1349. data/helpers/vendor/symfony/debug/phpunit.xml.dist +33 -0
  1350. data/helpers/vendor/symfony/event-dispatcher/.gitignore +3 -0
  1351. data/helpers/vendor/symfony/event-dispatcher/CHANGELOG.md +42 -0
  1352. data/helpers/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php +198 -0
  1353. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +332 -0
  1354. data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php +36 -0
  1355. data/helpers/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +125 -0
  1356. data/helpers/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +137 -0
  1357. data/helpers/vendor/symfony/event-dispatcher/Event.php +58 -0
  1358. data/helpers/vendor/symfony/event-dispatcher/EventDispatcher.php +238 -0
  1359. data/helpers/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +93 -0
  1360. data/helpers/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +49 -0
  1361. data/helpers/vendor/symfony/event-dispatcher/GenericEvent.php +175 -0
  1362. data/helpers/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +91 -0
  1363. data/helpers/vendor/symfony/event-dispatcher/LICENSE +19 -0
  1364. data/helpers/vendor/symfony/event-dispatcher/README.md +15 -0
  1365. data/helpers/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php +442 -0
  1366. data/helpers/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php +210 -0
  1367. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php +269 -0
  1368. data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php +64 -0
  1369. data/helpers/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php +143 -0
  1370. data/helpers/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php +22 -0
  1371. data/helpers/vendor/symfony/event-dispatcher/Tests/EventTest.php +55 -0
  1372. data/helpers/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php +134 -0
  1373. data/helpers/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php +100 -0
  1374. data/helpers/vendor/symfony/event-dispatcher/composer.json +47 -0
  1375. data/helpers/vendor/symfony/event-dispatcher/phpunit.xml.dist +31 -0
  1376. data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
  1377. data/helpers/vendor/symfony/filesystem/CHANGELOG.md +53 -0
  1378. data/helpers/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
  1379. data/helpers/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
  1380. data/helpers/vendor/symfony/filesystem/Exception/IOException.php +39 -0
  1381. data/helpers/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +27 -0
  1382. data/helpers/vendor/symfony/filesystem/Filesystem.php +774 -0
  1383. data/helpers/vendor/symfony/filesystem/LICENSE +19 -0
  1384. data/helpers/vendor/symfony/filesystem/LockHandler.php +121 -0
  1385. data/helpers/vendor/symfony/filesystem/README.md +13 -0
  1386. data/helpers/vendor/symfony/filesystem/Tests/ExceptionTest.php +47 -0
  1387. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTest.php +1660 -0
  1388. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +165 -0
  1389. data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -0
  1390. data/helpers/vendor/symfony/filesystem/Tests/LockHandlerTest.php +144 -0
  1391. data/helpers/vendor/symfony/filesystem/composer.json +34 -0
  1392. data/helpers/vendor/symfony/filesystem/phpunit.xml.dist +30 -0
  1393. data/helpers/vendor/symfony/finder/.gitignore +3 -0
  1394. data/helpers/vendor/symfony/finder/CHANGELOG.md +55 -0
  1395. data/helpers/vendor/symfony/finder/Comparator/Comparator.php +98 -0
  1396. data/helpers/vendor/symfony/finder/Comparator/DateComparator.php +51 -0
  1397. data/helpers/vendor/symfony/finder/Comparator/NumberComparator.php +79 -0
  1398. data/helpers/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
  1399. data/helpers/vendor/symfony/finder/Exception/ExceptionInterface.php +25 -0
  1400. data/helpers/vendor/symfony/finder/Finder.php +759 -0
  1401. data/helpers/vendor/symfony/finder/Glob.php +116 -0
  1402. data/helpers/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
  1403. data/helpers/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
  1404. data/helpers/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +45 -0
  1405. data/helpers/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +84 -0
  1406. data/helpers/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +53 -0
  1407. data/helpers/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
  1408. data/helpers/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +47 -0
  1409. data/helpers/vendor/symfony/finder/Iterator/FilterIterator.php +60 -0
  1410. data/helpers/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +112 -0
  1411. data/helpers/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
  1412. data/helpers/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +158 -0
  1413. data/helpers/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
  1414. data/helpers/vendor/symfony/finder/Iterator/SortableIterator.php +80 -0
  1415. data/helpers/vendor/symfony/finder/LICENSE +19 -0
  1416. data/helpers/vendor/symfony/finder/README.md +14 -0
  1417. data/helpers/vendor/symfony/finder/SplFileInfo.php +78 -0
  1418. data/helpers/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php +65 -0
  1419. data/helpers/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php +64 -0
  1420. data/helpers/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php +108 -0
  1421. data/helpers/vendor/symfony/finder/Tests/FinderTest.php +752 -0
  1422. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/a +0 -0
  1423. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon +0 -0
  1424. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon +0 -0
  1425. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat +0 -0
  1426. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat +0 -0
  1427. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/a.dat +0 -0
  1428. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy +0 -0
  1429. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy +0 -0
  1430. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy +0 -0
  1431. data/helpers/vendor/symfony/finder/Tests/Fixtures/dolor.txt +2 -0
  1432. data/helpers/vendor/symfony/finder/Tests/Fixtures/ipsum.txt +2 -0
  1433. data/helpers/vendor/symfony/finder/Tests/Fixtures/lorem.txt +2 -0
  1434. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/.dot +1 -0
  1435. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/a +0 -0
  1436. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon +0 -0
  1437. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon +0 -0
  1438. data/helpers/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat +0 -0
  1439. data/helpers/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt b/data/helpers/vendor/symfony/finder/Tests/Fixtures/with → space/foo.txt +0 -0
  1440. data/helpers/vendor/symfony/finder/Tests/GlobTest.php +95 -0
  1441. data/helpers/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php +44 -0
  1442. data/helpers/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php +74 -0
  1443. data/helpers/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php +83 -0
  1444. data/helpers/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php +80 -0
  1445. data/helpers/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php +73 -0
  1446. data/helpers/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php +86 -0
  1447. data/helpers/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php +54 -0
  1448. data/helpers/vendor/symfony/finder/Tests/Iterator/FilterIteratorTest.php +53 -0
  1449. data/helpers/vendor/symfony/finder/Tests/Iterator/Iterator.php +55 -0
  1450. data/helpers/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php +93 -0
  1451. data/helpers/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php +21 -0
  1452. data/helpers/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php +132 -0
  1453. data/helpers/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php +71 -0
  1454. data/helpers/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php +82 -0
  1455. data/helpers/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php +119 -0
  1456. data/helpers/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php +59 -0
  1457. data/helpers/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php +69 -0
  1458. data/helpers/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php +179 -0
  1459. data/helpers/vendor/symfony/finder/composer.json +33 -0
  1460. data/helpers/vendor/symfony/finder/phpunit.xml.dist +30 -0
  1461. data/helpers/vendor/symfony/options-resolver/.gitignore +3 -0
  1462. data/helpers/vendor/symfony/options-resolver/CHANGELOG.md +52 -0
  1463. data/helpers/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +102 -0
  1464. data/helpers/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
  1465. data/helpers/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
  1466. data/helpers/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
  1467. data/helpers/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
  1468. data/helpers/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
  1469. data/helpers/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
  1470. data/helpers/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
  1471. data/helpers/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
  1472. data/helpers/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
  1473. data/helpers/vendor/symfony/options-resolver/LICENSE +19 -0
  1474. data/helpers/vendor/symfony/options-resolver/Options.php +22 -0
  1475. data/helpers/vendor/symfony/options-resolver/OptionsResolver.php +1085 -0
  1476. data/helpers/vendor/symfony/options-resolver/README.md +15 -0
  1477. data/helpers/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php +183 -0
  1478. data/helpers/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php +1626 -0
  1479. data/helpers/vendor/symfony/options-resolver/composer.json +33 -0
  1480. data/helpers/vendor/symfony/options-resolver/phpunit.xml.dist +31 -0
  1481. data/helpers/vendor/symfony/polyfill-ctype/Ctype.php +227 -0
  1482. data/helpers/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  1483. data/helpers/vendor/symfony/polyfill-ctype/README.md +12 -0
  1484. data/helpers/vendor/symfony/polyfill-ctype/bootstrap.php +46 -0
  1485. data/helpers/vendor/symfony/polyfill-ctype/composer.json +38 -0
  1486. data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  1487. data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +847 -0
  1488. data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
  1489. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
  1490. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  1491. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1414 -0
  1492. data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +141 -0
  1493. data/helpers/vendor/symfony/polyfill-mbstring/composer.json +38 -0
  1494. data/helpers/vendor/symfony/polyfill-php70/LICENSE +19 -0
  1495. data/helpers/vendor/symfony/polyfill-php70/Php70.php +74 -0
  1496. data/helpers/vendor/symfony/polyfill-php70/README.md +28 -0
  1497. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php +5 -0
  1498. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php +5 -0
  1499. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php +5 -0
  1500. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/Error.php +5 -0
  1501. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php +5 -0
  1502. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php +23 -0
  1503. data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php +5 -0
  1504. data/helpers/vendor/symfony/polyfill-php70/bootstrap.php +30 -0
  1505. data/helpers/vendor/symfony/polyfill-php70/composer.json +37 -0
  1506. data/helpers/vendor/symfony/polyfill-php72/LICENSE +19 -0
  1507. data/helpers/vendor/symfony/polyfill-php72/Php72.php +217 -0
  1508. data/helpers/vendor/symfony/polyfill-php72/README.md +28 -0
  1509. data/helpers/vendor/symfony/polyfill-php72/bootstrap.php +57 -0
  1510. data/helpers/vendor/symfony/polyfill-php72/composer.json +35 -0
  1511. data/helpers/vendor/symfony/process/.gitignore +3 -0
  1512. data/helpers/vendor/symfony/process/CHANGELOG.md +57 -0
  1513. data/helpers/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
  1514. data/helpers/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
  1515. data/helpers/vendor/symfony/process/Exception/LogicException.php +21 -0
  1516. data/helpers/vendor/symfony/process/Exception/ProcessFailedException.php +54 -0
  1517. data/helpers/vendor/symfony/process/Exception/ProcessTimedOutException.php +69 -0
  1518. data/helpers/vendor/symfony/process/Exception/RuntimeException.php +21 -0
  1519. data/helpers/vendor/symfony/process/ExecutableFinder.php +88 -0
  1520. data/helpers/vendor/symfony/process/InputStream.php +92 -0
  1521. data/helpers/vendor/symfony/process/LICENSE +19 -0
  1522. data/helpers/vendor/symfony/process/PhpExecutableFinder.php +94 -0
  1523. data/helpers/vendor/symfony/process/PhpProcess.php +76 -0
  1524. data/helpers/vendor/symfony/process/Pipes/AbstractPipes.php +182 -0
  1525. data/helpers/vendor/symfony/process/Pipes/PipesInterface.php +67 -0
  1526. data/helpers/vendor/symfony/process/Pipes/UnixPipes.php +153 -0
  1527. data/helpers/vendor/symfony/process/Pipes/WindowsPipes.php +191 -0
  1528. data/helpers/vendor/symfony/process/Process.php +1746 -0
  1529. data/helpers/vendor/symfony/process/ProcessBuilder.php +280 -0
  1530. data/helpers/vendor/symfony/process/ProcessUtils.php +123 -0
  1531. data/helpers/vendor/symfony/process/README.md +13 -0
  1532. data/helpers/vendor/symfony/process/Tests/ErrorProcessInitiator.php +36 -0
  1533. data/helpers/vendor/symfony/process/Tests/ExecutableFinderTest.php +175 -0
  1534. data/helpers/vendor/symfony/process/Tests/NonStopableProcess.php +47 -0
  1535. data/helpers/vendor/symfony/process/Tests/PhpExecutableFinderTest.php +72 -0
  1536. data/helpers/vendor/symfony/process/Tests/PhpProcessTest.php +48 -0
  1537. data/helpers/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php +72 -0
  1538. data/helpers/vendor/symfony/process/Tests/ProcessBuilderTest.php +220 -0
  1539. data/helpers/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php +133 -0
  1540. data/helpers/vendor/symfony/process/Tests/ProcessTest.php +1596 -0
  1541. data/helpers/vendor/symfony/process/Tests/ProcessUtilsTest.php +53 -0
  1542. data/helpers/vendor/symfony/process/Tests/SignalListener.php +21 -0
  1543. data/helpers/vendor/symfony/process/composer.json +33 -0
  1544. data/helpers/vendor/symfony/process/phpunit.xml.dist +30 -0
  1545. data/helpers/vendor/symfony/stopwatch/.gitignore +3 -0
  1546. data/helpers/vendor/symfony/stopwatch/CHANGELOG.md +9 -0
  1547. data/helpers/vendor/symfony/stopwatch/LICENSE +19 -0
  1548. data/helpers/vendor/symfony/stopwatch/README.md +13 -0
  1549. data/helpers/vendor/symfony/stopwatch/Section.php +200 -0
  1550. data/helpers/vendor/symfony/stopwatch/Stopwatch.php +176 -0
  1551. data/helpers/vendor/symfony/stopwatch/StopwatchEvent.php +254 -0
  1552. data/helpers/vendor/symfony/stopwatch/StopwatchPeriod.php +76 -0
  1553. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchEventTest.php +210 -0
  1554. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchPeriodTest.php +67 -0
  1555. data/helpers/vendor/symfony/stopwatch/Tests/StopwatchTest.php +182 -0
  1556. data/helpers/vendor/symfony/stopwatch/composer.json +33 -0
  1557. data/helpers/vendor/symfony/stopwatch/phpunit.xml.dist +30 -0
  1558. metadata +1564 -8
@@ -0,0 +1,49 @@
1
+ <?php
2
+
3
+ namespace Doctrine\Tests\Common\Lexer;
4
+
5
+ use Doctrine\Common\Lexer\AbstractLexer;
6
+
7
+ class ConcreteLexer extends AbstractLexer
8
+ {
9
+ const INT = 'int';
10
+
11
+ protected function getCatchablePatterns()
12
+ {
13
+ return array(
14
+ '=|<|>',
15
+ '[a-z]+',
16
+ '\d+',
17
+ );
18
+ }
19
+
20
+ protected function getNonCatchablePatterns()
21
+ {
22
+ return array(
23
+ '\s+',
24
+ '(.)',
25
+ );
26
+ }
27
+
28
+ protected function getType(&$value)
29
+ {
30
+ if (is_numeric($value)) {
31
+ $value = (int)$value;
32
+
33
+ return 'int';
34
+ }
35
+ if (in_array($value, array('=', '<', '>'))) {
36
+ return 'operator';
37
+ }
38
+ if (is_string($value)) {
39
+ return 'string';
40
+ }
41
+
42
+ return;
43
+ }
44
+
45
+ protected function getModifiers()
46
+ {
47
+ return parent::getModifiers().'u';
48
+ }
49
+ }
@@ -0,0 +1,3249 @@
1
+ CHANGELOG for PHP CS Fixer
2
+ ==========================
3
+
4
+ This file contains changelogs for stable releases only.
5
+
6
+ Changelog for v2.16.4
7
+ ---------------------
8
+
9
+ * bug #3893 Fix handling /** and */ on the same line as the first and/or last annotation (dmvdbrugge)
10
+ * bug #4919 PhpUnitTestAnnotationFixer - fix function starting with "test" and having lowercase letter after (kubawerlos)
11
+ * bug #4929 YodaStyleFixer - handling equals empty array (kubawerlos)
12
+ * bug #4934 YodaStyleFixer - fix for conditions weird are (kubawerlos)
13
+ * bug #4958 OrderedImportsFixer - fix for trailing comma in group (kubawerlos)
14
+ * bug #4959 BlankLineBeforeStatementFixer - handle comment case (SpacePossum)
15
+ * bug #4962 MethodArgumentSpaceFixer - must run after MethodChainingIndentationFixer (kubawerlos)
16
+ * bug #4963 PhpdocToReturnTypeFixer - fix for breaking PHP syntax for type having reserved name (kubawerlos, Slamdunk)
17
+ * bug #4978 ArrayIndentationFixer - must run after MethodArgumentSpaceFixer (kubawerlos)
18
+ * bug #4994 FinalInternalClassFixer - must run before ProtectedToPrivateFixer (kubawerlos)
19
+ * bug #4996 NoEmptyCommentFixer - handle multiline comments (kubawerlos)
20
+ * bug #4999 BlankLineBeforeStatementFixer - better comment handling (SpacePossum)
21
+ * bug #5009 NoEmptyCommentFixer - better handle comments sequence (kubawerlos)
22
+ * bug #5010 SimplifiedNullReturnFixer - must run before VoidReturnFixer (kubawerlos)
23
+ * bug #5011 SingleClassElementPerStatementFixer - must run before ClassAttributesSeparationFixer (kubawerlos)
24
+ * bug #5012 StrictParamFixer - must run before NativeFunctionInvocationFixer (kubawerlos)
25
+ * bug #5014 PhpdocToParamTypeFixer - fix for void as param (kubawerlos)
26
+ * bug #5018 PhpdocScalarFixer - fix for comment with Windows line endings (kubawerlos)
27
+ * bug #5029 SingleLineAfterImportsFixer - fix for line after import already added using CRLF (kubawerlos)
28
+ * minor #4904 Increase PHPStan level to 8 with strict rules (julienfalque)
29
+ * minor #4920 Enhancement: Use DocBlock itself to make it multi-line (localheinz)
30
+ * minor #4930 DX: ensure PhpUnitNamespacedFixer handles all classes (kubawerlos)
31
+ * minor #4931 DX: add test to ensure each target version in PhpUnitTargetVersion has its set in RuleSet (kubawerlos)
32
+ * minor #4932 DX: Travis CI config - fix warnings and infos (kubawerlos)
33
+ * minor #4940 Reject empty path (julienfalque)
34
+ * minor #4944 Fix grammar (julienfalque)
35
+ * minor #4946 Allow "const" option on PHP <7.1 (julienfalque)
36
+ * minor #4948 Added describe command to readme (david, 8ctopus)
37
+ * minor #4949 Fixed build readme on Windows fails if using Git Bash (Mintty) (8ctopus)
38
+ * minor #4954 Config - Trim path (julienfalque)
39
+ * minor #4957 DX: Check trailing spaces in project files only (ktomk)
40
+ * minor #4961 Assert all project source files are monolithic. (SpacePossum)
41
+ * minor #4964 Fix PHPStan baseline (julienfalque)
42
+ * minor #4965 Fix PHPStan baseline (julienfalque)
43
+ * minor #4973 DX: test "isRisky" method in fixer tests, not as auto review (kubawerlos)
44
+ * minor #4974 Minor: Fix typo (ktomk)
45
+ * minor #4975 Revert PHPStan level to 5 (julienfalque)
46
+ * minor #4976 Add instructions for PHPStan (julienfalque)
47
+ * minor #4980 Introduce new issue templates (julienfalque)
48
+ * minor #4981 Prevent error in CTTest::testConstants (for PHP8) (guilliamxavier)
49
+ * minor #4982 Remove PHIVE (kubawerlos)
50
+ * minor #4985 Fix tests with Symfony 5.1 (julienfalque)
51
+ * minor #4987 PhpdocAnnotationWithoutDotFixer - handle unicode characters using mb_* (SpacePossum)
52
+ * minor #5008 Enhancement: Social justification applied (gbyrka-fingo)
53
+ * minor #5023 Fix issue templates (kubawerlos)
54
+ * minor #5024 DX: add missing non-default code samples (kubawerlos)
55
+
56
+ Changelog for v2.16.3
57
+ ---------------------
58
+
59
+ * bug #4915 Fix handling property PHPDocs with unsupported type (julienfalque)
60
+ * minor #4916 Fix AppVeyor build (julienfalque)
61
+ * minor #4917 CircleCI - Bump xcode to 11.4 (GrahamCampbell)
62
+ * minor #4918 DX: do not fix ".phpt" files by default (kubawerlos)
63
+
64
+ Changelog for v2.16.2
65
+ ---------------------
66
+
67
+ * bug #3820 Braces - (re)indenting comment issues (SpacePossum)
68
+ * bug #3911 PhpdocVarWithoutNameFixer - fix for properties only (dmvdbrugge)
69
+ * bug #4601 ClassKeywordRemoveFixer - Fix for namespace (yassine-ah, kubawerlos)
70
+ * bug #4630 FullyQualifiedStrictTypesFixer - Ignore partial class names which look like FQCNs (localheinz, SpacePossum)
71
+ * bug #4661 ExplicitStringVariableFixer - variables pair if one is already explicit (kubawerlos)
72
+ * bug #4675 NonPrintableCharacterFixer - fix for backslash and quotes when changing to escape sequences (kubawerlos)
73
+ * bug #4678 TokensAnalyzer::isConstantInvocation - fix for importing multiple classes with single "use" (kubawerlos)
74
+ * bug #4682 Fix handling array type declaration in properties (julienfalque)
75
+ * bug #4685 Improve Symfony 5 compatibility (keradus)
76
+ * bug #4688 TokensAnalyzer::isConstantInvocation - Fix detection for fully qualified return type (julienfalque)
77
+ * bug #4689 DeclareStrictTypesFixer - fix for "strict_types" set to "0" (kubawerlos)
78
+ * bug #4690 PhpdocVarAnnotationCorrectOrderFixer - fix for multiline `@var` without type (kubawerlos)
79
+ * bug #4710 SingleTraitInsertPerStatement - fix formatting for multiline "use" (kubawerlos)
80
+ * bug #4711 Ensure that files from "tests" directory in release are autoloaded (kubawerlos)
81
+ * bug #4749 TokensAnalyze::isUnaryPredecessorOperator fix for CT::T_ARRAY_INDEX_C… (SpacePossum)
82
+ * bug #4759 Add more priority cases (SpacePossum)
83
+ * bug #4761 NoSuperfluousElseifFixer - handle single line (SpacePossum)
84
+ * bug #4783 NoSuperfluousPhpdocTagsFixer - fix for really big PHPDoc (kubawerlos, mvorisek)
85
+ * bug #4787 NoUnneededFinalMethodFixer - Mark as risky (SpacePossum)
86
+ * bug #4795 OrderedClassElementsFixer - Fix (SpacePossum)
87
+ * bug #4801 GlobalNamespaceImportFixer - fix docblock handling (gharlan)
88
+ * bug #4804 TokensAnalyzer::isUnarySuccessorOperator fix for array curly braces (SpacePossum)
89
+ * bug #4807 IncrementStyleFixer - handle after ")" (SpacePossum)
90
+ * bug #4808 Modernize types casting fixer array curly (SpacePossum)
91
+ * bug #4809 Fix "braces" and "method_argument_space" priority (julienfalque)
92
+ * bug #4813 BracesFixer - fix invalid code generation on alternative syntax (SpacePossum)
93
+ * bug #4822 fix 2 bugs in phpdoc_line_span (lmichelin)
94
+ * bug #4823 ReturnAssignmentFixer - repeat fix (SpacePossum)
95
+ * bug #4824 NoUnusedImportsFixer - SingleLineAfterImportsFixer - fix priority (SpacePossum)
96
+ * bug #4825 GlobalNamespaceImportFixer - do not import global into global (SpacePossum)
97
+ * bug #4829 YodaStyleFixer - fix precedence for T_MOD_EQUAL and T_COALESCE_EQUAL (SpacePossum)
98
+ * bug #4830 TernaryToNullCoalescingFixer - handle yield from (SpacePossum)
99
+ * bug #4835 Remove duplicate "function_to_constant" from RuleSet (SpacePossum)
100
+ * bug #4840 LineEndingFixer - T_CLOSE_TAG support, StringLineEndingFixer - T_INLI… (SpacePossum)
101
+ * bug #4846 FunctionsAnalyzer - better isGlobalFunctionCall detection (SpacePossum)
102
+ * bug #4852 Priority issues (SpacePossum)
103
+ * bug #4870 HeaderCommentFixer - do not remove class docs (gharlan)
104
+ * bug #4871 NoExtraBlankLinesFixer - handle cases on same line (SpacePossum)
105
+ * bug #4895 Fix conflict between header_comment and declare_strict_types (BackEndTea, julienfalque)
106
+ * bug #4911 PhpdocSeparationFixer - fix regression with lack of next line (keradus)
107
+ * feature #4742 FunctionToConstantFixer - get_class($this) support (SpacePossum)
108
+ * minor #4377 CommentsAnalyzer - fix for declare before header comment (kubawerlos)
109
+ * minor #4636 DX: do not check for PHPDBG when collecting coverage (kubawerlos)
110
+ * minor #4644 Docs: add info about "-vv..." (voku)
111
+ * minor #4691 Run Travis CI on stable PHP 7.4 (kubawerlos)
112
+ * minor #4693 Increase Travis CI Git clone depth (julienfalque)
113
+ * minor #4699 LineEndingFixer - handle "\r\r\n" (kubawerlos)
114
+ * minor #4703 NoSuperfluousPhpdocTagsFixer,PhpdocAddMissingParamAnnotationFixer - p… (SpacePossum)
115
+ * minor #4707 Fix typos (TysonAndre)
116
+ * minor #4712 NoBlankLinesAfterPhpdocFixer — Do not strip newline between docblock and use statements (mollierobbert)
117
+ * minor #4715 Enhancement: Install ergebnis/composer-normalize via Phive (localheinz)
118
+ * minor #4722 Fix Circle CI build (julienfalque)
119
+ * minor #4724 DX: Simplify installing PCOV (kubawerlos)
120
+ * minor #4736 NoUnusedImportsFixer - do not match variable name as import (SpacePossum)
121
+ * minor #4746 NoSuperfluousPhpdocTagsFixer - Remove for typed properties (PHP 7.4) (ruudk)
122
+ * minor #4753 Do not apply any text/.git filters to fixtures (mvorisek)
123
+ * minor #4757 Test $expected is used before $input (SpacePossum)
124
+ * minor #4758 Autoreview the PHPDoc of *Fixer::getPriority based on the priority map (SpacePossum)
125
+ * minor #4765 Add test on some return types (SpacePossum)
126
+ * minor #4766 Remove false test skip (SpacePossum)
127
+ * minor #4767 Remove useless priority comments (kubawerlos)
128
+ * minor #4769 DX: add missing priority tests (kubawerlos)
129
+ * minor #4772 NoUnneededFinalMethodFixer - update description (kubawerlos)
130
+ * minor #4774 DX: simplify Utils::camelCaseToUnderscore (kubawerlos)
131
+ * minor #4781 NoUnneededCurlyBracesFixer - handle namespaces (SpacePossum)
132
+ * minor #4784 Travis CI - Use multiple keyservers (ktomk)
133
+ * minor #4785 Improve static analysis (enumag)
134
+ * minor #4788 Configurable fixers code sample (SpacePossum)
135
+ * minor #4791 Increase PHPStan level to 3 (julienfalque)
136
+ * minor #4797 clean ups (SpacePossum)
137
+ * minor #4803 FinalClassFixer - Doctrine\ORM\Mapping as ORM alias should not be required (localheinz)
138
+ * minor #4839 2.15 - clean ups (SpacePossum)
139
+ * minor #4842 ReturnAssignmentFixer - Support more cases (julienfalque)
140
+ * minor #4843 NoSuperfluousPhpdocTagsFixer - fix typo in option description (OndraM)
141
+ * minor #4844 Same requirements for descriptions (SpacePossum)
142
+ * minor #4849 Increase PHPStan level to 5 (julienfalque)
143
+ * minor #4850 Fix phpstan (SpacePossum)
144
+ * minor #4857 Fixed the unit tests (GrahamCampbell)
145
+ * minor #4865 Use latest xcode image (GrahamCampbell)
146
+ * minor #4892 CombineNestedDirnameFixer - Add space after comma (julienfalque)
147
+ * minor #4894 DX: PhpdocToParamTypeFixer - improve typing (keradus)
148
+ * minor #4898 FixerTest - yield the data in AutoReview (Nyholm)
149
+ * minor #4899 Fix exception message format for fabbot.io (SpacePossum)
150
+ * minor #4905 Support composer v2 installed.json files (GrahamCampbell)
151
+ * minor #4906 CI: use Composer stable release for AppVeyor (kubawerlos)
152
+ * minor #4909 DX: HeaderCommentFixer - use non-aliased version of option name in code (keradus)
153
+ * minor #4912 CI: Fix AppVeyor integration (keradus)
154
+
155
+ Changelog for v2.16.1
156
+ ---------------------
157
+
158
+ * bug #4476 FunctionsAnalyzer - add "isTheSameClassCall" for correct verifying of function calls (kubawerlos)
159
+ * bug #4605 PhpdocToParamTypeFixer - cover more cases (keradus, julienfalque)
160
+ * bug #4626 FinalPublicMethodForAbstractClassFixer - Do not attempt to mark abstract public methods as final (localheinz)
161
+ * bug #4632 NullableTypeDeclarationForDefaultNullValueFixer - fix for not lowercase "null" (kubawerlos)
162
+ * bug #4638 Ensure compatibility with PHP 7.4 (julienfalque)
163
+ * bug #4641 Add typed properties test to VisibilityRequiredFixerTest (GawainLynch, julienfalque)
164
+ * bug #4654 ArrayIndentationFixer - Fix array indentation for multiline values (julienfalque)
165
+ * bug #4660 TokensAnalyzer::isConstantInvocation - fix for extending multiple interfaces (kubawerlos)
166
+ * bug #4668 TokensAnalyzer::isConstantInvocation - fix for interface method return type (kubawerlos)
167
+ * minor #4608 Allow Symfony 5 components (l-vo)
168
+ * minor #4622 Disallow PHP 7.4 failures on Travis CI (julienfalque)
169
+ * minor #4623 README - Mark up as code (localheinz)
170
+ * minor #4637 PHP 7.4 integration test (GawainLynch, julienfalque)
171
+ * minor #4643 DX: Update .gitattributes and move ci-integration.sh to root of the project (kubawerlos, keradus)
172
+ * minor #4645 Check PHP extensions on runtime (kubawerlos)
173
+ * minor #4655 Improve docs - README (mvorisek)
174
+ * minor #4662 DX: generate headers in README.rst (kubawerlos)
175
+ * minor #4669 Enable execution under PHP 7.4 (keradus)
176
+ * minor #4670 TravisTest - rewrite tests to allow last supported by tool PHP version to be snapshot (keradus)
177
+ * minor #4671 TravisTest - rewrite tests to allow last supported by tool PHP version to be snapshot (keradus)
178
+
179
+ Changelog for v2.16.0
180
+ ---------------------
181
+
182
+ * feature #3810 PhpdocLineSpanFixer - Introduction (BackEndTea)
183
+ * feature #3928 Add FinalPublicMethodForAbstractClassFixer (Slamdunk)
184
+ * feature #4000 FinalStaticAccessFixer - Introduction (ntzm)
185
+ * feature #4275 Issue #4274: Let lowercase_constants directive to be configurable. (drupol)
186
+ * feature #4355 GlobalNamespaceImportFixer - Introduction (gharlan)
187
+ * feature #4358 SelfStaticAccessorFixer - Introduction (SpacePossum)
188
+ * feature #4385 CommentToPhpdocFixer - allow to ignore tags (kubawerlos)
189
+ * feature #4401 Add NullableTypeDeclarationForDefaultNullValueFixer (HypeMC)
190
+ * feature #4452 Add SingleLineThrowFixer (kubawerlos)
191
+ * feature #4500 NoSuperfluousPhpdocTags - Add remove_inheritdoc option (julienfalque)
192
+ * feature #4505 NoSuperfluousPhpdocTagsFixer - allow params that aren't on the signature (azjezz)
193
+ * feature #4531 PhpdocAlignFixer - add "property-read" and "property-write" to allowed tags (kubawerlos)
194
+ * feature #4583 Phpdoc to param type fixer rebase (jg-development)
195
+ * minor #4033 Raise deprecation warnings on usage of deprecated aliases (ntzm)
196
+ * minor #4423 DX: update branch alias (keradus)
197
+ * minor #4537 SelfStaticAccessor - extend itests (keradus)
198
+ * minor #4607 Configure no_superfluous_phpdoc_tags for Symfony (keradus)
199
+ * minor #4618 DX: fix usage of deprecated options (0x450x6c)
200
+ * minor #4619 Fix PHP 7.3 strict mode warnings (keradus)
201
+ * minor #4621 Add single_line_throw to Symfony ruleset (keradus)
202
+
203
+ Changelog for v2.15.8
204
+ ---------------------
205
+
206
+ * bug #3893 Fix handling /** and */ on the same line as the first and/or last annotation (dmvdbrugge)
207
+ * bug #4919 PhpUnitTestAnnotationFixer - fix function starting with "test" and having lowercase letter after (kubawerlos)
208
+ * bug #4929 YodaStyleFixer - handling equals empty array (kubawerlos)
209
+ * bug #4934 YodaStyleFixer - fix for conditions weird are (kubawerlos)
210
+ * bug #4958 OrderedImportsFixer - fix for trailing comma in group (kubawerlos)
211
+ * bug #4959 BlankLineBeforeStatementFixer - handle comment case (SpacePossum)
212
+ * bug #4962 MethodArgumentSpaceFixer - must run after MethodChainingIndentationFixer (kubawerlos)
213
+ * bug #4963 PhpdocToReturnTypeFixer - fix for breaking PHP syntax for type having reserved name (kubawerlos, Slamdunk)
214
+ * bug #4978 ArrayIndentationFixer - must run after MethodArgumentSpaceFixer (kubawerlos)
215
+ * bug #4994 FinalInternalClassFixer - must run before ProtectedToPrivateFixer (kubawerlos)
216
+ * bug #4996 NoEmptyCommentFixer - handle multiline comments (kubawerlos)
217
+ * bug #4999 BlankLineBeforeStatementFixer - better comment handling (SpacePossum)
218
+ * bug #5009 NoEmptyCommentFixer - better handle comments sequence (kubawerlos)
219
+ * bug #5010 SimplifiedNullReturnFixer - must run before VoidReturnFixer (kubawerlos)
220
+ * bug #5011 SingleClassElementPerStatementFixer - must run before ClassAttributesSeparationFixer (kubawerlos)
221
+ * bug #5012 StrictParamFixer - must run before NativeFunctionInvocationFixer (kubawerlos)
222
+ * bug #5029 SingleLineAfterImportsFixer - fix for line after import already added using CRLF (kubawerlos)
223
+ * minor #4904 Increase PHPStan level to 8 with strict rules (julienfalque)
224
+ * minor #4930 DX: ensure PhpUnitNamespacedFixer handles all classes (kubawerlos)
225
+ * minor #4931 DX: add test to ensure each target version in PhpUnitTargetVersion has its set in RuleSet (kubawerlos)
226
+ * minor #4932 DX: Travis CI config - fix warnings and infos (kubawerlos)
227
+ * minor #4940 Reject empty path (julienfalque)
228
+ * minor #4944 Fix grammar (julienfalque)
229
+ * minor #4946 Allow "const" option on PHP <7.1 (julienfalque)
230
+ * minor #4948 Added describe command to readme (david, 8ctopus)
231
+ * minor #4949 Fixed build readme on Windows fails if using Git Bash (Mintty) (8ctopus)
232
+ * minor #4954 Config - Trim path (julienfalque)
233
+ * minor #4957 DX: Check trailing spaces in project files only (ktomk)
234
+ * minor #4961 Assert all project source files are monolithic. (SpacePossum)
235
+ * minor #4964 Fix PHPStan baseline (julienfalque)
236
+ * minor #4973 DX: test "isRisky" method in fixer tests, not as auto review (kubawerlos)
237
+ * minor #4974 Minor: Fix typo (ktomk)
238
+ * minor #4975 Revert PHPStan level to 5 (julienfalque)
239
+ * minor #4976 Add instructions for PHPStan (julienfalque)
240
+ * minor #4980 Introduce new issue templates (julienfalque)
241
+ * minor #4981 Prevent error in CTTest::testConstants (for PHP8) (guilliamxavier)
242
+ * minor #4982 Remove PHIVE (kubawerlos)
243
+ * minor #4985 Fix tests with Symfony 5.1 (julienfalque)
244
+ * minor #4987 PhpdocAnnotationWithoutDotFixer - handle unicode characters using mb_* (SpacePossum)
245
+ * minor #5008 Enhancement: Social justification applied (gbyrka-fingo)
246
+ * minor #5023 Fix issue templates (kubawerlos)
247
+ * minor #5024 DX: add missing non-default code samples (kubawerlos)
248
+
249
+ Changelog for v2.15.7
250
+ ---------------------
251
+
252
+ * bug #4915 Fix handling property PHPDocs with unsupported type (julienfalque)
253
+ * minor #4916 Fix AppVeyor build (julienfalque)
254
+ * minor #4917 CircleCI - Bump xcode to 11.4 (GrahamCampbell)
255
+ * minor #4918 DX: do not fix ".phpt" files by default (kubawerlos)
256
+
257
+ Changelog for v2.15.6
258
+ ---------------------
259
+
260
+ * bug #3820 Braces - (re)indenting comment issues (SpacePossum)
261
+ * bug #3911 PhpdocVarWithoutNameFixer - fix for properties only (dmvdbrugge)
262
+ * bug #4601 ClassKeywordRemoveFixer - Fix for namespace (yassine-ah, kubawerlos)
263
+ * bug #4630 FullyQualifiedStrictTypesFixer - Ignore partial class names which look like FQCNs (localheinz, SpacePossum)
264
+ * bug #4661 ExplicitStringVariableFixer - variables pair if one is already explicit (kubawerlos)
265
+ * bug #4675 NonPrintableCharacterFixer - fix for backslash and quotes when changing to escape sequences (kubawerlos)
266
+ * bug #4678 TokensAnalyzer::isConstantInvocation - fix for importing multiple classes with single "use" (kubawerlos)
267
+ * bug #4682 Fix handling array type declaration in properties (julienfalque)
268
+ * bug #4685 Improve Symfony 5 compatibility (keradus)
269
+ * bug #4688 TokensAnalyzer::isConstantInvocation - Fix detection for fully qualified return type (julienfalque)
270
+ * bug #4689 DeclareStrictTypesFixer - fix for "strict_types" set to "0" (kubawerlos)
271
+ * bug #4690 PhpdocVarAnnotationCorrectOrderFixer - fix for multiline `@var` without type (kubawerlos)
272
+ * bug #4710 SingleTraitInsertPerStatement - fix formatting for multiline "use" (kubawerlos)
273
+ * bug #4711 Ensure that files from "tests" directory in release are autoloaded (kubawerlos)
274
+ * bug #4749 TokensAnalyze::isUnaryPredecessorOperator fix for CT::T_ARRAY_INDEX_C… (SpacePossum)
275
+ * bug #4759 Add more priority cases (SpacePossum)
276
+ * bug #4761 NoSuperfluousElseifFixer - handle single line (SpacePossum)
277
+ * bug #4783 NoSuperfluousPhpdocTagsFixer - fix for really big PHPDoc (kubawerlos, mvorisek)
278
+ * bug #4787 NoUnneededFinalMethodFixer - Mark as risky (SpacePossum)
279
+ * bug #4795 OrderedClassElementsFixer - Fix (SpacePossum)
280
+ * bug #4804 TokensAnalyzer::isUnarySuccessorOperator fix for array curly braces (SpacePossum)
281
+ * bug #4807 IncrementStyleFixer - handle after ")" (SpacePossum)
282
+ * bug #4808 Modernize types casting fixer array curly (SpacePossum)
283
+ * bug #4809 Fix "braces" and "method_argument_space" priority (julienfalque)
284
+ * bug #4813 BracesFixer - fix invalid code generation on alternative syntax (SpacePossum)
285
+ * bug #4823 ReturnAssignmentFixer - repeat fix (SpacePossum)
286
+ * bug #4824 NoUnusedImportsFixer - SingleLineAfterImportsFixer - fix priority (SpacePossum)
287
+ * bug #4829 YodaStyleFixer - fix precedence for T_MOD_EQUAL and T_COALESCE_EQUAL (SpacePossum)
288
+ * bug #4830 TernaryToNullCoalescingFixer - handle yield from (SpacePossum)
289
+ * bug #4835 Remove duplicate "function_to_constant" from RuleSet (SpacePossum)
290
+ * bug #4840 LineEndingFixer - T_CLOSE_TAG support, StringLineEndingFixer - T_INLI… (SpacePossum)
291
+ * bug #4846 FunctionsAnalyzer - better isGlobalFunctionCall detection (SpacePossum)
292
+ * bug #4852 Priority issues (SpacePossum)
293
+ * bug #4870 HeaderCommentFixer - do not remove class docs (gharlan)
294
+ * bug #4871 NoExtraBlankLinesFixer - handle cases on same line (SpacePossum)
295
+ * bug #4895 Fix conflict between header_comment and declare_strict_types (BackEndTea, julienfalque)
296
+ * bug #4911 PhpdocSeparationFixer - fix regression with lack of next line (keradus)
297
+ * feature #4742 FunctionToConstantFixer - get_class($this) support (SpacePossum)
298
+ * minor #4377 CommentsAnalyzer - fix for declare before header comment (kubawerlos)
299
+ * minor #4636 DX: do not check for PHPDBG when collecting coverage (kubawerlos)
300
+ * minor #4644 Docs: add info about "-vv..." (voku)
301
+ * minor #4691 Run Travis CI on stable PHP 7.4 (kubawerlos)
302
+ * minor #4693 Increase Travis CI Git clone depth (julienfalque)
303
+ * minor #4699 LineEndingFixer - handle "\r\r\n" (kubawerlos)
304
+ * minor #4703 NoSuperfluousPhpdocTagsFixer,PhpdocAddMissingParamAnnotationFixer - p… (SpacePossum)
305
+ * minor #4707 Fix typos (TysonAndre)
306
+ * minor #4712 NoBlankLinesAfterPhpdocFixer — Do not strip newline between docblock and use statements (mollierobbert)
307
+ * minor #4715 Enhancement: Install ergebnis/composer-normalize via Phive (localheinz)
308
+ * minor #4722 Fix Circle CI build (julienfalque)
309
+ * minor #4724 DX: Simplify installing PCOV (kubawerlos)
310
+ * minor #4736 NoUnusedImportsFixer - do not match variable name as import (SpacePossum)
311
+ * minor #4746 NoSuperfluousPhpdocTagsFixer - Remove for typed properties (PHP 7.4) (ruudk)
312
+ * minor #4753 Do not apply any text/.git filters to fixtures (mvorisek)
313
+ * minor #4757 Test $expected is used before $input (SpacePossum)
314
+ * minor #4758 Autoreview the PHPDoc of *Fixer::getPriority based on the priority map (SpacePossum)
315
+ * minor #4765 Add test on some return types (SpacePossum)
316
+ * minor #4766 Remove false test skip (SpacePossum)
317
+ * minor #4767 Remove useless priority comments (kubawerlos)
318
+ * minor #4769 DX: add missing priority tests (kubawerlos)
319
+ * minor #4772 NoUnneededFinalMethodFixer - update description (kubawerlos)
320
+ * minor #4774 DX: simplify Utils::camelCaseToUnderscore (kubawerlos)
321
+ * minor #4781 NoUnneededCurlyBracesFixer - handle namespaces (SpacePossum)
322
+ * minor #4784 Travis CI - Use multiple keyservers (ktomk)
323
+ * minor #4785 Improve static analysis (enumag)
324
+ * minor #4788 Configurable fixers code sample (SpacePossum)
325
+ * minor #4791 Increase PHPStan level to 3 (julienfalque)
326
+ * minor #4797 clean ups (SpacePossum)
327
+ * minor #4803 FinalClassFixer - Doctrine\ORM\Mapping as ORM alias should not be required (localheinz)
328
+ * minor #4839 2.15 - clean ups (SpacePossum)
329
+ * minor #4842 ReturnAssignmentFixer - Support more cases (julienfalque)
330
+ * minor #4844 Same requirements for descriptions (SpacePossum)
331
+ * minor #4849 Increase PHPStan level to 5 (julienfalque)
332
+ * minor #4857 Fixed the unit tests (GrahamCampbell)
333
+ * minor #4865 Use latest xcode image (GrahamCampbell)
334
+ * minor #4892 CombineNestedDirnameFixer - Add space after comma (julienfalque)
335
+ * minor #4898 FixerTest - yield the data in AutoReview (Nyholm)
336
+ * minor #4899 Fix exception message format for fabbot.io (SpacePossum)
337
+ * minor #4905 Support composer v2 installed.json files (GrahamCampbell)
338
+ * minor #4906 CI: use Composer stable release for AppVeyor (kubawerlos)
339
+ * minor #4909 DX: HeaderCommentFixer - use non-aliased version of option name in code (keradus)
340
+ * minor #4912 CI: Fix AppVeyor integration (keradus)
341
+
342
+ Changelog for v2.15.5
343
+ ---------------------
344
+
345
+ * bug #4476 FunctionsAnalyzer - add "isTheSameClassCall" for correct verifying of function calls (kubawerlos)
346
+ * bug #4641 Add typed properties test to VisibilityRequiredFixerTest (GawainLynch, julienfalque)
347
+ * bug #4654 ArrayIndentationFixer - Fix array indentation for multiline values (julienfalque)
348
+ * bug #4660 TokensAnalyzer::isConstantInvocation - fix for extending multiple interfaces (kubawerlos)
349
+ * bug #4668 TokensAnalyzer::isConstantInvocation - fix for interface method return type (kubawerlos)
350
+ * minor #4608 Allow Symfony 5 components (l-vo)
351
+ * minor #4622 Disallow PHP 7.4 failures on Travis CI (julienfalque)
352
+ * minor #4637 PHP 7.4 integration test (GawainLynch, julienfalque)
353
+ * minor #4643 DX: Update .gitattributes and move ci-integration.sh to root of the project (kubawerlos, keradus)
354
+ * minor #4645 Check PHP extensions on runtime (kubawerlos)
355
+ * minor #4655 Improve docs - README (mvorisek)
356
+ * minor #4662 DX: generate headers in README.rst (kubawerlos)
357
+ * minor #4669 Enable execution under PHP 7.4 (keradus)
358
+ * minor #4671 TravisTest - rewrite tests to allow last supported by tool PHP version to be snapshot (keradus)
359
+
360
+ Changelog for v2.15.4
361
+ ---------------------
362
+
363
+ * bug #4183 IndentationTypeFixer - fix handling 2 spaces indent (kubawerlos)
364
+ * bug #4406 NoSuperfluousElseifFixer - fix invalid escape sequence in character class (remicollet, SpacePossum)
365
+ * bug #4416 NoUnusedImports - Fix imports detected as used in namespaces (julienfalque, SpacePossum)
366
+ * bug #4518 PhpUnitNoExpectationAnnotationFixer - fix handling expect empty exception message (ktomk)
367
+ * bug #4548 HeredocIndentationFixer - remove whitespace in empty lines (gharlan)
368
+ * bug #4556 ClassKeywordRemoveFixer - fix for self,static and parent keywords (kubawerlos)
369
+ * bug #4572 TokensAnalyzer - handle nested anonymous classes (SpacePossum)
370
+ * bug #4573 CombineConsecutiveIssetsFixer - fix stop based on precedence (SpacePossum)
371
+ * bug #4577 Fix command exit code on lint error after fixing fix. (SpacePossum)
372
+ * bug #4581 FunctionsAnalyzer: fix for comment in type (kubawerlos)
373
+ * bug #4586 BracesFixer - handle dynamic static method call (SpacePossum)
374
+ * bug #4594 Braces - fix both single line comment styles (SpacePossum)
375
+ * bug #4609 PhpdocTypesOrderFixer - Prevent unexpected default value change (laurent35240)
376
+ * minor #4458 Add PHPStan (julienfalque)
377
+ * minor #4479 IncludeFixer - remove braces when the statement is wrapped in block (kubawerlos)
378
+ * minor #4490 Allow running if installed as project specific (ticktackk)
379
+ * minor #4517 Verify PCRE pattern before use (ktomk)
380
+ * minor #4521 Remove superfluous leading backslash, closes 4520 (ktomk)
381
+ * minor #4532 DX: ensure data providers are used (kubawerlos)
382
+ * minor #4534 Redo PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus, Slamdunk)
383
+ * minor #4536 DX: use PHIVE for dev tools (keradus)
384
+ * minor #4538 Docs: update Cookbook (keradus)
385
+ * minor #4541 Enhancement: Use default name property to configure command names (localheinz)
386
+ * minor #4546 DX: removing unnecessary variable initialization (kubawerlos)
387
+ * minor #4549 DX: use ::class whenever possible (keradus, kubawerlos)
388
+ * minor #4550 DX: travis_retry for dev-tools install (ktomk, keradus)
389
+ * minor #4559 Allow 7.4snapshot to fail due to a bug on it (kubawerlos)
390
+ * minor #4563 GitlabReporter - fix report output (mjanser)
391
+ * minor #4564 Move readme-update command to Section 3 (iwasherefirst2)
392
+ * minor #4566 Update symfony ruleset (gharlan)
393
+ * minor #4570 Command::execute() should always return an integer (derrabus)
394
+ * minor #4580 Add suport for true/false return type hints. (SpacePossum)
395
+ * minor #4584 Increase PHPStan level to 1 (julienfalque)
396
+ * minor #4585 Fix deprecation notices (julienfalque)
397
+ * minor #4587 Output details - Explain why a file was skipped (SpacePossum)
398
+ * minor #4588 Fix STDIN test when path is one level deep (julienfalque)
399
+ * minor #4589 PhpdocToReturnType - Add support for Foo[][] (SpacePossum)
400
+ * minor #4593 Ensure compatibility with PHP 7.4 typed properties (julienfalque)
401
+ * minor #4595 Import cannot be used after `::` so can be removed (SpacePossum)
402
+ * minor #4596 Ensure compatibility with PHP 7.4 numeric literal separator (julienfalque)
403
+ * minor #4597 Fix PHP 7.4 deprecation notices (julienfalque)
404
+ * minor #4600 Ensure compatibility with PHP 7.4 arrow functions (julienfalque)
405
+ * minor #4602 Ensure compatibility with PHP 7.4 spread operator in array expression (julienfalque)
406
+ * minor #4603 Ensure compatibility with PHP 7.4 null coalescing assignment operator (julienfalque)
407
+ * minor #4606 Configure no_superfluous_phpdoc_tags for Symfony (keradus)
408
+ * minor #4610 Travis CI - Update known files list (julienfalque)
409
+ * minor #4615 Remove workaround for dev-tools install reg. Phive (ktomk)
410
+
411
+ Changelog for v2.15.3
412
+ ---------------------
413
+
414
+ * bug #4533 Revert PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus)
415
+ * minor #4264 DX: AutoReview - ensure Travis handle all needed PHP versions (keradus)
416
+ * minor #4524 MethodArgumentSpaceFixerTest - make explicit configuration to prevent fail on configuration change (keradus)
417
+
418
+ Changelog for v2.15.2
419
+ ---------------------
420
+
421
+ * bug #4132 BlankLineAfterNamespaceFixer - do not remove indent, handle comments (kubawerlos)
422
+ * bug #4384 MethodArgumentSpaceFixer - fix for on_multiline:ensure_fully_multiline with trailing comma in function call (kubawerlos)
423
+ * bug #4404 FileLintingIterator - fix current value on end/invalid (SpacePossum)
424
+ * bug #4421 FunctionTypehintSpaceFixer - Ensure single space between type declaration and parameter (localheinz)
425
+ * bug #4436 MethodArgumentSpaceFixer - handle misplaced ) (keradus)
426
+ * bug #4439 NoLeadingImportSlashFixer - Add space if needed (SpacePossum)
427
+ * bug #4440 SimpleToComplexStringVariableFixer - Fix $ bug (dmvdbrugge)
428
+ * bug #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
429
+ * bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
430
+ * bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
431
+ * bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
432
+ * minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
433
+ * minor #4412 PHP 7.4 - Tests for support (SpacePossum)
434
+ * minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
435
+ * minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
436
+ * minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
437
+ * minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
438
+ * minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
439
+ * minor #4477 DX: control names of public methods in test's classes (kubawerlos)
440
+ * minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
441
+ * minor #4484 fix typos in README (Sven Ludwig)
442
+ * minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
443
+ * minor #4516 DX: Lock binary SCA tools versions (keradus)
444
+
445
+ Changelog for v2.15.1
446
+ ---------------------
447
+
448
+ * bug #4418 PhpUnitNamespacedFixer - properly translate classes which do not follow translation pattern (ktomk)
449
+ * bug #4419 PhpUnitTestCaseStaticMethodCallsFixer - skip anonymous classes and lambda (SpacePossum)
450
+ * bug #4420 MethodArgumentSpaceFixer - PHP7.3 trailing commas in function calls (SpacePossum)
451
+ * minor #4345 Travis: PHP 7.4 isn't allowed to fail anymore (Slamdunk)
452
+ * minor #4403 LowercaseStaticReferenceFixer - Fix invalid PHP version in example (HypeMC)
453
+ * minor #4424 DX: cleanup of composer.json - no need for branch-alias (keradus)
454
+ * minor #4425 DX: assertions are static, adjust custom assertions (keradus)
455
+ * minor #4426 DX: handle deprecations of symfony/event-dispatcher:4.3 (keradus)
456
+ * minor #4427 DX: stop using reserved T_FN in code samples (keradus)
457
+ * minor #4428 DX: update dev-tools (keradus)
458
+ * minor #4429 DX: MethodArgumentSpaceFixerTest - fix hidden merge conflict (keradus)
459
+
460
+ Changelog for v2.15.0
461
+ ---------------------
462
+
463
+ * feature #3927 Add FinalClassFixer (Slamdunk)
464
+ * feature #3939 Add PhpUnitSizeClassFixer (Jefersson Nathan)
465
+ * feature #3942 SimpleToComplexStringVariableFixer - Introduction (dmvdbrugge, SpacePossum)
466
+ * feature #4113 OrderedInterfacesFixer - Introduction (dmvdbrugge)
467
+ * feature #4121 SingleTraitInsertPerStatementFixer - Introduction (SpacePossum)
468
+ * feature #4126 NativeFunctionTypeDeclarationCasingFixer - Introduction (SpacePossum)
469
+ * feature #4167 PhpUnitMockShortWillReturnFixer - Introduction (michadam-pearson)
470
+ * feature #4191 [7.3] NoWhitespaceBeforeCommaInArrayFixer - fix comma after heredoc-end (gharlan)
471
+ * feature #4288 Add Gitlab Reporter (hco)
472
+ * feature #4328 Add PhpUnitDedicateAssertInternalTypeFixer (Slamdunk)
473
+ * feature #4341 [7.3] TrailingCommaInMultilineArrayFixer - fix comma after heredoc-end (gharlan)
474
+ * feature #4342 [7.3] MethodArgumentSpaceFixer - fix comma after heredoc-end (gharlan)
475
+ * minor #4112 NoSuperfluousPhpdocTagsFixer - Add missing code sample, groom tests (keradus, SpacePossum)
476
+ * minor #4360 Add gitlab as output format in the README/help doc. (SpacePossum)
477
+ * minor #4386 Add PhpUnitMockShortWillReturnFixer to @Symfony:risky rule set (kubawerlos)
478
+ * minor #4398 New ruleset "@PHP73Migration" (gharlan)
479
+ * minor #4399 Fix 2.15 line (keradus)
480
+
481
+ Changelog for v2.14.6
482
+ ---------------------
483
+
484
+ * bug #4533 Revert PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus)
485
+ * minor #4264 DX: AutoReview - ensure Travis handle all needed PHP versions (keradus)
486
+ * minor #4524 MethodArgumentSpaceFixerTest - make explicit configuration to prevent fail on configuration change (keradus)
487
+
488
+ Changelog for v2.14.5
489
+ ---------------------
490
+
491
+ * bug #4132 BlankLineAfterNamespaceFixer - do not remove indent, handle comments (kubawerlos)
492
+ * bug #4384 MethodArgumentSpaceFixer - fix for on_multiline:ensure_fully_multiline with trailing comma in function call (kubawerlos)
493
+ * bug #4404 FileLintingIterator - fix current value on end/invalid (SpacePossum)
494
+ * bug #4421 FunctionTypehintSpaceFixer - Ensure single space between type declaration and parameter (localheinz)
495
+ * bug #4436 MethodArgumentSpaceFixer - handle misplaced ) (keradus)
496
+ * bug #4439 NoLeadingImportSlashFixer - Add space if needed (SpacePossum)
497
+ * bug #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
498
+ * bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
499
+ * bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
500
+ * bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
501
+ * minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
502
+ * minor #4412 PHP 7.4 - Tests for support (SpacePossum)
503
+ * minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
504
+ * minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
505
+ * minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
506
+ * minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
507
+ * minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
508
+ * minor #4477 DX: control names of public methods in test's classes (kubawerlos)
509
+ * minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
510
+ * minor #4484 fix typos in README (Sven Ludwig)
511
+ * minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
512
+ * minor #4516 DX: Lock binary SCA tools versions (keradus)
513
+
514
+ Changelog for v2.14.4
515
+ ---------------------
516
+
517
+ * bug #4418 PhpUnitNamespacedFixer - properly translate classes which do not follow translation pattern (ktomk)
518
+ * bug #4419 PhpUnitTestCaseStaticMethodCallsFixer - skip anonymous classes and lambda (SpacePossum)
519
+ * bug #4420 MethodArgumentSpaceFixer - PHP7.3 trailing commas in function calls (SpacePossum)
520
+ * minor #4345 Travis: PHP 7.4 isn't allowed to fail anymore (Slamdunk)
521
+ * minor #4403 LowercaseStaticReferenceFixer - Fix invalid PHP version in example (HypeMC)
522
+ * minor #4425 DX: assertions are static, adjust custom assertions (keradus)
523
+ * minor #4426 DX: handle deprecations of symfony/event-dispatcher:4.3 (keradus)
524
+ * minor #4427 DX: stop using reserved T_FN in code samples (keradus)
525
+ * minor #4428 DX: update dev-tools (keradus)
526
+
527
+ Changelog for v2.14.3
528
+ ---------------------
529
+
530
+ * bug #4298 NoTrailingWhitespaceInCommentFixer - fix for non-Unix line separators (kubawerlos)
531
+ * bug #4303 FullyQualifiedStrictTypesFixer - Fix the short type detection when a question mark (nullable) is prefixing it. (drupol)
532
+ * bug #4313 SelfAccessorFixer - fix for part qualified class name (kubawerlos, SpacePossum)
533
+ * bug #4314 PhpUnitTestCaseStaticMethodCallsFixer - fix for having property with name as method to update (kubawerlos, SpacePossum)
534
+ * bug #4316 NoUnsetCastFixer - Test for higher-precedence operators (SpacePossum)
535
+ * bug #4327 TokensAnalyzer - add concat operator to list of binary operators (SpacePossum)
536
+ * bug #4335 Cache - add indent and line ending to cache signature (dmvdbrugge)
537
+ * bug #4344 VoidReturnFixer - handle yield from (SpacePossum)
538
+ * bug #4346 BracesFixer - Do not pull close tag onto same line as a comment (SpacePossum)
539
+ * bug #4350 StrictParamFixer - Don't detect functions in use statements (bolmstedt)
540
+ * bug #4357 Fix short list syntax detection. (SpacePossum)
541
+ * bug #4365 Fix output escaping of diff for text format when line is not changed (SpacePossum)
542
+ * bug #4370 PhpUnitConstructFixer - Fix handle different casing (SpacePossum)
543
+ * bug #4379 ExplicitStringVariableFixer - add test case for variable as an array key (kubawerlos, Slamdunk)
544
+ * feature #4337 PhpUnitTestCaseStaticMethodCallsFixer - prepare for PHPUnit 8 (kubawerlos)
545
+ * minor #3799 DX: php_unit_test_case_static_method_calls - use default config (keradus)
546
+ * minor #4103 NoExtraBlankLinesFixer - fix candidate detection (SpacePossum)
547
+ * minor #4245 LineEndingFixer - BracesFixer - Priority (dmvdbrugge)
548
+ * minor #4325 Use lowercase mikey179/vfsStream in composer.json (lolli42)
549
+ * minor #4336 Collect coverage with PCOV (kubawerlos)
550
+ * minor #4338 Fix wording (kmvan, kubawerlos)
551
+ * minor #4339 Change BracesFixer to avoid indenting PHP inline braces (alecgeatches)
552
+ * minor #4340 Travis: build against 7.4snapshot instead of nightly (Slamdunk)
553
+ * minor #4351 code grooming (SpacePossum)
554
+ * minor #4353 Add more priority tests (SpacePossum)
555
+ * minor #4364 DX: MethodChainingIndentationFixer - remove unneccesary loop (Sijun Zhu)
556
+ * minor #4366 Unset the auxillary variable $a (GrahamCampbell)
557
+ * minor #4368 Fixed TypeShortNameResolverTest::testResolver (GrahamCampbell)
558
+ * minor #4380 PHP7.4 - Add "str_split" => "mb_str_split" mapping. (SpacePossum)
559
+ * minor #4381 PHP7.4 - Add support for magic methods (un)serialize. (SpacePossum)
560
+ * minor #4393 DX: add missing explicit return types (kubawerlos)
561
+
562
+ Changelog for v2.14.2
563
+ ---------------------
564
+
565
+ * minor #4306 DX: Drop HHVM conflict on Composer level to help Composer with HHVM compatibility, we still prevent HHVM on runtime (keradus)
566
+
567
+ Changelog for v2.14.1
568
+ ---------------------
569
+
570
+ * bug #4240 ModernizeTypesCastingFixer - fix for operators with higher precedence (kubawerlos)
571
+ * bug #4254 PhpUnitDedicateAssertFixer - fix for count with additional operations (kubawerlos)
572
+ * bug #4260 Psr0Fixer and Psr4Fixer - fix for multiple classes in file with anonymous class (kubawerlos)
573
+ * bug #4262 FixCommand - fix help (keradus)
574
+ * bug #4276 MethodChainingIndentationFixer, ArrayIndentationFixer - Fix priority issue (dmvdbrugge)
575
+ * bug #4280 MethodArgumentSpaceFixer - Fix method argument alignment (Billz95)
576
+ * bug #4286 IncrementStyleFixer - fix for static statement (kubawerlos)
577
+ * bug #4291 ArrayIndentationFixer - Fix indentation after trailing spaces (julienfalque, keradus)
578
+ * bug #4292 NoSuperfluousPhpdocTagsFixer - Make null only type not considered superfluous (julienfalque)
579
+ * minor #4204 DX: Tokens - do not unregister/register found tokens when collection is not changing (kubawerlos)
580
+ * minor #4235 DX: more specific @param types (kubawerlos)
581
+ * minor #4263 DX: AppVeyor - bump PHP version (keradus)
582
+ * minor #4293 Add official support for PHP 7.3 (keradus)
583
+ * minor #4295 DX: MethodArgumentSpaceFixerTest - fix edge case for handling different line ending when only expected code is provided (keradus)
584
+ * minor #4296 DX: cleanup testing with fixer config (keradus)
585
+ * minor #4299 NativeFunctionInvocationFixer - add array_key_exists (deguif, keradus)
586
+ * minor #4300 DX: cleanup testing with fixer config (keradus)
587
+
588
+ Changelog for v2.14.0
589
+ ---------------------
590
+
591
+ * bug #4220 NativeFunctionInvocationFixer - namespaced strict to remove backslash (kubawerlos)
592
+ * feature #3881 Add PhpdocVarAnnotationCorrectOrderFixer (kubawerlos)
593
+ * feature #3915 Add HeredocIndentationFixer (gharlan)
594
+ * feature #4002 NoSuperfluousPhpdocTagsFixer - Allow `mixed` in superfluous PHPDoc by configuration (MortalFlesh)
595
+ * feature #4030 Add get_required_files and user_error aliases (ntzm)
596
+ * feature #4043 NativeFunctionInvocationFixer - add option to remove redundant backslashes (kubawerlos)
597
+ * feature #4102 Add NoUnsetCastFixer (SpacePossum)
598
+ * minor #4025 Add phpdoc_types_order rule to Symfony's ruleset (carusogabriel)
599
+ * minor #4213 [7.3] PHP7.3 integration tests (SpacePossum)
600
+ * minor #4233 Add official support for PHP 7.3 (keradus)
601
+
602
+ Changelog for v2.13.3
603
+ ---------------------
604
+
605
+ * bug #4216 Psr4Fixer - fix for multiple classy elements in file (keradus, kubawerlos)
606
+ * bug #4217 Psr0Fixer - class with anonymous class (kubawerlos)
607
+ * bug #4219 NativeFunctionCasingFixer - handle T_RETURN_REF (kubawerlos)
608
+ * bug #4224 FunctionToConstantFixer - handle T_RETURN_REF (SpacePossum)
609
+ * bug #4229 IsNullFixer - fix parenthesis not closed (guilliamxavier)
610
+ * minor #4193 [7.3] CombineNestedDirnameFixer - support PHP 7.3 (kubawerlos)
611
+ * minor #4198 [7.3] PowToExponentiationFixer - adding to PHP7.3 integration test (kubawerlos)
612
+ * minor #4199 [7.3] MethodChainingIndentationFixer - add tests for PHP 7.3 (kubawerlos)
613
+ * minor #4200 [7.3] ModernizeTypesCastingFixer - support PHP 7.3 (kubawerlos)
614
+ * minor #4201 [7.3] MultilineWhitespaceBeforeSemicolonsFixer - add tests for PHP 7.3 (kubawerlos)
615
+ * minor #4202 [7.3] ErrorSuppressionFixer - support PHP 7.3 (kubawerlos)
616
+ * minor #4205 DX: PhpdocAlignFixer - refactor to use DocBlock (kubawerlos)
617
+ * minor #4206 DX: enable multiline_whitespace_before_semicolons (keradus)
618
+ * minor #4207 [7.3] RandomApiMigrationFixerTest - tests for 7.3 (SpacePossum)
619
+ * minor #4208 [7.3] NativeFunctionCasingFixerTest - tests for 7.3 (SpacePossum)
620
+ * minor #4209 [7.3] PhpUnitStrictFixerTest - tests for 7.3 (SpacePossum)
621
+ * minor #4210 [7.3] PhpUnitConstructFixer - add test for PHP 7.3 (kubawerlos)
622
+ * minor #4211 [7.3] PhpUnitDedicateAssertFixer - support PHP 7.3 (kubawerlos)
623
+ * minor #4214 [7.3] NoUnsetOnPropertyFixerTest - tests for 7.3 (SpacePossum)
624
+ * minor #4222 [7.3] PhpUnitExpectationFixer - support PHP 7.3 (kubawerlos)
625
+ * minor #4223 [7.3] PhpUnitMockFixer - add tests for PHP 7.3 (kubawerlos)
626
+ * minor #4230 [7.3] IsNullFixer - fix trailing comma (guilliamxavier)
627
+ * minor #4232 DX: remove Utils::splitLines (kubawerlos)
628
+ * minor #4234 [7.3] Test that "LITERAL instanceof X" is valid (guilliamxavier)
629
+
630
+ Changelog for v2.13.2
631
+ ---------------------
632
+
633
+ * bug #3968 SelfAccessorFixer - support FQCN (kubawerlos)
634
+ * bug #3974 Psr4Fixer - class with anonymous class (kubawerlos)
635
+ * bug #3987 Run HeaderCommentFixer after NoBlankLinesAfterPhpdocFixer (StanAngeloff)
636
+ * bug #4009 TypeAlternationTransformer - Fix pipes in function call with constants being classified incorrectly (ntzm, SpacePossum)
637
+ * bug #4022 NoUnsetOnPropertyFixer - refactor and bugfixes (kubawerlos)
638
+ * bug #4036 ExplicitStringVariableFixer - fixes for backticks and for 2 variables next to each other (kubawerlos, Slamdunk)
639
+ * bug #4038 CommentToPhpdocFixer - handling nested PHPDoc (kubawerlos)
640
+ * bug #4064 Ignore invalid mode strings, add option to remove the "b" flag. (SpacePossum)
641
+ * bug #4071 DX: do not insert Token when calling removeLeadingWhitespace/removeTrailingWhitespace from Tokens (kubawerlos)
642
+ * bug #4073 IsNullFixer - fix function detection (kubawerlos)
643
+ * bug #4074 FileFilterIterator - do not filter out files that need fixing (SpacePossum)
644
+ * bug #4076 EregToPregFixer - fix function detection (kubawerlos)
645
+ * bug #4084 MethodChainingIndentation - fix priority with Braces (dmvdbrugge)
646
+ * bug #4099 HeaderCommentFixer - throw exception on invalid header configuration (SpacePossum)
647
+ * bug #4100 PhpdocAddMissingParamAnnotationFixer - Handle variable number of arguments and pass by reference cases (SpacePossum)
648
+ * bug #4101 ReturnAssignmentFixer - do not touch invalid code (SpacePossum)
649
+ * bug #4104 Change transformers order, fixing untransformed T_USE (dmvdbrugge)
650
+ * bug #4107 Preg::split - fix for non-UTF8 subject (ostrolucky, kubawerlos)
651
+ * bug #4109 NoBlankLines*: fix removing lines consisting only of spaces (kubawerlos, keradus)
652
+ * bug #4114 VisibilityRequiredFixer - don't remove comments (kubawerlos)
653
+ * bug #4116 OrderedImportsFixer - fix sorting without any grouping (SpacePossum)
654
+ * bug #4119 PhpUnitNoExpectationAnnotationFixer - fix extracting content from annotation (kubawerlos)
655
+ * bug #4127 LowercaseConstantsFixer - Fix case with properties using constants as their name (srathbone)
656
+ * bug #4134 [7.3] SquareBraceTransformer - nested array destructuring not handled correctly (SpacePossum)
657
+ * bug #4153 PhpUnitFqcnAnnotationFixer - handle only PhpUnit classes (kubawerlos)
658
+ * bug #4169 DirConstantFixer - Fixes for PHP7.3 syntax (SpacePossum)
659
+ * bug #4181 MultilineCommentOpeningClosingFixer - fix handling empty comment (kubawerlos)
660
+ * bug #4186 Tokens - fix removal of leading/trailing whitespace with empty token in collection (kubawerlos)
661
+ * minor #3436 Add a handful of integration tests (BackEndTea)
662
+ * minor #3774 PhpUnitTestClassRequiresCoversFixer - Remove unneeded loop and use phpunit indicator class (BackEndTea, SpacePossum)
663
+ * minor #3778 DX: Throw an exception if FileReader::read fails (ntzm)
664
+ * minor #3916 New ruleset "@PhpCsFixer" (gharlan)
665
+ * minor #4007 Fixes cookbook for fixers (greeflas)
666
+ * minor #4031 Correct FixerOptionBuilder::getOption return type (ntzm)
667
+ * minor #4046 Token - Added fast isset() path to token->equals() (staabm)
668
+ * minor #4047 Token - inline $other->getPrototype() to speedup equals() (staabm, keradus)
669
+ * minor #4048 Tokens - inlined extractTokenKind() call on the hot path (staabm)
670
+ * minor #4069 DX: Add dev-tools directory to gitattributes as export-ignore (alexmanno)
671
+ * minor #4070 Docs: Add link to a VS Code extension in readme (jakebathman)
672
+ * minor #4077 DX: cleanup - NoAliasFunctionsFixer - use FunctionsAnalyzer (kubawerlos)
673
+ * minor #4088 Add Travis test with strict types (kubawerlos)
674
+ * minor #4091 Adjust misleading sentence in CONTRIBUTING.md (ostrolucky)
675
+ * minor #4092 UseTransformer - simplify/optimize (SpacePossum)
676
+ * minor #4095 DX: Use ::class (keradus)
677
+ * minor #4096 DX: fixing typo (kubawerlos)
678
+ * minor #4097 DX: namespace casing (kubawerlos)
679
+ * minor #4110 Enhancement: Update localheinz/composer-normalize (localheinz)
680
+ * minor #4115 Changes for upcoming Travis' infra migration (sergeyklay)
681
+ * minor #4122 DX: AppVeyor - Update Composer download link (SpacePossum)
682
+ * minor #4128 DX: cleanup - AbstractFunctionReferenceFixer - use FunctionsAnalyzer (SpacePossum, kubawerlos)
683
+ * minor #4129 Fix: Symfony 4.2 deprecations (kubawerlos)
684
+ * minor #4139 DX: Fix CircleCI (kubawerlos)
685
+ * minor #4142 [7.3] NoAliasFunctionsFixer - mbregex_encoding' => 'mb_regex_encoding (SpacePossum)
686
+ * minor #4143 PhpUnitTestCaseStaticMethodCallsFixer - Add PHPUnit 7.5 new assertions (Slamdunk)
687
+ * minor #4149 [7.3] ArgumentsAnalyzer - PHP7.3 support (SpacePossum)
688
+ * minor #4161 DX: CI - show packages installed via Composer (keradus)
689
+ * minor #4162 DX: Drop symfony/lts (keradus)
690
+ * minor #4166 DX: do not use AbstractFunctionReferenceFixer when no need to (kubawerlos)
691
+ * minor #4168 DX: FopenFlagsFixer - remove useless proxy method (SpacePossum)
692
+ * minor #4171 Fix CircleCI cache (kubawerlos)
693
+ * minor #4173 [7.3] PowToExponentiationFixer - add support for PHP7.3 (SpacePossum)
694
+ * minor #4175 Fixing typo (kubawerlos)
695
+ * minor #4177 CI: Check that tag is matching version of PHP CS Fixer during deployment (keradus)
696
+ * minor #4180 Fixing typo (kubawerlos)
697
+ * minor #4182 DX: update php-cs-fixer file style (kubawerlos)
698
+ * minor #4185 [7.3] ImplodeCallFixer - add tests for PHP7.3 (kubawerlos)
699
+ * minor #4187 [7.3] IsNullFixer - support PHP 7.3 (kubawerlos)
700
+ * minor #4188 DX: cleanup (keradus)
701
+ * minor #4189 Travis - add PHP 7.3 job (keradus)
702
+ * minor #4190 Travis CI - fix config (kubawerlos)
703
+ * minor #4192 [7.3] MagicMethodCasingFixer - add tests for PHP 7.3 (kubawerlos)
704
+ * minor #4194 [7.3] NativeFunctionInvocationFixer - add tests for PHP 7.3 (kubawerlos)
705
+ * minor #4195 [7.3] SetTypeToCastFixer - support PHP 7.3 (kubawerlos)
706
+ * minor #4196 Update website (keradus)
707
+ * minor #4197 [7.3] StrictParamFixer - support PHP 7.3 (kubawerlos)
708
+
709
+ Changelog for v2.13.1
710
+ ---------------------
711
+
712
+ * bug #3977 NoSuperfluousPhpdocTagsFixer - Fix handling of description with variable (julienfalque)
713
+ * bug #4027 PhpdocAnnotationWithoutDotFixer - add failing cases (keradus)
714
+ * bug #4028 PhpdocNoEmptyReturnFixer - handle single line PHPDoc (kubawerlos)
715
+ * bug #4034 PhpUnitTestCaseIndicator - handle anonymous class (kubawerlos)
716
+ * bug #4037 NativeFunctionInvocationFixer - fix function detection (kubawerlos)
717
+ * feature #4019 PhpdocTypesFixer - allow for configuration (keradus)
718
+ * minor #3980 Clarifies allow-risky usage (josephzidell)
719
+ * minor #4016 Bump console component due to it's bug (keradus)
720
+ * minor #4023 Enhancement: Update localheinz/composer-normalize (localheinz)
721
+ * minor #4049 use parent::offset*() methods when moving items around in insertAt() (staabm)
722
+
723
+ Changelog for v2.13.0
724
+ ---------------------
725
+
726
+ * feature #3739 Add MagicMethodCasingFixer (SpacePossum)
727
+ * feature #3812 Add FopenFlagOrderFixer & FopenFlagsFixer (SpacePossum)
728
+ * feature #3826 Add CombineNestedDirnameFixer (gharlan)
729
+ * feature #3833 BinaryOperatorSpacesFixer - Add "no space" fix strategy (SpacePossum)
730
+ * feature #3841 NoAliasFunctionsFixer - add opt in option for ext-mbstring aliasses (SpacePossum)
731
+ * feature #3876 NativeConstantInvocationFixer - add the scope option (stof, keradus)
732
+ * feature #3886 Add PhpUnitMethodCasingFixer (Slamdunk)
733
+ * feature #3907 Add ImplodeCallFixer (kubawerlos)
734
+ * feature #3914 NoUnreachableDefaultArgumentValueFixer - remove `null` for nullable typehints (gharlan, keradus)
735
+ * minor #3813 PhpUnitDedicateAssertFixer - fix "sizeOf" same as "count". (SpacePossum)
736
+ * minor #3873 Add the native_function_invocation fixer in the Symfony:risky ruleset (stof)
737
+ * minor #3979 DX: enable php_unit_method_casing (keradus)
738
+
739
+ Changelog for v2.12.12
740
+ ----------------------
741
+
742
+ * bug #4533 Revert PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus)
743
+ * minor #4264 DX: AutoReview - ensure Travis handle all needed PHP versions (keradus)
744
+ * minor #4524 MethodArgumentSpaceFixerTest - make explicit configuration to prevent fail on configuration change (keradus)
745
+
746
+ Changelog for v2.12.11
747
+ ----------------------
748
+
749
+ * bug #4132 BlankLineAfterNamespaceFixer - do not remove indent, handle comments (kubawerlos)
750
+ * bug #4384 MethodArgumentSpaceFixer - fix for on_multiline:ensure_fully_multiline with trailing comma in function call (kubawerlos)
751
+ * bug #4404 FileLintingIterator - fix current value on end/invalid (SpacePossum)
752
+ * bug #4421 FunctionTypehintSpaceFixer - Ensure single space between type declaration and parameter (localheinz)
753
+ * bug #4436 MethodArgumentSpaceFixer - handle misplaced ) (keradus)
754
+ * bug #4439 NoLeadingImportSlashFixer - Add space if needed (SpacePossum)
755
+ * bug #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
756
+ * bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
757
+ * bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
758
+ * bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
759
+ * minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
760
+ * minor #4412 PHP 7.4 - Tests for support (SpacePossum)
761
+ * minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
762
+ * minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
763
+ * minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
764
+ * minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
765
+ * minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
766
+ * minor #4477 DX: control names of public methods in test's classes (kubawerlos)
767
+ * minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
768
+ * minor #4484 fix typos in README (Sven Ludwig)
769
+ * minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
770
+ * minor #4516 DX: Lock binary SCA tools versions (keradus)
771
+
772
+ Changelog for v2.12.10
773
+ ----------------------
774
+
775
+ * bug #4418 PhpUnitNamespacedFixer - properly translate classes which do not follow translation pattern (ktomk)
776
+ * bug #4419 PhpUnitTestCaseStaticMethodCallsFixer - skip anonymous classes and lambda (SpacePossum)
777
+ * bug #4420 MethodArgumentSpaceFixer - PHP7.3 trailing commas in function calls (SpacePossum)
778
+ * minor #4345 Travis: PHP 7.4 isn't allowed to fail anymore (Slamdunk)
779
+ * minor #4403 LowercaseStaticReferenceFixer - Fix invalid PHP version in example (HypeMC)
780
+ * minor #4425 DX: assertions are static, adjust custom assertions (keradus)
781
+ * minor #4426 DX: handle deprecations of symfony/event-dispatcher:4.3 (keradus)
782
+ * minor #4427 DX: stop using reserved T_FN in code samples (keradus)
783
+
784
+ Changelog for v2.12.9
785
+ ---------------------
786
+
787
+ * bug #4298 NoTrailingWhitespaceInCommentFixer - fix for non-Unix line separators (kubawerlos)
788
+ * bug #4303 FullyQualifiedStrictTypesFixer - Fix the short type detection when a question mark (nullable) is prefixing it. (drupol)
789
+ * bug #4313 SelfAccessorFixer - fix for part qualified class name (kubawerlos, SpacePossum)
790
+ * bug #4314 PhpUnitTestCaseStaticMethodCallsFixer - fix for having property with name as method to update (kubawerlos, SpacePossum)
791
+ * bug #4327 TokensAnalyzer - add concat operator to list of binary operators (SpacePossum)
792
+ * bug #4335 Cache - add indent and line ending to cache signature (dmvdbrugge)
793
+ * bug #4344 VoidReturnFixer - handle yield from (SpacePossum)
794
+ * bug #4346 BracesFixer - Do not pull close tag onto same line as a comment (SpacePossum)
795
+ * bug #4350 StrictParamFixer - Don't detect functions in use statements (bolmstedt)
796
+ * bug #4357 Fix short list syntax detection. (SpacePossum)
797
+ * bug #4365 Fix output escaping of diff for text format when line is not changed (SpacePossum)
798
+ * bug #4370 PhpUnitConstructFixer - Fix handle different casing (SpacePossum)
799
+ * bug #4379 ExplicitStringVariableFixer - add test case for variable as an array key (kubawerlos, Slamdunk)
800
+ * feature #4337 PhpUnitTestCaseStaticMethodCallsFixer - prepare for PHPUnit 8 (kubawerlos)
801
+ * minor #3799 DX: php_unit_test_case_static_method_calls - use default config (keradus)
802
+ * minor #4103 NoExtraBlankLinesFixer - fix candidate detection (SpacePossum)
803
+ * minor #4245 LineEndingFixer - BracesFixer - Priority (dmvdbrugge)
804
+ * minor #4325 Use lowercase mikey179/vfsStream in composer.json (lolli42)
805
+ * minor #4336 Collect coverage with PCOV (kubawerlos)
806
+ * minor #4338 Fix wording (kmvan, kubawerlos)
807
+ * minor #4339 Change BracesFixer to avoid indenting PHP inline braces (alecgeatches)
808
+ * minor #4340 Travis: build against 7.4snapshot instead of nightly (Slamdunk)
809
+ * minor #4351 code grooming (SpacePossum)
810
+ * minor #4353 Add more priority tests (SpacePossum)
811
+ * minor #4364 DX: MethodChainingIndentationFixer - remove unneccesary loop (Sijun Zhu)
812
+ * minor #4366 Unset the auxillary variable $a (GrahamCampbell)
813
+ * minor #4368 Fixed TypeShortNameResolverTest::testResolver (GrahamCampbell)
814
+ * minor #4380 PHP7.4 - Add "str_split" => "mb_str_split" mapping. (SpacePossum)
815
+ * minor #4393 DX: add missing explicit return types (kubawerlos)
816
+
817
+ Changelog for v2.12.8
818
+ ---------------------
819
+
820
+ * minor #4306 DX: Drop HHVM conflict on Composer level to help Composer with HHVM compatibility, we still prevent HHVM on runtime (keradus)
821
+
822
+ Changelog for v2.12.7
823
+ ---------------------
824
+
825
+ * bug #4240 ModernizeTypesCastingFixer - fix for operators with higher precedence (kubawerlos)
826
+ * bug #4254 PhpUnitDedicateAssertFixer - fix for count with additional operations (kubawerlos)
827
+ * bug #4260 Psr0Fixer and Psr4Fixer - fix for multiple classes in file with anonymous class (kubawerlos)
828
+ * bug #4262 FixCommand - fix help (keradus)
829
+ * bug #4276 MethodChainingIndentationFixer, ArrayIndentationFixer - Fix priority issue (dmvdbrugge)
830
+ * bug #4280 MethodArgumentSpaceFixer - Fix method argument alignment (Billz95)
831
+ * bug #4286 IncrementStyleFixer - fix for static statement (kubawerlos)
832
+ * bug #4291 ArrayIndentationFixer - Fix indentation after trailing spaces (julienfalque, keradus)
833
+ * bug #4292 NoSuperfluousPhpdocTagsFixer - Make null only type not considered superfluous (julienfalque)
834
+ * minor #4204 DX: Tokens - do not unregister/register found tokens when collection is not changing (kubawerlos)
835
+ * minor #4235 DX: more specific @param types (kubawerlos)
836
+ * minor #4263 DX: AppVeyor - bump PHP version (keradus)
837
+ * minor #4293 Add official support for PHP 7.3 (keradus)
838
+ * minor #4295 DX: MethodArgumentSpaceFixerTest - fix edge case for handling different line ending when only expected code is provided (keradus)
839
+ * minor #4296 DX: cleanup testing with fixer config (keradus)
840
+ * minor #4299 NativeFunctionInvocationFixer - add array_key_exists (deguif, keradus)
841
+
842
+ Changelog for v2.12.6
843
+ ---------------------
844
+
845
+ * bug #4216 Psr4Fixer - fix for multiple classy elements in file (keradus, kubawerlos)
846
+ * bug #4217 Psr0Fixer - class with anonymous class (kubawerlos)
847
+ * bug #4219 NativeFunctionCasingFixer - handle T_RETURN_REF (kubawerlos)
848
+ * bug #4224 FunctionToConstantFixer - handle T_RETURN_REF (SpacePossum)
849
+ * bug #4229 IsNullFixer - fix parenthesis not closed (guilliamxavier)
850
+ * minor #4198 [7.3] PowToExponentiationFixer - adding to PHP7.3 integration test (kubawerlos)
851
+ * minor #4199 [7.3] MethodChainingIndentationFixer - add tests for PHP 7.3 (kubawerlos)
852
+ * minor #4200 [7.3] ModernizeTypesCastingFixer - support PHP 7.3 (kubawerlos)
853
+ * minor #4201 [7.3] MultilineWhitespaceBeforeSemicolonsFixer - add tests for PHP 7.3 (kubawerlos)
854
+ * minor #4202 [7.3] ErrorSuppressionFixer - support PHP 7.3 (kubawerlos)
855
+ * minor #4205 DX: PhpdocAlignFixer - refactor to use DocBlock (kubawerlos)
856
+ * minor #4206 DX: enable multiline_whitespace_before_semicolons (keradus)
857
+ * minor #4207 [7.3] RandomApiMigrationFixerTest - tests for 7.3 (SpacePossum)
858
+ * minor #4208 [7.3] NativeFunctionCasingFixerTest - tests for 7.3 (SpacePossum)
859
+ * minor #4209 [7.3] PhpUnitStrictFixerTest - tests for 7.3 (SpacePossum)
860
+ * minor #4210 [7.3] PhpUnitConstructFixer - add test for PHP 7.3 (kubawerlos)
861
+ * minor #4211 [7.3] PhpUnitDedicateAssertFixer - support PHP 7.3 (kubawerlos)
862
+ * minor #4214 [7.3] NoUnsetOnPropertyFixerTest - tests for 7.3 (SpacePossum)
863
+ * minor #4222 [7.3] PhpUnitExpectationFixer - support PHP 7.3 (kubawerlos)
864
+ * minor #4223 [7.3] PhpUnitMockFixer - add tests for PHP 7.3 (kubawerlos)
865
+ * minor #4230 [7.3] IsNullFixer - fix trailing comma (guilliamxavier)
866
+ * minor #4232 DX: remove Utils::splitLines (kubawerlos)
867
+ * minor #4234 [7.3] Test that "LITERAL instanceof X" is valid (guilliamxavier)
868
+
869
+ Changelog for v2.12.5
870
+ ---------------------
871
+
872
+ * bug #3968 SelfAccessorFixer - support FQCN (kubawerlos)
873
+ * bug #3974 Psr4Fixer - class with anonymous class (kubawerlos)
874
+ * bug #3987 Run HeaderCommentFixer after NoBlankLinesAfterPhpdocFixer (StanAngeloff)
875
+ * bug #4009 TypeAlternationTransformer - Fix pipes in function call with constants being classified incorrectly (ntzm, SpacePossum)
876
+ * bug #4022 NoUnsetOnPropertyFixer - refactor and bugfixes (kubawerlos)
877
+ * bug #4036 ExplicitStringVariableFixer - fixes for backticks and for 2 variables next to each other (kubawerlos, Slamdunk)
878
+ * bug #4038 CommentToPhpdocFixer - handling nested PHPDoc (kubawerlos)
879
+ * bug #4071 DX: do not insert Token when calling removeLeadingWhitespace/removeTrailingWhitespace from Tokens (kubawerlos)
880
+ * bug #4073 IsNullFixer - fix function detection (kubawerlos)
881
+ * bug #4074 FileFilterIterator - do not filter out files that need fixing (SpacePossum)
882
+ * bug #4076 EregToPregFixer - fix function detection (kubawerlos)
883
+ * bug #4084 MethodChainingIndentation - fix priority with Braces (dmvdbrugge)
884
+ * bug #4099 HeaderCommentFixer - throw exception on invalid header configuration (SpacePossum)
885
+ * bug #4100 PhpdocAddMissingParamAnnotationFixer - Handle variable number of arguments and pass by reference cases (SpacePossum)
886
+ * bug #4101 ReturnAssignmentFixer - do not touch invalid code (SpacePossum)
887
+ * bug #4104 Change transformers order, fixing untransformed T_USE (dmvdbrugge)
888
+ * bug #4107 Preg::split - fix for non-UTF8 subject (ostrolucky, kubawerlos)
889
+ * bug #4109 NoBlankLines*: fix removing lines consisting only of spaces (kubawerlos, keradus)
890
+ * bug #4114 VisibilityRequiredFixer - don't remove comments (kubawerlos)
891
+ * bug #4116 OrderedImportsFixer - fix sorting without any grouping (SpacePossum)
892
+ * bug #4119 PhpUnitNoExpectationAnnotationFixer - fix extracting content from annotation (kubawerlos)
893
+ * bug #4127 LowercaseConstantsFixer - Fix case with properties using constants as their name (srathbone)
894
+ * bug #4134 [7.3] SquareBraceTransformer - nested array destructuring not handled correctly (SpacePossum)
895
+ * bug #4153 PhpUnitFqcnAnnotationFixer - handle only PhpUnit classes (kubawerlos)
896
+ * bug #4169 DirConstantFixer - Fixes for PHP7.3 syntax (SpacePossum)
897
+ * bug #4181 MultilineCommentOpeningClosingFixer - fix handling empty comment (kubawerlos)
898
+ * bug #4186 Tokens - fix removal of leading/trailing whitespace with empty token in collection (kubawerlos)
899
+ * minor #3436 Add a handful of integration tests (BackEndTea)
900
+ * minor #3774 PhpUnitTestClassRequiresCoversFixer - Remove unneeded loop and use phpunit indicator class (BackEndTea, SpacePossum)
901
+ * minor #3778 DX: Throw an exception if FileReader::read fails (ntzm)
902
+ * minor #3916 New ruleset "@PhpCsFixer" (gharlan)
903
+ * minor #4007 Fixes cookbook for fixers (greeflas)
904
+ * minor #4031 Correct FixerOptionBuilder::getOption return type (ntzm)
905
+ * minor #4046 Token - Added fast isset() path to token->equals() (staabm)
906
+ * minor #4047 Token - inline $other->getPrototype() to speedup equals() (staabm, keradus)
907
+ * minor #4048 Tokens - inlined extractTokenKind() call on the hot path (staabm)
908
+ * minor #4069 DX: Add dev-tools directory to gitattributes as export-ignore (alexmanno)
909
+ * minor #4070 Docs: Add link to a VS Code extension in readme (jakebathman)
910
+ * minor #4077 DX: cleanup - NoAliasFunctionsFixer - use FunctionsAnalyzer (kubawerlos)
911
+ * minor #4088 Add Travis test with strict types (kubawerlos)
912
+ * minor #4091 Adjust misleading sentence in CONTRIBUTING.md (ostrolucky)
913
+ * minor #4092 UseTransformer - simplify/optimize (SpacePossum)
914
+ * minor #4095 DX: Use ::class (keradus)
915
+ * minor #4097 DX: namespace casing (kubawerlos)
916
+ * minor #4110 Enhancement: Update localheinz/composer-normalize (localheinz)
917
+ * minor #4115 Changes for upcoming Travis' infra migration (sergeyklay)
918
+ * minor #4122 DX: AppVeyor - Update Composer download link (SpacePossum)
919
+ * minor #4128 DX: cleanup - AbstractFunctionReferenceFixer - use FunctionsAnalyzer (SpacePossum, kubawerlos)
920
+ * minor #4129 Fix: Symfony 4.2 deprecations (kubawerlos)
921
+ * minor #4139 DX: Fix CircleCI (kubawerlos)
922
+ * minor #4143 PhpUnitTestCaseStaticMethodCallsFixer - Add PHPUnit 7.5 new assertions (Slamdunk)
923
+ * minor #4149 [7.3] ArgumentsAnalyzer - PHP7.3 support (SpacePossum)
924
+ * minor #4161 DX: CI - show packages installed via Composer (keradus)
925
+ * minor #4162 DX: Drop symfony/lts (keradus)
926
+ * minor #4166 DX: do not use AbstractFunctionReferenceFixer when no need to (kubawerlos)
927
+ * minor #4171 Fix CircleCI cache (kubawerlos)
928
+ * minor #4173 [7.3] PowToExponentiationFixer - add support for PHP7.3 (SpacePossum)
929
+ * minor #4175 Fixing typo (kubawerlos)
930
+ * minor #4177 CI: Check that tag is matching version of PHP CS Fixer during deployment (keradus)
931
+ * minor #4182 DX: update php-cs-fixer file style (kubawerlos)
932
+ * minor #4187 [7.3] IsNullFixer - support PHP 7.3 (kubawerlos)
933
+ * minor #4188 DX: cleanup (keradus)
934
+ * minor #4189 Travis - add PHP 7.3 job (keradus)
935
+ * minor #4190 Travis CI - fix config (kubawerlos)
936
+ * minor #4194 [7.3] NativeFunctionInvocationFixer - add tests for PHP 7.3 (kubawerlos)
937
+ * minor #4195 [7.3] SetTypeToCastFixer - support PHP 7.3 (kubawerlos)
938
+ * minor #4196 Update website (keradus)
939
+ * minor #4197 [7.3] StrictParamFixer - support PHP 7.3 (kubawerlos)
940
+
941
+ Changelog for v2.12.4
942
+ ---------------------
943
+
944
+ * bug #3977 NoSuperfluousPhpdocTagsFixer - Fix handling of description with variable (julienfalque)
945
+ * bug #4027 PhpdocAnnotationWithoutDotFixer - add failing cases (keradus)
946
+ * bug #4028 PhpdocNoEmptyReturnFixer - handle single line PHPDoc (kubawerlos)
947
+ * bug #4034 PhpUnitTestCaseIndicator - handle anonymous class (kubawerlos)
948
+ * bug #4037 NativeFunctionInvocationFixer - fix function detection (kubawerlos)
949
+ * feature #4019 PhpdocTypesFixer - allow for configuration (keradus)
950
+ * minor #3980 Clarifies allow-risky usage (josephzidell)
951
+ * minor #4016 Bump console component due to it's bug (keradus)
952
+ * minor #4023 Enhancement: Update localheinz/composer-normalize (localheinz)
953
+ * minor #4049 use parent::offset*() methods when moving items around in insertAt() (staabm)
954
+
955
+ Changelog for v2.12.3
956
+ ---------------------
957
+
958
+ * bug #3867 PhpdocAnnotationWithoutDotFixer - Handle trailing whitespaces (kubawerlos)
959
+ * bug #3884 NoSuperfluousPhpdocTagsFixer - handle null in every position (dmvdbrugge, julienfalque)
960
+ * bug #3885 AlignMultilineCommentFixer - ArrayIndentationFixer - Priority (dmvdbrugge)
961
+ * bug #3887 ArrayIndentFixer - Don't indent empty lines (dmvdbrugge)
962
+ * bug #3888 NoExtraBlankLinesFixer - remove blank lines after open tag (kubawerlos)
963
+ * bug #3890 StrictParamFixer - make it case-insensitive (kubawerlos)
964
+ * bug #3895 FunctionsAnalyzer - false positive for constant and function definition (kubawerlos)
965
+ * bug #3908 StrictParamFixer - fix edge case (kubawerlos)
966
+ * bug #3910 FunctionsAnalyzer - fix isGlobalFunctionCall (gharlan)
967
+ * bug #3912 FullyQualifiedStrictTypesFixer - NoSuperfluousPhpdocTagsFixer - adjust priority (dmvdbrugge)
968
+ * bug #3913 TokensAnalyzer - fix isConstantInvocation (gharlan, keradus)
969
+ * bug #3921 TypeAnalysis - Fix iterable not being detected as a reserved type (ntzm)
970
+ * bug #3924 FullyQualifiedStrictTypesFixer - space bug (dmvdbrugge)
971
+ * bug #3937 LowercaseStaticReferenceFixer - Fix "Parent" word in namespace (kubawerlos)
972
+ * bug #3944 ExplicitStringVariableFixer - fix array handling (gharlan)
973
+ * bug #3951 NoSuperfluousPhpdocTagsFixer - do not call strtolower with null (SpacePossum)
974
+ * bug #3954 NoSuperfluousPhpdocTagsFixer - Index invalid or out of range (kubawerlos)
975
+ * bug #3957 NoTrailingWhitespaceFixer - trim space after opening tag (kubawerlos)
976
+ * minor #3798 DX: enable native_function_invocation (keradus)
977
+ * minor #3882 PhpdocAnnotationWithoutDotFixer - Handle empty line in comment (kubawerlos)
978
+ * minor #3889 DX: Cleanup - remove unused variables (kubawerlos, SpacePossum)
979
+ * minor #3891 PhpdocNoEmptyReturnFixer - account for null[] (dmvdbrugge)
980
+ * minor #3892 PhpdocNoEmptyReturnFixer - fix docs (keradus)
981
+ * minor #3897 DX: FunctionsAnalyzer - simplifying return expression (kubawerlos)
982
+ * minor #3903 DX: cleanup - remove special treatment for PHP <5.6 (kubawerlos)
983
+ * minor #3905 DX: Upgrade composer-require-checker to stable version (keradus)
984
+ * minor #3919 Simplify single uses of Token::isGivenKind (ntzm)
985
+ * minor #3920 Docs: Fix typo (ntzm)
986
+ * minor #3940 DX: fix phpdoc parameter type (malukenho)
987
+ * minor #3948 DX: cleanup - remove redundant @param annotations (kubawerlos)
988
+ * minor #3950 Circle CI v2 yml (siad007)
989
+ * minor #3952 DX: AbstractFixerTestCase - drop testing method already provided by trait (keradus)
990
+ * minor #3973 Bump xdebug-handler (keradus)
991
+
992
+ Changelog for v2.12.2
993
+ ---------------------
994
+
995
+ * bug #3823 NativeConstantInvocationFixer - better constant detection (gharlan, SpacePossum, keradus)
996
+ * bug #3832 "yield from" as keyword (SpacePossum)
997
+ * bug #3835 Fix priority between PHPDoc return type fixers (julienfalque, keradus)
998
+ * bug #3839 MethodArgumentSpaceFixer - add empty line incorrectly (SpacePossum)
999
+ * bug #3866 SpaceAfterSemicolonFixer - loop over all tokens (SpacePossum)
1000
+ * minor #3817 Update integrations tests (SpacePossum)
1001
+ * minor #3829 Fix typos in changelog (mnabialek)
1002
+ * minor #3848 Add install/update instructions for PHIVE to the README (SpacePossum)
1003
+ * minor #3877 NamespacesAnalyzer - Optimize performance (stof)
1004
+ * minor #3878 NativeFunctionInvocationFixer - use the NamespacesAnalyzer to remove duplicated code (stof)
1005
+
1006
+ Changelog for v2.12.1
1007
+ ---------------------
1008
+
1009
+ * bug #3808 LowercaseStaticReferenceFixer - Fix constants handling (kubawerlos, keradus)
1010
+ * bug #3815 NoSuperfluousPhpdocTagsFixer - support array/callable type hints (gharlan)
1011
+ * minor #3824 DX: Support PHPUnit 7.2 (keradus)
1012
+ * minor #3825 UX: Provide full diff for code samples (keradus)
1013
+
1014
+ Changelog for v2.12.0
1015
+ ---------------------
1016
+
1017
+ * feature #2577 Add LogicalOperatorsFixer (hkdobrev, keradus)
1018
+ * feature #3060 Add ErrorSuppressionFixer (kubawerlos)
1019
+ * feature #3127 Add NativeConstantInvocationFixer (Slamdunk, keradus)
1020
+ * feature #3223 NativeFunctionInvocationFixer - add namespace scope and include sets (SpacePossum)
1021
+ * feature #3453 PhpdocAlignFixer - add align option (robert.ahmerov)
1022
+ * feature #3476 Add PhpUnitTestCaseStaticMethodCallsFixer (Slamdunk, keradus)
1023
+ * feature #3524 MethodArgumentSpaceFixer - Add ensure_single_line option (julienfalque, keradus)
1024
+ * feature #3534 MultilineWhitespaceBeforeSemicolonsFixer - support static calls (ntzm)
1025
+ * feature #3585 Add ReturnAssignmentFixer (SpacePossum, keradus)
1026
+ * feature #3640 Add PhpdocToReturnTypeFixer (Slamdunk, keradus)
1027
+ * feature #3691 Add PhpdocTrimAfterDescriptionFixer (nobuf, keradus)
1028
+ * feature #3698 YodaStyleFixer - Add always_move_variable option (julienfalque, SpacePossum)
1029
+ * feature #3709 Add SetTypeToCastFixer (SpacePossum)
1030
+ * feature #3724 BlankLineBeforeStatementFixer - Add case and default as options (dmvdbrugge)
1031
+ * feature #3734 Add NoSuperfluousPhpdocTagsFixer (julienfalque)
1032
+ * feature #3735 Add LowercaseStaticReferenceFixer (kubawerlos, SpacePossum)
1033
+ * feature #3737 Add NoUnsetOnPropertyFixer (BackEndTea, SpacePossum)
1034
+ * feature #3745 Add PhpUnitInternalClassFixer (BackEndTea, SpacePossum, keradus)
1035
+ * feature #3766 Add NoBinaryStringFixer (ntzm, SpacePossum, keradus)
1036
+ * feature #3780 ShortScalarCastFixer - Change binary cast to string cast as well (ntzm)
1037
+ * feature #3785 PhpUnitDedicateAssertFixer - fix to assertCount too (SpacePossum)
1038
+ * feature #3802 Convert PhpdocTrimAfterDescriptionFixer into PhpdocTrimConsecutiveBlankLineSeparationFixer (keradus)
1039
+ * minor #3738 ReturnAssignmentFixer description update (kubawerlos)
1040
+ * minor #3761 Application: when run with FUTURE_MODE, error_reporting(-1) is done in entry file instead (keradus)
1041
+ * minor #3772 DX: use PhpUnitTestCaseIndicator->isPhpUnitClass to discover PHPUnit classes (keradus)
1042
+ * minor #3783 CI: Split COLLECT_COVERAGE job (keradus)
1043
+ * minor #3789 DX: ProjectCodeTest.testThatDataProvidersAreCorrectlyNamed - performance optimization (keradus)
1044
+ * minor #3791 DX: Fix collecting code coverage (keradus)
1045
+ * minor #3792 DX: Upgrade DX deps (keradus)
1046
+ * minor #3797 DX: ProjectCodeTest - shall not depends on xdebug/phpdbg anymore (keradus, SpacePossum)
1047
+ * minor #3800 Symfony:risky ruleset: include set_type_to_cast rule (keradus)
1048
+ * minor #3801 NativeFunctionInvocationFixer - fix buggy config validation (keradus, SpacePossum)
1049
+
1050
+ Changelog for v2.11.2
1051
+ ---------------------
1052
+
1053
+ * bug #3233 PhpdocAlignFixer - Fix linebreak inconsistency (SpacePossum, keradus)
1054
+ * bug #3445 Rewrite NoUnusedImportsFixer (kubawerlos, julienfalque)
1055
+ * bug #3528 MethodChainingIndentationFixer - nested params bugfix (Slamdunk)
1056
+ * bug #3547 MultilineWhitespaceBeforeSemicolonsFixer - chained call for a return fix (egircys, keradus)
1057
+ * bug #3597 DeclareStrictTypesFixer - fix bug of removing line (kubawerlos, keradus)
1058
+ * bug #3605 DoctrineAnnotationIndentationFixer - Fix indentation with mixed lines (julienfalque)
1059
+ * bug #3606 PhpdocToCommentFixer - allow multiple ( (SpacePossum)
1060
+ * bug #3614 Refactor PhpdocToCommentFixer - extract checking to CommentsAnalyzer (kubawerlos)
1061
+ * bug #3668 Rewrite NoUnusedImportsFixer (kubawerlos, julienfalque)
1062
+ * bug #3670 PhpdocTypesOrderFixer - Fix ordering of nested generics (julienfalque)
1063
+ * bug #3671 ArrayIndentationFixer - Fix indentation in HTML (julienfalque)
1064
+ * bug #3673 PhpdocScalarFixer - Add "types" option (julienfalque, keradus)
1065
+ * bug #3674 YodaStyleFixer - Fix variable detection for multidimensional arrays (julienfalque, SpacePossum)
1066
+ * bug #3684 PhpUnitStrictFixer - Do not fix if not correct # of arguments are used (SpacePossum)
1067
+ * bug #3708 EspaceImplicitBackslashesFixer - Fix escaping multiple backslashes (julienfalque)
1068
+ * bug #3715 SingleImportPerStatementFixer - Fix handling whitespace before opening brace (julienfalque)
1069
+ * bug #3731 PhpdocIndentFixer - crash fix (SpacePossum)
1070
+ * bug #3755 YodaStyleFixer - handle space between var name and index (SpacePossum)
1071
+ * bug #3765 Fix binary-prefixed double-quoted strings to single quotes (ntzm)
1072
+ * bug #3770 Handle binary flags in heredoc_to_nowdoc (ntzm)
1073
+ * bug #3776 ExplicitStringVariableFixer - handle binary strings (ntzm)
1074
+ * bug #3777 EscapeImplicitBackslashesFixer - handle binary strings (ntzm)
1075
+ * bug #3790 ProcessLinter - don't execute external process without timeout! It can freeze! (keradus)
1076
+ * minor #3188 AppVeyor - add PHP 7.x (keradus, julienfalque)
1077
+ * minor #3451 Update findPHPUnit functions (BackEndTea, SpacePossum, keradus)
1078
+ * minor #3548 Make shell scripts POSIX-compatible (EvgenyOrekhov, keradus)
1079
+ * minor #3568 New Autoreview: Correct option casing (ntzm)
1080
+ * minor #3578 Add interface for deprecated options (julienfalque, keradus)
1081
+ * minor #3590 Use XdebugHandler to avoid perormance penalty (AJenbo, keradus)
1082
+ * minor #3607 PhpdocVarWithoutNameFixer - update sample with @ type (SpacePossum)
1083
+ * minor #3617 Tests stability patches (Tom Klingenberg, keradus)
1084
+ * minor #3622 Docs: Update descriptions (localheinz)
1085
+ * minor #3627 Fix tests execution under phpdbg (keradus)
1086
+ * minor #3629 ProjectFixerConfigurationTest - test rules are sorted (SpacePossum)
1087
+ * minor #3639 DX: use benefits of symfony/force-lowest (keradus)
1088
+ * minor #3641 Update check_trailing_spaces script with upstream (keradus)
1089
+ * minor #3646 Extract SameStringsConstraint and XmlMatchesXsdConstraint (keradus)
1090
+ * minor #3647 DX: Add CachingLinter for tests (keradus)
1091
+ * minor #3649 Update check_trailing_spaces script with upstream (keradus)
1092
+ * minor #3652 CiIntegrationTest - run tests with POSIX sh, not Bash (keradus)
1093
+ * minor #3656 DX: Clean ups (SpacePossum)
1094
+ * minor #3657 update phpunitgoodpractices/traits (SpacePossum, keradus)
1095
+ * minor #3658 DX: Clean ups (SpacePossum)
1096
+ * minor #3660 Fix do not rely on order of fixing in CiIntegrationTest (kubawerlos)
1097
+ * minor #3661 Fix: covers annotation for NoAlternativeSyntaxFixerTest (kubawerlos)
1098
+ * minor #3662 DX: Add Smoke/InstallViaComposerTest (keradus)
1099
+ * minor #3663 DX: During deployment, run all smoke tests and don't allow to skip phar-related ones (keradus)
1100
+ * minor #3665 CircleCI fix (kubawerlos)
1101
+ * minor #3666 Use "set -eu" in shell scripts (EvgenyOrekhov)
1102
+ * minor #3669 Document possible values for subset options (julienfalque, keradus)
1103
+ * minor #3672 Remove SameStringsConstraint and XmlMatchesXsdConstraint (keradus)
1104
+ * minor #3676 RunnerTest - workaround for failing Symfony v2.8.37 (kubawerlos)
1105
+ * minor #3680 DX: Tokens - removeLeadingWhitespace and removeTrailingWhitespace must act in same way (SpacePossum)
1106
+ * minor #3686 README.rst - Format all code-like strings in fixer descriptions (ntzm, keradus)
1107
+ * minor #3692 DX: Optimize tests (julienfalque)
1108
+ * minor #3700 README.rst - Format all code-like strings in fixer description (ntzm)
1109
+ * minor #3701 Use correct casing for "PHPDoc" (ntzm)
1110
+ * minor #3703 DX: InstallViaComposerTest - groom naming (keradus)
1111
+ * minor #3704 DX: Tokens - fix naming (keradus)
1112
+ * minor #3706 Update homebrew installation instructions (ntzm)
1113
+ * minor #3713 Use HTTPS whenever possible (fabpot)
1114
+ * minor #3723 Extend tests coverage (ntzm)
1115
+ * minor #3733 Disable Composer optimized autoloader by default (julienfalque)
1116
+ * minor #3748 PhpUnitStrictFixer - extend risky note (jnvsor)
1117
+ * minor #3749 Make sure PHPUnit is cased correctly in fixers descriptions (kubawerlos)
1118
+ * minor #3768 Improve deprecation messages (julienfalque, SpacePossum)
1119
+ * minor #3773 AbstractFixerWithAliasedOptionsTestCase - don't export (keradus)
1120
+ * minor #3775 Add tests for binary strings in string_line_ending (ntzm)
1121
+ * minor #3779 Misc fixes (ntzm, keradus)
1122
+ * minor #3796 DX: StdinTest - do not assume name of folder, into which project was cloned (keradus)
1123
+ * minor #3803 NoEmptyPhpdocFixer/PhpdocAddMissingParamAnnotationFixer - missing priority test (SpacePossum, keradus)
1124
+ * minor #3804 Cleanup: remove useless constructor comment (kubawerlos)
1125
+ * minor #3805 Cleanup: add missing @param type (kubawerlos, keradus)
1126
+
1127
+ Changelog for v2.11.1
1128
+ ---------------------
1129
+
1130
+ * bug #3626 ArrayIndentationFixer: priority bug with BinaryOperatorSpacesFixer and MethodChainingIndentationFixer (Slamdunk)
1131
+ * bug #3632 DateTimeImmutableFixer bug with adding tokens while iterating over them (kubawerlos)
1132
+ * minor #3478 PhpUnitDedicateAssertFixer: handle static calls (Slamdunk)
1133
+ * minor #3618 DateTimeImmutableFixer - grooming (keradus)
1134
+
1135
+ Changelog for v2.11.0
1136
+ ---------------------
1137
+
1138
+ * feature #3135 Add ArrayIndentationFixer (julienfalque)
1139
+ * feature #3235 Implement StandardizeIncrementFixer (ntzm, SpacePossum)
1140
+ * feature #3260 Add DateTimeImmutableFixer (kubawerlos)
1141
+ * feature #3276 Transform Fully Qualified parameters and return types to short version (veewee, keradus)
1142
+ * feature #3299 SingleQuoteFixer - fix single quote char (Slamdunk)
1143
+ * feature #3340 Verbose LintingException after fixing (Slamdunk)
1144
+ * feature #3423 FunctionToConstantFixer - add fix "get_called_class" option (SpacePossum)
1145
+ * feature #3434 Add PhpUnitSetUpTearDownVisibilityFixer (BackEndTea, SpacePossum)
1146
+ * feature #3442 Add CommentToPhpdocFixer (kubawerlos, keradus)
1147
+ * feature #3448 OrderedClassElementsFixer - added sortAlgorithm option (meridius)
1148
+ * feature #3454 Add StringLineEndingFixer (iluuu1994, SpacePossum, keradus, julienfalque)
1149
+ * feature #3477 PhpUnitStrictFixer: handle static calls (Slamdunk)
1150
+ * feature #3479 PhpUnitConstructFixer: handle static calls (Slamdunk)
1151
+ * feature #3507 Add PhpUnitOrderedCoversFixer (Slamdunk)
1152
+ * feature #3545 Add the 'none' sort algorithm to OrderedImportsFixer (EvgenyOrekhov)
1153
+ * feature #3588 Add NoAlternativeSyntaxFixer (eddmash, keradus)
1154
+ * minor #3414 DescribeCommand: add fixer class when verbose (Slamdunk)
1155
+ * minor #3432 ConfigurationDefinitionFixerInterface - fix deprecation notice (keradus)
1156
+ * minor #3527 Deprecate last param of Tokens::findBlockEnd (ntzm, keradus)
1157
+ * minor #3539 Update UnifiedDiffOutputBuilder from gecko-packages/gecko-diff-output-builder usage after it was incorporated into sebastian/diff (keradus)
1158
+ * minor #3549 DescribeCommand - use our Differ wrapper class, not external one directly (keradus)
1159
+ * minor #3592 Support PHPUnit 7 (keradus)
1160
+ * minor #3619 Travis - extend additional files list (keradus)
1161
+
1162
+ Changelog for v2.10.5
1163
+ ---------------------
1164
+
1165
+ * bug #3344 Fix method chaining indentation in HTML (julienfalque)
1166
+ * bug #3594 ElseifFixer - Bug with alternative syntax (kubawerlos)
1167
+ * bug #3600 StrictParamFixer - Fix issue when functions are imported (ntzm, keradus)
1168
+ * minor #3589 FixerFactoryTest - add missing test (SpacePossum, keradus)
1169
+ * minor #3610 make phar extension optional (Tom Klingenberg, keradus)
1170
+ * minor #3612 Travis - allow for hhvm failures (keradus)
1171
+ * minor #3615 Detect fabbot.io (julienfalque, keradus)
1172
+ * minor #3616 FixerFactoryTest - Don't rely on autovivification (keradus)
1173
+ * minor #3621 FixerFactoryTest - apply CS (keradus)
1174
+
1175
+ Changelog for v2.10.4
1176
+ ---------------------
1177
+
1178
+ * bug #3446 Add PregWrapper (kubawerlos)
1179
+ * bug #3464 IncludeFixer - fix incorrect order of fixing (kubawerlos, SpacePossum)
1180
+ * bug #3496 Bug in Tokens::removeLeadingWhitespace (kubawerlos, SpacePossum, keradus)
1181
+ * bug #3557 AbstractDoctrineAnnotationFixer: edge case bugfix (Slamdunk)
1182
+ * bug #3574 GeneralPhpdocAnnotationRemoveFixer - remove PHPDoc if no content is left (SpacePossum)
1183
+ * minor #3563 DX add missing covers annotations (keradus)
1184
+ * minor #3564 Use ::class keyword when possible (keradus)
1185
+ * minor #3565 Use EventDispatcherInterface instead of EventDispatcher when possible (keradus)
1186
+ * minor #3566 Update PHPUnitGoodPractices\Traits (keradus)
1187
+ * minor #3572 DX: allow for more phpunit-speedtrap versions to support more PHPUnit versions (keradus)
1188
+ * minor #3576 Fix Doctrine Annotation test cases merging (julienfalque)
1189
+ * minor #3577 DoctrineAnnotationArrayAssignmentFixer - Add test case (julienfalque)
1190
+
1191
+ Changelog for v2.10.3
1192
+ ---------------------
1193
+
1194
+ * bug #3504 NoBlankLinesAfterPhpdocFixer - allow blank line before declare statement (julienfalque)
1195
+ * bug #3522 Remove LOCK_EX (SpacePossum)
1196
+ * bug #3560 SelfAccessorFixer is risky (Slamdunk)
1197
+ * minor #3435 Add tests for general_phpdoc_annotation_remove (BackEndTea)
1198
+ * minor #3484 Create Tokens::findBlockStart (ntzm)
1199
+ * minor #3512 Add missing array typehints (ntzm)
1200
+ * minor #3513 Making AppVeyor happy (kubawerlos)
1201
+ * minor #3516 Use null|type instead of ?type in PHPDocs (ntzm)
1202
+ * minor #3518 FixerFactoryTest - Test each priority test file is listed as test (SpacePossum)
1203
+ * minor #3519 Fix typo (SpacePossum)
1204
+ * minor #3520 Fix typos: ran vs. run (SpacePossum)
1205
+ * minor #3521 Use HTTPS (carusogabriel)
1206
+ * minor #3526 Remove gecko dependency (SpacePossum, keradus, julienfalque)
1207
+ * minor #3531 Backport PHPMD to LTS version to ease maintainability (keradus)
1208
+ * minor #3532 Implement Tokens::findOppositeBlockEdge (ntzm)
1209
+ * minor #3533 DX: SCA - drop src/Resources exclusion (keradus)
1210
+ * minor #3538 Don't use third parameter of Tokens::findBlockStart (ntzm)
1211
+ * minor #3542 Enhancement: Run composer-normalize on Travis CI (localheinz, keradus)
1212
+ * minor #3550 AutoReview\FixerFactoryTest - fix missing priority test, mark not fully valid test as incomplete (keradus)
1213
+ * minor #3555 DX: composer.json - drop branch-alias, branch is already following the version (keradus)
1214
+ * minor #3556 DX: Add AutoReview/ComposerTest (keradus)
1215
+ * minor #3559 Don't expose new files under Test namespace (keradus)
1216
+ * minor #3561 PHPUnit5 - add in place missing compat layer for PHPUnit6 (keradus)
1217
+
1218
+ Changelog for v2.10.2
1219
+ ---------------------
1220
+
1221
+ * bug #3502 Fix missing file in export (keradus)
1222
+
1223
+ Changelog for v2.10.1
1224
+ ---------------------
1225
+
1226
+ * bug #3265 YodaFixer - fix problems of block statements followed by ternary statements (weareoutman, keradus, SpacePossum)
1227
+ * bug #3367 NoUnusedImportsFixer - fix comment handling (SpacePossum, keradus)
1228
+ * bug #3438 PhpUnitTestAnnotationFixer: Do not prepend with test if method is test() (localheinz, SpacePossum)
1229
+ * bug #3455 NoEmptyCommentFixer - comment block detection for line ending different than LF (kubawerlos, SpacePossum)
1230
+ * bug #3458 SilencedDeprecationErrorFixer - fix edge cases (kubawerlos)
1231
+ * bug #3466 no_whitespace_in_blank_line and no_blank_lines_after_phpdoc fixers bug (kubawerlos, keradus)
1232
+ * bug #3472 YodaStyleFixer - do not un-Yoda if right side is assignment (SpacePossum, keradus)
1233
+ * bug #3492 PhpdocScalarFixer - Add callback pesudo-type to callable type (carusogabriel)
1234
+ * minor #3354 Added missing types to the PhpdocTypesFixer (GrahamCampbell)
1235
+ * minor #3406 Fix for escaping in README (kubawerlos)
1236
+ * minor #3430 Fix integration test (SpacePossum)
1237
+ * minor #3431 Add missing tests (SpacePossum)
1238
+ * minor #3440 Add a handful of integration tests (BackEndTea)
1239
+ * minor #3443 ConfigurableFixerInterface - not deprecated but TODO (SpacePossum)
1240
+ * minor #3444 IntegrationTest - ensure tests in priority dir are priority tests indeed (keradus)
1241
+ * minor #3494 Add missing PHPDoc param type (ntzm)
1242
+ * minor #3495 Swap @var type and element (ntzm)
1243
+ * minor #3498 NoUnusedImportsFixer - fix deprecation (keradus)
1244
+
1245
+ Changelog for v2.10.0
1246
+ ---------------------
1247
+
1248
+ * feature #3290 Add PhpdocOpeningClosingFixer (Slamdunk, keradus)
1249
+ * feature #3327 Add MultilineWhitespaceBeforeSemicolonsFixer (egircys, keradus)
1250
+ * feature #3351 PhuUnit: migrate getMock to createPartialMock when arguments count is 2 (Slamdunk)
1251
+ * feature #3362 Add BacktickToShellExecFixer (Slamdunk)
1252
+ * minor #3285 PHPUnit - use protective traits (keradus)
1253
+ * minor #3329 ConfigurationResolver - detect deprecated fixers (keradus, SpacePossum)
1254
+ * minor #3343 Tokens - improve block end lookup (keradus)
1255
+ * minor #3360 Adjust Symfony ruleset (keradus)
1256
+ * minor #3361 no_extra_consecutive_blank_lines - rename to no_extra_blank_lines (with BC layer) (keradus)
1257
+ * minor #3363 progress-type - name main option value 'dots' (keradus)
1258
+ * minor #3404 Deprecate "use_yoda_style" in IsNullFixer (kubawerlos, keradus)
1259
+ * minor #3418 ConfigurableFixerInterface, ConfigurationDefinitionFixerInterface - update deprecations (keradus)
1260
+ * minor #3419 Dont use deprecated fixer in itest (keradus)
1261
+
1262
+ Changelog for v2.9.3
1263
+ --------------------
1264
+
1265
+ * bug #3502 Fix missing file in export (keradus)
1266
+
1267
+ Changelog for v2.9.2
1268
+ --------------------
1269
+
1270
+ * bug #3265 YodaFixer - fix problems of block statements followed by ternary statements (weareoutman, keradus, SpacePossum)
1271
+ * bug #3367 NoUnusedImportsFixer - fix comment handling (SpacePossum, keradus)
1272
+ * bug #3438 PhpUnitTestAnnotationFixer: Do not prepend with test if method is test() (localheinz, SpacePossum)
1273
+ * bug #3455 NoEmptyCommentFixer - comment block detection for line ending different than LF (kubawerlos, SpacePossum)
1274
+ * bug #3458 SilencedDeprecationErrorFixer - fix edge cases (kubawerlos)
1275
+ * bug #3466 no_whitespace_in_blank_line and no_blank_lines_after_phpdoc fixers bug (kubawerlos, keradus)
1276
+ * bug #3472 YodaStyleFixer - do not un-Yoda if right side is assignment (SpacePossum, keradus)
1277
+ * minor #3354 Added missing types to the PhpdocTypesFixer (GrahamCampbell)
1278
+ * minor #3406 Fix for escaping in README (kubawerlos)
1279
+ * minor #3430 Fix integration test (SpacePossum)
1280
+ * minor #3431 Add missing tests (SpacePossum)
1281
+ * minor #3440 Add a handful of integration tests (BackEndTea)
1282
+ * minor #3444 IntegrationTest - ensure tests in priority dir are priority tests indeed (keradus)
1283
+ * minor #3494 Add missing PHPDoc param type (ntzm)
1284
+ * minor #3495 Swap @var type and element (ntzm)
1285
+ * minor #3498 NoUnusedImportsFixer - fix deprecation (keradus)
1286
+
1287
+ Changelog for v2.9.1
1288
+ --------------------
1289
+
1290
+ * bug #3298 DiffConsoleFormatter - fix output escaping. (SpacePossum)
1291
+ * bug #3312 PhpUnitTestAnnotationFixer: Only remove prefix if it really is a prefix (localheinz)
1292
+ * bug #3318 SingleLineCommentStyleFixer - fix closing tag inside comment causes an error (kubawerlos)
1293
+ * bug #3334 ExplicitStringVariableFixer: handle parsed array and object (Slamdunk)
1294
+ * bug #3337 BracesFixer: nowdoc bug on template files (Slamdunk)
1295
+ * bug #3349 Fix stdin handling and add tests for it (keradus)
1296
+ * bug #3350 PhpUnitNoExpectationAnnotationFixer - fix handling of multiline expectedExceptionMessage annotation (Slamdunk)
1297
+ * bug #3352 FunctionToConstantFixer - bugfix for get_class with leading backslash (kubawerlos)
1298
+ * bug #3359 BracesFixer - handle comment for content outside of given block (keradus)
1299
+ * bug #3371 IsNullFixer must be run before YodaStyleFixer (kubawerlos)
1300
+ * bug #3373 PhpdocAlignFixer - Fix removing of everything after @ when there is a space after the @ (ntzm)
1301
+ * bug #3415 FileFilterIterator - input checks and utests (SpacePossum, keradus)
1302
+ * bug #3420 SingleLineCommentStyleFixer - fix 'strpos() expects parameter 1 to be string, boolean given' (keradus, SpacePossum)
1303
+ * bug #3428 Fix archive analysing (keradus)
1304
+ * bug #3429 Fix archive analysing (keradus)
1305
+ * minor #3137 PHPUnit - use common base class (keradus)
1306
+ * minor #3311 FinalInternalClassFixer - fix typo (localheinz)
1307
+ * minor #3328 Remove duplicated space in exceptions (keradus)
1308
+ * minor #3342 PhpUnitDedicateAssertFixer - Remove unexistent method is_boolean (carusogabriel)
1309
+ * minor #3345 StdinFileInfo - fix __toString (keradus)
1310
+ * minor #3346 StdinFileInfo - drop getContents (keradus)
1311
+ * minor #3347 DX: reapply newest CS (keradus)
1312
+ * minor #3365 COOKBOOK-FIXERS.md - update to provide definition instead of description (keradus)
1313
+ * minor #3370 AbstractFixer - FQCN in in exceptions (Slamdunk)
1314
+ * minor #3372 ProjectCodeTest - fix comment (keradus)
1315
+ * minor #3393 Method call typos (Slamdunk, keradus)
1316
+ * minor #3402 Always provide delimiter to `preg_quote` calls (ntzm)
1317
+ * minor #3403 Remove unused import (ntzm)
1318
+ * minor #3405 Fix `fopen` mode (ntzm)
1319
+ * minor #3407 CombineConsecutiveIssetsFixer - Improve description (kubawerlos)
1320
+ * minor #3408 Improving fixers descriptions (kubawerlos)
1321
+ * minor #3409 move itests from misc to priority (keradus)
1322
+ * minor #3411 Better type hinting for AbstractFixerTestCase::$fixer (kubawerlos)
1323
+ * minor #3412 Convert `strtolower` inside `strpos` to just `stripos` (ntzm)
1324
+ * minor #3421 DX: Use ::class (keradus)
1325
+ * minor #3424 AbstractFixerTest: fix expectException arguments (Slamdunk, keradus)
1326
+ * minor #3425 FixerFactoryTest - test that priority pair fixers have itest (keradus, SpacePossum)
1327
+ * minor #3427 ConfigurationResolver: fix @return annotation (Slamdunk)
1328
+
1329
+ Changelog for v2.9.0
1330
+ --------------------
1331
+
1332
+ * feature #3063 Method chaining indentation fixer (boliev, julienfalque)
1333
+ * feature #3076 Add ExplicitStringVariableFixer (Slamdunk, keradus)
1334
+ * feature #3098 MethodSeparationFixer - add class elements separation options (SpacePossum, keradus)
1335
+ * feature #3155 Add EscapeImplicitBackslashesFixer (Slamdunk)
1336
+ * feature #3164 Add ExplicitIndirectVariableFixer (Slamdunk, keradus)
1337
+ * feature #3183 FinalInternalClassFixer introduction (keradus, SpacePossum)
1338
+ * feature #3187 StaticLambdaFixer - introduction (SpacePossum, keradus)
1339
+ * feature #3209 PhpdocAlignFixer - Make @method alignable (ntzm)
1340
+ * feature #3275 Add PhpUnitTestAnnotationFixer (BackEndTea, keradus)
1341
+
1342
+ Changelog for v2.8.4
1343
+ --------------------
1344
+
1345
+ * bug #3281 SelfAccessorFixer - stop modifying traits (kubawerlos)
1346
+ * minor #3195 Add self-update command test (julienfalque)
1347
+ * minor #3287 FileCacheManagerTest - drop duplicated line (keradus)
1348
+ * minor #3292 PHPUnit - set memory limit (veewee)
1349
+ * minor #3306 Token - better input validation (keradus)
1350
+ * minor #3310 Upgrade PHP Coveralls (keradus)
1351
+
1352
+ Changelog for v2.8.3
1353
+ --------------------
1354
+
1355
+ * bug #3173 SimplifiedNullReturnFixer - handle nullable return types (Slamdunk)
1356
+ * bug #3268 PhpUnitNoExpectationAnnotationFixer - add case with backslashes (keradus, Slamdunk)
1357
+ * bug #3272 PhpdocTrimFixer - unicode support (SpacePossum)
1358
+
1359
+ Changelog for v2.8.2
1360
+ --------------------
1361
+
1362
+ * bug #3225 PhpdocTrimFixer - Fix handling of lines without leading asterisk (julienfalque)
1363
+ * bug #3241 NoExtraConsecutiveBlankLinesFixer - do not crash on ^M LF only (SpacePossum)
1364
+ * bug #3242 PhpUnitNoExpectationAnnotationFixer - fix ' handling (keradus)
1365
+ * bug #3243 PhpUnitExpectationFixer - don't create ->expectExceptionMessage(null) (keradus)
1366
+ * bug #3244 PhpUnitNoExpectationAnnotationFixer - expectation extracted from annotation shall be separated from rest of code with one blank line (keradus)
1367
+ * bug #3259 PhpUnitNamespacedFixer - fix isCandidate to not rely on class declaration (keradus)
1368
+ * bug #3261 PhpUnitNamespacedFixer - properly fix next usage of already fixed class (keradus)
1369
+ * bug #3262 ToolInfo - support installation by branch as well (keradus)
1370
+ * bug #3263 NoBreakCommentFixer - Fix handling comment text with PCRE characters (julienfalque)
1371
+ * bug #3266 PhpUnitConstructFixer - multiple asserts bug (kubawerlos)
1372
+ * minor #3239 Improve contributing guide and issue template (julienfalque)
1373
+ * minor #3246 Make ToolInfo methods non-static (julienfalque)
1374
+ * minor #3249 PhpUnitNoExpectationAnnotationFixerTest - fix hidden conflict (keradus)
1375
+ * minor #3250 Travis: fail early, spare resources, save the Earth (Slamdunk, keradus)
1376
+ * minor #3251 Create Title for config file docs section (IanEdington)
1377
+ * minor #3254 AutoReview/FixerFactoryTest::testFixersPriority: verbose assertion message (Slamdunk)
1378
+ * minor #3255 IntegrationTest: output exception stack trace (Slamdunk)
1379
+ * minor #3257 README.rst - Fixed bullet list formatting (moebrowne)
1380
+
1381
+ Changelog for v2.8.1
1382
+ --------------------
1383
+
1384
+ * bug #3199 TokensAnalyzer - getClassyElements (SpacePossum)
1385
+ * bug #3208 BracesFixer - Fix for instantiation in control structures (julienfalque, SpacePossum)
1386
+ * bug #3215 BinaryOperatorSpacesFixer - Fix spaces around multiple exception catching (|) (ntzm)
1387
+ * bug #3216 AbstractLinesBeforeNamespaceFixer - add min. and max. option, not only single target count (SpacePossum)
1388
+ * bug #3217 TokenizerLinter - fix lack of linting when code is cached (SpacePossum, keradus)
1389
+ * minor #3200 Skip slow test when Xdebug is loaded (julienfalque)
1390
+ * minor #3211 Use udiff format in CI (julienfalque)
1391
+ * minor #3212 Handle rulesets unknown to fabbot.io (julienfalque)
1392
+ * minor #3219 Normalise references to GitHub in docs (ntzm)
1393
+ * minor #3226 Remove unused imports (ntzm)
1394
+ * minor #3231 Fix typos (ntzm)
1395
+ * minor #3234 Simplify Cache\Signature::equals (ntzm)
1396
+ * minor #3237 UnconfigurableFixer - use only LF (keradus)
1397
+ * minor #3238 AbstractFixerTest - fix @cover annotation (keradus)
1398
+
1399
+ Changelog for v2.8.0
1400
+ --------------------
1401
+
1402
+ * feature #3065 Add IncrementStyleFixer (kubawerlos)
1403
+ * feature #3119 Feature checkstyle reporter (K-Phoen)
1404
+ * feature #3162 Add udiff as diff format (SpacePossum, keradus)
1405
+ * feature #3170 Add CompactNullableTypehintFixer (jfcherng)
1406
+ * feature #3189 Add PHP_CS_FIXER_FUTURE_MODE env (keradus)
1407
+ * feature #3201 Add PHPUnit Migration rulesets and fixers (keradus)
1408
+ * minor #3149 AbstractProxyFixer - Support multiple proxied fixers (julienfalque)
1409
+ * minor #3160 Add DeprecatedFixerInterface (kubawerlos)
1410
+ * minor #3185 IndentationTypeFixerTest - clean up (SpacePossum, keradus)
1411
+ * minor #3198 Cleanup: add test that there is no deprecated fixer in rule set (kubawerlos)
1412
+
1413
+ Changelog for v2.7.5
1414
+ --------------------
1415
+
1416
+ * bug #3225 PhpdocTrimFixer - Fix handling of lines without leading asterisk (julienfalque)
1417
+ * bug #3241 NoExtraConsecutiveBlankLinesFixer - do not crash on ^M LF only (SpacePossum)
1418
+ * bug #3262 ToolInfo - support installation by branch as well (keradus)
1419
+ * bug #3263 NoBreakCommentFixer - Fix handling comment text with PCRE characters (julienfalque)
1420
+ * bug #3266 PhpUnitConstructFixer - multiple asserts bug (kubawerlos)
1421
+ * minor #3239 Improve contributing guide and issue template (julienfalque)
1422
+ * minor #3246 Make ToolInfo methods non-static (julienfalque)
1423
+ * minor #3250 Travis: fail early, spare resources, save the Earth (Slamdunk, keradus)
1424
+ * minor #3251 Create Title for config file docs section (IanEdington)
1425
+ * minor #3254 AutoReview/FixerFactoryTest::testFixersPriority: verbose assertion message (Slamdunk)
1426
+ * minor #3255 IntegrationTest: output exception stack trace (Slamdunk)
1427
+
1428
+ Changelog for v2.7.4
1429
+ --------------------
1430
+
1431
+ * bug #3199 TokensAnalyzer - getClassyElements (SpacePossum)
1432
+ * bug #3208 BracesFixer - Fix for instantiation in control structures (julienfalque, SpacePossum)
1433
+ * bug #3215 BinaryOperatorSpacesFixer - Fix spaces around multiple exception catching (|) (ntzm)
1434
+ * bug #3216 AbstractLinesBeforeNamespaceFixer - add min. and max. option, not only single target count (SpacePossum)
1435
+ * bug #3217 TokenizerLinter - fix lack of linting when code is cached (SpacePossum, keradus)
1436
+ * minor #3200 Skip slow test when Xdebug is loaded (julienfalque)
1437
+ * minor #3219 Normalise references to GitHub in docs (ntzm)
1438
+ * minor #3226 Remove unused imports (ntzm)
1439
+ * minor #3231 Fix typos (ntzm)
1440
+ * minor #3234 Simplify Cache\Signature::equals (ntzm)
1441
+ * minor #3237 UnconfigurableFixer - use only LF (keradus)
1442
+ * minor #3238 AbstractFixerTest - fix @cover annotation (keradus)
1443
+
1444
+ Changelog for v2.7.3
1445
+ --------------------
1446
+
1447
+ * bug #3114 SelfAccessorFixer - Fix type declarations replacement (julienfalque)
1448
+
1449
+ Changelog for v2.7.2
1450
+ --------------------
1451
+
1452
+ * bug #3062 BraceClassInstantiationTransformer - Fix instantiation inside method call braces case (julienfalque, keradus)
1453
+ * bug #3083 SingleBlankLineBeforeNamespaceFixer - Fix handling namespace right after opening tag (mlocati)
1454
+ * bug #3109 SwitchCaseSemicolonToColonFixer - Fix bug with nested constructs (SpacePossum)
1455
+ * bug #3117 Multibyte character in array key makes alignment incorect (kubawerlos)
1456
+ * bug #3123 Cache - File permissions (SpacePossum)
1457
+ * bug #3138 NoHomoglyphNamesFixer - fix crash on non-ascii but not mapped either (SpacePossum)
1458
+ * bug #3172 IndentationTypeFixer - do not touch whitespace that is not indentation (SpacePossum)
1459
+ * bug #3176 NoMultilineWhitespaceBeforeSemicolonsFixer - SpaceAfterSemicolonFixer - priority fix (SpacePossum)
1460
+ * bug #3193 TokensAnalyzer::getClassyElements - sort result before returning (SpacePossum)
1461
+ * bug #3196 SelfUpdateCommand - fix exit status when can't determine newest version (julienfalque)
1462
+ * minor #3107 ConfigurationResolver - improve error message when rule is not found (SpacePossum)
1463
+ * minor #3113 Add WordMatcher (keradus)
1464
+ * minor #3128 README: remove deprecated rule from CLI examples (chteuchteu)
1465
+ * minor #3133 Unify Reporter tests (keradus)
1466
+ * minor #3134 Allow Symfony 4 (keradus, garak)
1467
+ * minor #3136 PHPUnit - call hooks from parent class as well (keradus)
1468
+ * minor #3141 Unify description of deprecated fixer (kubawerlos)
1469
+ * minor #3144 PhpUnitDedicateAssertFixer - Sort map and array by function name (localheinz)
1470
+ * minor #3145 misc - Typo (localheinz)
1471
+ * minor #3150 Fix CircleCI (julienfalque)
1472
+ * minor #3151 Update gitattributes to ignore next file (keradus)
1473
+ * minor #3156 Update php-coveralls (keradus)
1474
+ * minor #3166 README - add link to new gitter channel. (SpacePossum)
1475
+ * minor #3174 Update UPGRADE.md (vitek-rostislav)
1476
+ * minor #3180 Fix usage of static variables (kubawerlos)
1477
+ * minor #3182 Add support for PHPUnit 6, drop PHPUnit 4 (keradus)
1478
+ * minor #3184 Code grooming - sort content of arrays (keradus)
1479
+ * minor #3191 Travis - add nightly build to allow_failures due to Travis issues (keradus)
1480
+ * minor #3197 DX groom CS (keradus)
1481
+
1482
+ Changelog for v2.7.1
1483
+ --------------------
1484
+
1485
+ * bug #3115 NoUnneededFinalMethodFixer - fix edge case (Slamdunk)
1486
+
1487
+ Changelog for v2.7.0
1488
+ --------------------
1489
+
1490
+ * feature #2573 BinaryOperatorSpaces reworked (SpacePossum, keradus)
1491
+ * feature #3073 SpaceAfterSemicolonFixer - Add option to remove space in empty for expressions (julienfalque)
1492
+ * feature #3089 NoAliasFunctionsFixer - add imap aliases (Slamdunk)
1493
+ * feature #3093 NoUnneededFinalMethodFixer - Remove final keyword from private methods (localheinz, keradus)
1494
+ * minor #3068 Symfony:risky ruleset - add no_homoglyph_names (keradus)
1495
+ * minor #3074 [IO] Replace Diff with fork version (SpacePossum)
1496
+
1497
+ Changelog for v2.6.1
1498
+ --------------------
1499
+
1500
+ * bug #3052 Fix false positive warning about paths overridden by provided as command arguments (kubawerlos)
1501
+ * bug #3053 CombineConsecutiveIssetsFixer - fix priority (SpacePossum)
1502
+ * bug #3058 IsNullFixer - fix whitespace handling (roukmoute)
1503
+ * bug #3069 MethodArgumentSpaceFixer - new test case (keradus)
1504
+ * bug #3072 IsNullFixer - fix non_yoda_style edge case (keradus)
1505
+ * bug #3088 Drop dedicated Phar stub (keradus)
1506
+ * bug #3100 NativeFunctionInvocationFixer - Fix test if previous token is already namespace separator (SpacePossum)
1507
+ * bug #3104 DoctrineAnnotationIndentationFixer - Fix str_repeat() error (julienfalque)
1508
+ * minor #3038 Support PHP 7.2 (SpacePossum, keradus)
1509
+ * minor #3064 Fix couple of typos (KKSzymanowski)
1510
+ * minor #3070 YodaStyleFixer - Clarify configuration parameters (SteveJobzniak)
1511
+ * minor #3078 ConfigurationResolver - hide context while including config file (keradus)
1512
+ * minor #3080 Direct function call instead of by string (kubawerlos)
1513
+ * minor #3085 CiIntegrationTest - skip when no git is available (keradus)
1514
+ * minor #3087 phar-stub.php - allow PHP 7.2 (keradus)
1515
+ * minor #3092 .travis.yml - fix matrix for PHP 7.1 (keradus)
1516
+ * minor #3094 NoUnneededFinalMethodFixer - Add test cases (julienfalque)
1517
+ * minor #3111 DoctrineAnnotationIndentationFixer - Restore test case (julienfalque)
1518
+
1519
+ Changelog for v2.6.0
1520
+ --------------------
1521
+
1522
+ * bug #3039 YodaStyleFixer - Fix echo case (SpacePossum, keradus)
1523
+ * feature #2446 Add YodaStyleFixer (SpacePossum)
1524
+ * feature #2940 Add NoHomoglyphNamesFixer (mcfedr, keradus)
1525
+ * feature #3012 Add CombineConsecutiveIssetsFixer (SpacePossum)
1526
+ * minor #3037 Update SF rule set (SpacePossum)
1527
+
1528
+ Changelog for v2.5.1
1529
+ --------------------
1530
+
1531
+ * bug #3002 Bugfix braces (mnabialek)
1532
+ * bug #3010 Fix handling of Github releases (julienfalque, keradus)
1533
+ * bug #3015 Fix exception arguments (julienfalque)
1534
+ * bug #3016 Verify phar file (keradus)
1535
+ * bug #3021 Risky rules cleanup (kubawerlos)
1536
+ * bug #3023 RandomApiMigrationFixer - "rand();" to "random_int(0, getrandmax());" fixing (SpacePossum)
1537
+ * bug #3024 ConfigurationResolver - Handle empty "rules" value (SpacePossum, keradus)
1538
+ * bug #3031 IndentationTypeFixer - fix handling tabs in indented comments (keradus)
1539
+ * minor #2999 Notice when paths from config file are overridden by command arguments (julienfalque, keradus)
1540
+ * minor #3007 Add PHP 7.2 to Travis build matrix (Jean85)
1541
+ * minor #3009 CiIntegrationTest - run local (SpacePossum)
1542
+ * minor #3013 Adjust phpunit configuration (localheinz)
1543
+ * minor #3017 Fix: Risky tests (localheinz)
1544
+ * minor #3018 Fix: Make sure that data providers are named correctly (localheinz, keradus)
1545
+ * minor #3032 .php_cs.dist - handling UnexpectedValueException (keradus)
1546
+ * minor #3033 Use ::class (keradus)
1547
+ * minor #3034 Follow newest CS (keradus)
1548
+ * minor #3036 Drop not existing Standalone group from PHPUnit configuration and duplicated internal tags (keradus)
1549
+ * minor #3042 Update gitter address (keradus)
1550
+
1551
+ Changelog for v2.5.0
1552
+ --------------------
1553
+
1554
+ * feature #2770 DoctrineAnnotationSpaces - split assignments options (julienfalque)
1555
+ * feature #2843 Add estimating-max progress output type (julienfalque)
1556
+ * feature #2885 Add NoSuperfluousElseifFixer (julienfalque)
1557
+ * feature #2929 Add NoUnneededCurlyBracesFixer (SpacePossum)
1558
+ * feature #2944 FunctionToConstantFixer - handle get_class() -> __CLASS__ as well (SpacePossum)
1559
+ * feature #2953 BlankLineBeforeStatementFixer - Add more statements (localheinz, keradus)
1560
+ * feature #2972 Add NoUnneededFinalMethodFixer (Slamdunk, keradus)
1561
+ * feature #2992 Add Doctrine Annotation ruleset (julienfalque)
1562
+ * minor #2926 Token::getNameForId (SpacePossum)
1563
+
1564
+ Changelog for v2.4.2
1565
+ --------------------
1566
+
1567
+ * bug #3002 Bugfix braces (mnabialek)
1568
+ * bug #3010 Fix handling of Github releases (julienfalque, keradus)
1569
+ * bug #3015 Fix exception arguments (julienfalque)
1570
+ * bug #3016 Verify phar file (keradus)
1571
+ * bug #3021 Risky rules cleanup (kubawerlos)
1572
+ * bug #3023 RandomApiMigrationFixer - "rand();" to "random_int(0, getrandmax());" fixing (SpacePossum)
1573
+ * bug #3024 ConfigurationResolver - Handle empty "rules" value (SpacePossum, keradus)
1574
+ * bug #3031 IndentationTypeFixer - fix handling tabs in indented comments (keradus)
1575
+ * minor #2999 Notice when paths from config file are overridden by command arguments (julienfalque, keradus)
1576
+ * minor #3007 Add PHP 7.2 to Travis build matrix (Jean85)
1577
+ * minor #3009 CiIntegrationTest - run local (SpacePossum)
1578
+ * minor #3013 Adjust phpunit configuration (localheinz)
1579
+ * minor #3017 Fix: Risky tests (localheinz)
1580
+ * minor #3018 Fix: Make sure that data providers are named correctly (localheinz, keradus)
1581
+ * minor #3032 .php_cs.dist - handling UnexpectedValueException (keradus)
1582
+ * minor #3033 Use ::class (keradus)
1583
+ * minor #3034 Follow newest CS (keradus)
1584
+ * minor #3036 Drop not existing Standalone group from PHPUnit configuration and duplicated internal tags (keradus)
1585
+ * minor #3042 Update gitter address (keradus)
1586
+
1587
+ Changelog for v2.4.1
1588
+ --------------------
1589
+
1590
+ * bug #2925 Improve CI integration suggestion (julienfalque)
1591
+ * bug #2928 TokensAnalyzer::getClassyElements - Anonymous class support (SpacePossum)
1592
+ * bug #2931 Psr0Fixer, Psr4Fixer - ignore "new class" syntax (dg, keradus)
1593
+ * bug #2934 Config - fix handling rule without value (keradus, SpacePossum)
1594
+ * bug #2939 NoUnusedImportsFixer - Fix extra blank line (julienfalque)
1595
+ * bug #2941 PHP 7.2 - Group imports with trailing comma support (SpacePossum, julienfalque)
1596
+ * bug #2954 NoBreakCommentFixer - Disable case sensitivity (julienfalque)
1597
+ * bug #2959 MethodArgumentSpaceFixer - Skip body of fixed function (greg0ire)
1598
+ * bug #2984 AlignMultilineCommentFixer - handle uni code (SpacePossum)
1599
+ * bug #2987 Fix incorrect indentation of comments in `braces` fixer (rob006)
1600
+ * minor #2924 Add missing Token deprecations (julienfalque)
1601
+ * minor #2927 WhiteSpaceConfig - update message copy and more strict tests (SpacePossum, keradus)
1602
+ * minor #2930 Trigger website build (keradus)
1603
+ * minor #2932 Integrate CircleCI (keradus, aidantwoods)
1604
+ * minor #2933 ProcessLinterTest - Ensure Windows test only runs on Windows, add a Mac test execution (aidantwoods)
1605
+ * minor #2935 special handling of fabbot.io service if it's using too old PHP CS Fixer version (keradus)
1606
+ * minor #2937 Travis: execute 5.3 job on precise (keradus)
1607
+ * minor #2938 Tests fix configuration of project (SpacePossum, keradus)
1608
+ * minor #2943 FunctionToConstantFixer - test with diff. arguments than fixable (SpacePossum)
1609
+ * minor #2945 BlankLineBeforeStatementFixerTest - Fix covered class (julienfalque)
1610
+ * minor #2946 Detect extra old installations (keradus)
1611
+ * minor #2947 Test suggested CI integration (keradus)
1612
+ * minor #2951 AccessibleObject - remove most of usage (keradus)
1613
+ * minor #2952 BlankLineBeforeStatementFixer - Reference fixer instead of test class (localheinz)
1614
+ * minor #2955 Travis - stop using old TASK_SCA residue (keradus)
1615
+ * minor #2968 AssertTokensTrait - don't use AccessibleObject (keradus)
1616
+ * minor #2969 Shrink down AccessibleObject usage (keradus)
1617
+ * minor #2982 TrailingCommaInMultilineArrayFixer - simplify isMultilineArray condition (TomasVotruba)
1618
+ * minor #2989 CiIntegrationTest - fix min supported PHP versions (keradus)
1619
+
1620
+ Changelog for v2.4.0
1621
+ --------------------
1622
+
1623
+ * bug #2880 NoBreakCommentFixer - fix edge case (julienfalque)
1624
+ * bug #2900 VoidReturnFixer - handle functions containing anonymous functions/classes (bendavies, keradus)
1625
+ * bug #2902 Fix test classes constructor (julienfalque)
1626
+ * feature #2384 Add BlankLineBeforeStatementFixer (localheinz, keradus, SpacePossum)
1627
+ * feature #2440 MethodArgumentSpaceFixer - add ensure_fully_multiline option (greg0ire)
1628
+ * feature #2649 PhpdocAlignFixer - make fixer configurable (ntzm)
1629
+ * feature #2664 Add DoctrineAnnotationArrayAssignmentFixer (julienfalque)
1630
+ * feature #2667 Add NoBreakCommentFixer (julienfalque)
1631
+ * feature #2684 BracesFixer - new options for braces position after control structures and anonymous constructs (aidantwoods, keradus)
1632
+ * feature #2701 NoExtraConsecutiveBlankLinesFixer - Add more configuration options related to switch statements (SpacePossum)
1633
+ * feature #2740 Add VoidReturnFixer (mrmark)
1634
+ * feature #2765 DoctrineAnnotationIndentationFixer - add option to indent mixed lines (julienfalque)
1635
+ * feature #2815 NonPrintableCharacterFixer - Add option to replace with escape sequences (julienfalque, keradus)
1636
+ * feature #2822 Add NoNullPropertyInitializationFixer (ntzm, julienfalque, SpacePossum)
1637
+ * feature #2825 Add PhpdocTypesOrderFixer (julienfalque, keradus)
1638
+ * feature #2856 CastSpacesFixer - add space option (kubawerlos, keradus)
1639
+ * feature #2857 Add AlignMultilineCommentFixer (Slamdunk, keradus)
1640
+ * feature #2866 Add SingleLineCommentStyleFixer, deprecate HashToSlashCommentFixer (Slamdunk, keradus)
1641
+ * minor #2773 Travis - use stages (keradus)
1642
+ * minor #2794 Drop HHVM support (keradus, julienfalque)
1643
+ * minor #2801 ProjectCodeTest - Fix typo in deprecation message (SpacePossum)
1644
+ * minor #2818 Token become immutable, performance optimizations (keradus)
1645
+ * minor #2877 Fix PHPMD report (julienfalque)
1646
+ * minor #2894 NonPrintableCharacterFixer - fix handling required PHP version on PHPUnit 4.x (keradus)
1647
+ * minor #2921 InvalidForEnvFixerConfigurationException - fix handling in tests on 2.4 line (keradus)
1648
+
1649
+ Changelog for v2.3.3
1650
+ --------------------
1651
+
1652
+ * bug #2807 NoUselessElseFixer - Fix detection of conditional block (SpacePossum)
1653
+ * bug #2809 Phar release - fix readme generation (SpacePossum, keradus)
1654
+ * bug #2827 MethodArgumentSpaceFixer - Always remove trailing spaces (julienfalque)
1655
+ * bug #2835 SelfAcessorFixer - class property fix (mnabialek)
1656
+ * bug #2848 PhpdocIndentFixer - fix edge case with inline phpdoc (keradus)
1657
+ * bug #2849 BracesFixer - Fix indentation issues with comments (julienfalque)
1658
+ * bug #2851 Tokens - ensureWhitespaceAtIndex (GrahamCampbell, SpacePossum)
1659
+ * bug #2854 NoLeadingImportSlashFixer - Removing leading slash from import even when in global space (kubawerlos)
1660
+ * bug #2858 Support generic types (keradus)
1661
+ * bug #2869 Fix handling required configuration (keradus)
1662
+ * bug #2881 NoUnusedImportsFixer - Bug when trying to insert empty token (GrahamCampbell, keradus)
1663
+ * bug #2882 DocBlock\Annotation - Fix parsing of collections with multiple key types (julienfalque)
1664
+ * bug #2886 NoSpacesInsideParenthesisFixer - Do not remove whitespace if next token is comment (SpacePossum)
1665
+ * bug #2888 SingleImportPerStatementFixer - Add support for function and const (SpacePossum)
1666
+ * bug #2901 Add missing files to archive files (keradus)
1667
+ * bug #2914 HeredocToNowdocFixer - works with CRLF line ending (dg)
1668
+ * bug #2920 RuleSet - Update deprecated configuration of fixers (SpacePossum, keradus)
1669
+ * minor #1531 Update docs for few generic types (keradus)
1670
+ * minor #2793 COOKBOOK-FIXERS.md - update to current version, fix links (keradus)
1671
+ * minor #2812 ProcessLinter - compatibility with Symfony 3.3 (keradus)
1672
+ * minor #2816 Tokenizer - better docs and validation (keradus)
1673
+ * minor #2817 Tokenizer - use future-compatible interface (keradus)
1674
+ * minor #2819 Fix benchmark (keradus)
1675
+ * minor #2820 MagicConstantCasingFixer - Remove defined check (SpacePossum)
1676
+ * minor #2823 Tokenizer - use future-compatible interface (keradus)
1677
+ * minor #2824 code grooming (keradus)
1678
+ * minor #2826 Exceptions - provide utests (localheinz)
1679
+ * minor #2828 Enhancement: Reference phpunit.xsd from phpunit.xml.dist (localheinz)
1680
+ * minor #2830 Differs - add tests (localheinz)
1681
+ * minor #2832 Fix: Use all the columns (localheinz)
1682
+ * minor #2833 Doctrine\Annotation\Token - provide utests (localheinz)
1683
+ * minor #2839 Use PHP 7.2 polyfill instead of xml one (keradus)
1684
+ * minor #2842 Move null to first position in PHPDoc types (julienfalque)
1685
+ * minor #2850 ReadmeCommandTest - Prevent diff output (julienfalque)
1686
+ * minor #2859 Fixed typo and dead code removal (GrahamCampbell)
1687
+ * minor #2863 FileSpecificCodeSample - add tests (localheinz)
1688
+ * minor #2864 WhitespacesAwareFixerInterface clean up (Slamdunk)
1689
+ * minor #2865 AutoReview\FixerTest - test configuration samples (SpacePossum, keradus)
1690
+ * minor #2867 VersionSpecification - Fix copy-paste typo (SpacePossum)
1691
+ * minor #2870 Tokens - ensureWhitespaceAtIndex - Clear tokens before compare. (SpacePossum)
1692
+ * minor #2874 LineTest - fix typo (keradus)
1693
+ * minor #2875 HelpCommand - recursive layout fix (SpacePossum)
1694
+ * minor #2883 DescribeCommand - Show which sample uses the default configuration (SpacePossum)
1695
+ * minor #2887 Housekeeping - Strict whitespace checks (SpacePossum)
1696
+ * minor #2895 ProjectCodeTest - check that classes in no-tests exception exist (keradus)
1697
+ * minor #2896 Move testing related classes from src to tests (keradus)
1698
+ * minor #2904 Reapply CS (keradus)
1699
+ * minor #2910 PhpdocAnnotationWithoutDotFixer - Restrict lowercasing (oschwald)
1700
+ * minor #2913 Tests - tweaks (SpacePossum, keradus)
1701
+ * minor #2916 FixerFactory - drop return in sortFixers(), never used (TomasVotruba)
1702
+
1703
+ Changelog for v2.3.2
1704
+ --------------------
1705
+
1706
+ * bug #2682 DoctrineAnnotationIndentationFixer - fix handling nested annotations (edhgoose, julienfalque)
1707
+ * bug #2700 Fix Doctrine Annotation end detection (julienfalque)
1708
+ * bug #2715 OrderedImportsFixer - handle indented groups (pilgerone)
1709
+ * bug #2732 HeaderCommentFixer - fix handling blank lines (s7b4)
1710
+ * bug #2745 Fix Doctrine Annotation newlines (julienfalque)
1711
+ * bug #2752 FixCommand - fix typo in warning message (mnapoli)
1712
+ * bug #2757 GeckoPHPUnit is not dev dependency (keradus)
1713
+ * bug #2759 Update gitattributes (SpacePossum)
1714
+ * bug #2763 Fix describe command with PSR-0 fixer (julienfalque)
1715
+ * bug #2768 Tokens::ensureWhitespaceAtIndex - clean up comment check, add check for T_OPEN (SpacePossum)
1716
+ * bug #2783 Tokens::ensureWhitespaceAtIndex - Fix handling line endings (SpacePossum)
1717
+ * minor #2304 DX: use PHPMD (keradus)
1718
+ * minor #2663 Use colors for keywords in commands output (julienfalque, keradus)
1719
+ * minor #2706 Update README (SpacePossum)
1720
+ * minor #2714 README.rst - fix wrong value in example (mleko)
1721
+ * minor #2718 Remove old Symfony exception message expectation (julienfalque)
1722
+ * minor #2721 Update phpstorm article link to a fresh blog post (valeryan)
1723
+ * minor #2725 Use method chaining for configuration definitions (julienfalque)
1724
+ * minor #2727 PHPUnit - use speedtrap (keradus)
1725
+ * minor #2728 SelfUpdateCommand - verify that it's possible to replace current file (keradus)
1726
+ * minor #2729 DescribeCommand - add decorated output test (julienfalque)
1727
+ * minor #2731 BracesFixer - properly pass config in utest dataProvider (keradus)
1728
+ * minor #2738 Upgrade tests to use new, namespaced PHPUnit TestCase class (keradus)
1729
+ * minor #2742 Code cleanup (GrahamCampbell, keradus)
1730
+ * minor #2743 Fixing example and description for GeneralPhpdocAnnotationRemoveFixer (kubawerlos)
1731
+ * minor #2744 AbstractDoctrineAnnotationFixerTestCase - split fixers test cases (julienfalque)
1732
+ * minor #2755 Fix compatibility with PHPUnit 5.4.x (keradus)
1733
+ * minor #2758 Readme - improve CI integration guidelines (keradus)
1734
+ * minor #2769 Psr0Fixer - remove duplicated example (julienfalque)
1735
+ * minor #2774 AssertTokens Trait (keradus)
1736
+ * minor #2775 NoExtraConsecutiveBlankLinesFixer - remove duplicate code sample. (SpacePossum)
1737
+ * minor #2778 AutoReview - watch that code samples are unique (keradus)
1738
+ * minor #2787 Add warnings about missing dom ext and require json ext (keradus)
1739
+ * minor #2792 Use composer-require-checker (keradus)
1740
+ * minor #2796 Update .gitattributes (SpacePossum)
1741
+ * minor #2797 Update .gitattributes (SpacePossum)
1742
+ * minor #2800 PhpdocTypesFixerTest - Fix typo in covers annotation (SpacePossum)
1743
+
1744
+ Changelog for v2.3.1
1745
+ --------------------
1746
+
1747
+ Port of v2.2.3.
1748
+
1749
+ * bug #2724 Revert #2554 Add short diff. output format (keradus)
1750
+
1751
+ Changelog for v2.3.0
1752
+ --------------------
1753
+
1754
+ * feature #2450 Add ListSyntaxFixer (SpacePossum)
1755
+ * feature #2708 Add PhpUnitTestClassRequiresCoversFixer (keradus)
1756
+ * minor #2568 Require PHP 5.6+ (keradus)
1757
+ * minor #2672 Bump symfony/* deps (keradus)
1758
+
1759
+ Changelog for v2.2.20
1760
+ ---------------------
1761
+
1762
+ * bug #3233 PhpdocAlignFixer - Fix linebreak inconsistency (SpacePossum, keradus)
1763
+ * bug #3445 Rewrite NoUnusedImportsFixer (kubawerlos, julienfalque)
1764
+ * bug #3597 DeclareStrictTypesFixer - fix bug of removing line (kubawerlos, keradus)
1765
+ * bug #3605 DoctrineAnnotationIndentationFixer - Fix indentation with mixed lines (julienfalque)
1766
+ * bug #3606 PhpdocToCommentFixer - allow multiple ( (SpacePossum)
1767
+ * bug #3684 PhpUnitStrictFixer - Do not fix if not correct # of arguments are used (SpacePossum)
1768
+ * bug #3715 SingleImportPerStatementFixer - Fix handling whitespace before opening brace (julienfalque)
1769
+ * bug #3731 PhpdocIndentFixer - crash fix (SpacePossum)
1770
+ * bug #3765 Fix binary-prefixed double-quoted strings to single quotes (ntzm)
1771
+ * bug #3770 Handle binary flags in heredoc_to_nowdoc (ntzm)
1772
+ * bug #3790 ProcessLinter - don't execute external process without timeout! It can freeze! (keradus)
1773
+ * minor #3548 Make shell scripts POSIX-compatible (EvgenyOrekhov, keradus)
1774
+ * minor #3568 New Autoreview: Correct option casing (ntzm)
1775
+ * minor #3590 Use XdebugHandler to avoid performance penalty (AJenbo, keradus)
1776
+ * minor #3607 PhpdocVarWithoutNameFixer - update sample with @ type (SpacePossum)
1777
+ * minor #3617 Tests stability patches (Tom Klingenberg, keradus)
1778
+ * minor #3627 Fix tests execution under phpdbg (keradus)
1779
+ * minor #3629 ProjectFixerConfigurationTest - test rules are sorted (SpacePossum)
1780
+ * minor #3639 DX: use benefits of symfony/force-lowest (keradus)
1781
+ * minor #3641 Update check_trailing_spaces script with upstream (keradus)
1782
+ * minor #3646 Extract SameStringsConstraint and XmlMatchesXsdConstraint (keradus)
1783
+ * minor #3647 DX: Add CachingLinter for tests (keradus)
1784
+ * minor #3649 Update check_trailing_spaces script with upstream (keradus)
1785
+ * minor #3652 CiIntegrationTest - run tests with POSIX sh, not Bash (keradus)
1786
+ * minor #3656 DX: Clean ups (SpacePossum)
1787
+ * minor #3660 Fix do not rely on order of fixing in CiIntegrationTest (kubawerlos)
1788
+ * minor #3662 DX: Add Smoke/InstallViaComposerTest (keradus)
1789
+ * minor #3663 DX: During deployment, run all smoke tests and don't allow to skip phar-related ones (keradus)
1790
+ * minor #3665 CircleCI fix (kubawerlos)
1791
+ * minor #3666 Use "set -eu" in shell scripts (EvgenyOrekhov)
1792
+ * minor #3669 Document possible values for subset options (julienfalque, keradus)
1793
+ * minor #3676 RunnerTest - workaround for failing Symfony v2.8.37 (kubawerlos)
1794
+ * minor #3680 DX: Tokens - removeLeadingWhitespace and removeTrailingWhitespace must act in same way (SpacePossum)
1795
+ * minor #3686 README.rst - Format all code-like strings in fixer descriptions (ntzm, keradus)
1796
+ * minor #3692 DX: Optimize tests (julienfalque)
1797
+ * minor #3701 Use correct casing for "PHPDoc" (ntzm)
1798
+ * minor #3703 DX: InstallViaComposerTets - groom naming (keradus)
1799
+ * minor #3704 DX: Tokens - fix naming (keradus)
1800
+ * minor #3706 Update homebrew installation instructions (ntzm)
1801
+ * minor #3713 Use HTTPS whenever possible (fabpot)
1802
+ * minor #3723 Extend tests coverage (ntzm)
1803
+ * minor #3733 Disable Composer optimized autoloader by default (julienfalque)
1804
+ * minor #3748 PhpUnitStrictFixer - extend risky note (jnvsor)
1805
+ * minor #3749 Make sure PHPUnit is cased correctly in fixers descriptions (kubawerlos)
1806
+ * minor #3773 AbstractFixerWithAliasedOptionsTestCase - don't export (keradus)
1807
+ * minor #3796 DX: StdinTest - do not assume name of folder, into which project was cloned (keradus)
1808
+ * minor #3803 NoEmptyPhpdocFixer/PhpdocAddMissingParamAnnotationFixer - missing priority test (SpacePossum, keradus)
1809
+ * minor #3804 Cleanup: remove useless constructor comment (kubawerlos)
1810
+
1811
+ Changelog for v2.2.19
1812
+ ---------------------
1813
+
1814
+ * bug #3594 ElseifFixer - Bug with alternative syntax (kubawerlos)
1815
+ * bug #3600 StrictParamFixer - Fix issue when functions are imported (ntzm, keradus)
1816
+ * minor #3589 FixerFactoryTest - add missing test (SpacePossum, keradus)
1817
+ * minor #3610 make phar extension optional (Tom Klingenberg, keradus)
1818
+ * minor #3612 Travis - allow for hhvm failures (keradus)
1819
+ * minor #3615 Detect fabbot.io (julienfalque, keradus)
1820
+ * minor #3616 FixerFactoryTest - Don't rely on autovivification (keradus)
1821
+
1822
+ Changelog for v2.2.18
1823
+ ---------------------
1824
+
1825
+ * bug #3446 Add PregWrapper (kubawerlos)
1826
+ * bug #3464 IncludeFixer - fix incorrect order of fixing (kubawerlos, SpacePossum)
1827
+ * bug #3496 Bug in Tokens::removeLeadingWhitespace (kubawerlos, SpacePossum, keradus)
1828
+ * bug #3557 AbstractDoctrineAnnotationFixer: edge case bugfix (Slamdunk)
1829
+ * bug #3574 GeneralPhpdocAnnotationRemoveFixer - remove PHPDoc if no content is left (SpacePossum)
1830
+ * minor #3563 DX add missing covers annotations (keradus)
1831
+ * minor #3565 Use EventDispatcherInterface instead of EventDispatcher when possible (keradus)
1832
+ * minor #3572 DX: allow for more phpunit-speedtrap versions to support more PHPUnit versions (keradus)
1833
+ * minor #3576 Fix Doctrine Annotation test cases merging (julienfalque)
1834
+
1835
+ Changelog for v2.2.17
1836
+ ---------------------
1837
+
1838
+ * bug #3504 NoBlankLinesAfterPhpdocFixer - allow blank line before declare statement (julienfalque)
1839
+ * bug #3522 Remove LOCK_EX (SpacePossum)
1840
+ * bug #3560 SelfAccessorFixer is risky (Slamdunk)
1841
+ * minor #3435 Add tests for general_phpdoc_annotation_remove (BackEndTea)
1842
+ * minor #3484 Create Tokens::findBlockStart (ntzm)
1843
+ * minor #3512 Add missing array typehints (ntzm)
1844
+ * minor #3516 Use null|type instead of ?type in PHPDocs (ntzm)
1845
+ * minor #3518 FixerFactoryTest - Test each priority test file is listed as test (SpacePossum)
1846
+ * minor #3520 Fix typos: ran vs. run (SpacePossum)
1847
+ * minor #3521 Use HTTPS (carusogabriel)
1848
+ * minor #3526 Remove gecko dependency (SpacePossum, keradus, julienfalque)
1849
+ * minor #3531 Backport PHPMD to LTS version to ease maintainability (keradus)
1850
+ * minor #3532 Implement Tokens::findOppositeBlockEdge (ntzm)
1851
+ * minor #3533 DX: SCA - drop src/Resources exclusion (keradus)
1852
+ * minor #3538 Don't use third parameter of Tokens::findBlockStart (ntzm)
1853
+ * minor #3542 Enhancement: Run composer-normalize on Travis CI (localheinz, keradus)
1854
+ * minor #3555 DX: composer.json - drop branch-alias, branch is already following the version (keradus)
1855
+ * minor #3556 DX: Add AutoReview/ComposerTest (keradus)
1856
+ * minor #3559 Don't expose new files under Test namespace (keradus)
1857
+
1858
+ Changelog for v2.2.16
1859
+ ---------------------
1860
+
1861
+ * bug #3502 Fix missing file in export (keradus)
1862
+
1863
+ Changelog for v2.2.15
1864
+ ---------------------
1865
+
1866
+ * bug #3367 NoUnusedImportsFixer - fix comment handling (SpacePossum, keradus)
1867
+ * bug #3455 NoEmptyCommentFixer - comment block detection for line ending different than LF (kubawerlos, SpacePossum)
1868
+ * bug #3458 SilencedDeprecationErrorFixer - fix edge cases (kubawerlos)
1869
+ * bug #3466 no_whitespace_in_blank_line and no_blank_lines_after_phpdoc fixers bug (kubawerlos, keradus)
1870
+ * minor #3354 Added missing types to the PhpdocTypesFixer (GrahamCampbell)
1871
+ * minor #3406 Fix for escaping in README (kubawerlos)
1872
+ * minor #3431 Add missing tests (SpacePossum)
1873
+ * minor #3440 Add a handful of integration tests (BackEndTea)
1874
+ * minor #3444 IntegrationTest - ensure tests in priority dir are priority tests indeed (keradus)
1875
+ * minor #3494 Add missing PHPDoc param type (ntzm)
1876
+ * minor #3495 Swap @var type and element (ntzm)
1877
+ * minor #3498 NoUnusedImportsFixer - fix deprecation (keradus)
1878
+
1879
+ Changelog for v2.2.14
1880
+ ---------------------
1881
+
1882
+ * bug #3298 DiffConsoleFormatter - fix output escaping. (SpacePossum)
1883
+ * bug #3337 BracesFixer: nowdoc bug on template files (Slamdunk)
1884
+ * bug #3349 Fix stdin handling and add tests for it (keradus)
1885
+ * bug #3359 BracesFixer - handle comment for content outside of given block (keradus)
1886
+ * bug #3415 FileFilterIterator - input checks and utests (SpacePossum, keradus)
1887
+ * bug #3429 Fix archive analysing (keradus)
1888
+ * minor #3137 PHPUnit - use common base class (keradus)
1889
+ * minor #3342 PhpUnitDedicateAssertFixer - Remove unexistent method is_boolean (carusogabriel)
1890
+ * minor #3345 StdinFileInfo - fix `__toString` (keradus)
1891
+ * minor #3346 StdinFileInfo - drop getContents (keradus)
1892
+ * minor #3347 DX: reapply newest CS (keradus)
1893
+ * minor #3365 COOKBOOK-FIXERS.md - update to provide definition instead of description (keradus)
1894
+ * minor #3370 AbstractFixer - FQCN in in exceptions (Slamdunk)
1895
+ * minor #3372 ProjectCodeTest - fix comment (keradus)
1896
+ * minor #3402 Always provide delimiter to `preg_quote` calls (ntzm)
1897
+ * minor #3403 Remove unused import (ntzm)
1898
+ * minor #3405 Fix `fopen` mode (ntzm)
1899
+ * minor #3408 Improving fixers descriptions (kubawerlos)
1900
+ * minor #3409 move itests from misc to priority (keradus)
1901
+ * minor #3411 Better type hinting for AbstractFixerTestCase::$fixer (kubawerlos)
1902
+ * minor #3412 Convert `strtolower` inside `strpos` to just `stripos` (ntzm)
1903
+ * minor #3425 FixerFactoryTest - test that priority pair fixers have itest (keradus, SpacePossum)
1904
+ * minor #3427 ConfigurationResolver: fix @return annotation (Slamdunk)
1905
+
1906
+ Changelog for v2.2.13
1907
+ ---------------------
1908
+
1909
+ * bug #3281 SelfAccessorFixer - stop modifying traits (kubawerlos)
1910
+ * minor #3195 Add self-update command test (julienfalque)
1911
+ * minor #3292 PHPUnit - set memory limit (veewee)
1912
+ * minor #3306 Token - better input validation (keradus)
1913
+
1914
+ Changelog for v2.2.12
1915
+ ---------------------
1916
+
1917
+ * bug #3173 SimplifiedNullReturnFixer - handle nullable return types (Slamdunk)
1918
+ * bug #3272 PhpdocTrimFixer - unicode support (SpacePossum)
1919
+
1920
+ Changelog for v2.2.11
1921
+ ---------------------
1922
+
1923
+ * bug #3225 PhpdocTrimFixer - Fix handling of lines without leading asterisk (julienfalque)
1924
+ * bug #3262 ToolInfo - support installation by branch as well (keradus)
1925
+ * bug #3266 PhpUnitConstructFixer - multiple asserts bug (kubawerlos)
1926
+ * minor #3239 Improve contributing guide and issue template (julienfalque)
1927
+ * minor #3246 Make ToolInfo methods non-static (julienfalque)
1928
+ * minor #3250 Travis: fail early, spare resources, save the Earth (Slamdunk, keradus)
1929
+ * minor #3251 Create Title for config file docs section (IanEdington)
1930
+ * minor #3254 AutoReview/FixerFactoryTest::testFixersPriority: verbose assertion message (Slamdunk)
1931
+
1932
+ Changelog for v2.2.10
1933
+ ---------------------
1934
+
1935
+ * bug #3199 TokensAnalyzer - getClassyElements (SpacePossum)
1936
+ * bug #3208 BracesFixer - Fix for instantiation in control structures (julienfalque, SpacePossum)
1937
+ * bug #3215 BinaryOperatorSpacesFixer - Fix spaces around multiple exception catching (|) (ntzm)
1938
+ * bug #3216 AbstractLinesBeforeNamespaceFixer - add min. and max. option, not only single target count (SpacePossum)
1939
+ * bug #3217 TokenizerLinter - fix lack of linting when code is cached (SpacePossum, keradus)
1940
+ * minor #3200 Skip slow test when Xdebug is loaded (julienfalque)
1941
+ * minor #3219 Normalise references to GitHub in docs (ntzm)
1942
+ * minor #3226 Remove unused imports (ntzm)
1943
+ * minor #3231 Fix typos (ntzm)
1944
+ * minor #3234 Simplify Cache\Signature::equals (ntzm)
1945
+ * minor #3237 UnconfigurableFixer - use only LF (keradus)
1946
+ * minor #3238 AbstractFixerTest - fix @cover annotation (keradus)
1947
+
1948
+ Changelog for v2.2.9
1949
+ --------------------
1950
+
1951
+ * bug #3062 BraceClassInstantiationTransformer - Fix instantiation inside method call braces case (julienfalque, keradus)
1952
+ * bug #3083 SingleBlankLineBeforeNamespaceFixer - Fix handling namespace right after opening tag (mlocati)
1953
+ * bug #3109 SwitchCaseSemicolonToColonFixer - Fix bug with nested constructs (SpacePossum)
1954
+ * bug #3123 Cache - File permissions (SpacePossum)
1955
+ * bug #3172 IndentationTypeFixer - do not touch whitespace that is not indentation (SpacePossum)
1956
+ * bug #3176 NoMultilineWhitespaceBeforeSemicolonsFixer - SpaceAfterSemicolonFixer - priority fix (SpacePossum)
1957
+ * bug #3193 TokensAnalyzer::getClassyElements - sort result before returning (SpacePossum)
1958
+ * bug #3196 SelfUpdateCommand - fix exit status when can't determine newest version (julienfalque)
1959
+ * minor #3107 ConfigurationResolver - improve error message when rule is not found (SpacePossum)
1960
+ * minor #3113 Add WordMatcher (keradus)
1961
+ * minor #3133 Unify Reporter tests (keradus)
1962
+ * minor #3134 Allow Symfony 4 (keradus, garak)
1963
+ * minor #3136 PHPUnit - call hooks from parent class as well (keradus)
1964
+ * minor #3145 misc - Typo (localheinz)
1965
+ * minor #3150 Fix CircleCI (julienfalque)
1966
+ * minor #3151 Update gitattributes to ignore next file (keradus)
1967
+ * minor #3156 Update php-coveralls (keradus)
1968
+ * minor #3166 README - add link to new gitter channel. (SpacePossum)
1969
+ * minor #3174 Update UPGRADE.md (vitek-rostislav)
1970
+ * minor #3180 Fix usage of static variables (kubawerlos)
1971
+ * minor #3184 Code grooming - sort content of arrays (keradus)
1972
+ * minor #3191 Travis - add nightly build to allow_failures due to Travis issues (keradus)
1973
+ * minor #3197 DX groom CS (keradus)
1974
+
1975
+ Changelog for v2.2.8
1976
+ --------------------
1977
+
1978
+ * bug #3052 Fix false positive warning about paths overridden by provided as command arguments (kubawerlos)
1979
+ * bug #3058 IsNullFixer - fix whitespace handling (roukmoute)
1980
+ * bug #3072 IsNullFixer - fix non_yoda_style edge case (keradus)
1981
+ * bug #3088 Drop dedicated Phar stub (keradus)
1982
+ * bug #3100 NativeFunctionInvocationFixer - Fix test if previous token is already namespace separator (SpacePossum)
1983
+ * bug #3104 DoctrineAnnotationIndentationFixer - Fix str_repeat() error (julienfalque)
1984
+ * minor #3038 Support PHP 7.2 (SpacePossum, keradus)
1985
+ * minor #3064 Fix couple of typos (KKSzymanowski)
1986
+ * minor #3078 ConfigurationResolver - hide context while including config file (keradus)
1987
+ * minor #3080 Direct function call instead of by string (kubawerlos)
1988
+ * minor #3085 CiIntegrationTest - skip when no git is available (keradus)
1989
+ * minor #3087 phar-stub.php - allow PHP 7.2 (keradus)
1990
+
1991
+ Changelog for v2.2.7
1992
+ --------------------
1993
+
1994
+ * bug #3002 Bugfix braces (mnabialek)
1995
+ * bug #3010 Fix handling of Github releases (julienfalque, keradus)
1996
+ * bug #3015 Fix exception arguments (julienfalque)
1997
+ * bug #3016 Verify phar file (keradus)
1998
+ * bug #3021 Risky rules cleanup (kubawerlos)
1999
+ * bug #3023 RandomApiMigrationFixer - "rand();" to "random_int(0, getrandmax());" fixing (SpacePossum)
2000
+ * bug #3024 ConfigurationResolver - Handle empty "rules" value (SpacePossum, keradus)
2001
+ * bug #3031 IndentationTypeFixer - fix handling tabs in indented comments (keradus)
2002
+ * minor #2999 Notice when paths from config file are overridden by command arguments (julienfalque, keradus)
2003
+ * minor #3007 Add PHP 7.2 to Travis build matrix (Jean85)
2004
+ * minor #3009 CiIntegrationTest - run local (SpacePossum)
2005
+ * minor #3013 Adjust phpunit configuration (localheinz)
2006
+ * minor #3017 Fix: Risky tests (localheinz)
2007
+ * minor #3018 Fix: Make sure that data providers are named correctly (localheinz, keradus)
2008
+ * minor #3032 .php_cs.dist - handling UnexpectedValueException (keradus)
2009
+ * minor #3034 Follow newest CS (keradus)
2010
+ * minor #3036 Drop not existing Standalone group from PHPUnit configuration and duplicated internal tags (keradus)
2011
+ * minor #3042 Update gitter address (keradus)
2012
+
2013
+ Changelog for v2.2.6
2014
+ --------------------
2015
+
2016
+ * bug #2925 Improve CI integration suggestion (julienfalque)
2017
+ * bug #2928 TokensAnalyzer::getClassyElements - Anonymous class support (SpacePossum)
2018
+ * bug #2931 Psr0Fixer, Psr4Fixer - ignore "new class" syntax (dg, keradus)
2019
+ * bug #2934 Config - fix handling rule without value (keradus, SpacePossum)
2020
+ * bug #2939 NoUnusedImportsFixer - Fix extra blank line (julienfalque)
2021
+ * bug #2941 PHP 7.2 - Group imports with trailing comma support (SpacePossum, julienfalque)
2022
+ * bug #2987 Fix incorrect indentation of comments in `braces` fixer (rob006)
2023
+ * minor #2927 WhiteSpaceConfig - update message copy and more strict tests (SpacePossum, keradus)
2024
+ * minor #2930 Trigger website build (keradus)
2025
+ * minor #2932 Integrate CircleCI (keradus, aidantwoods)
2026
+ * minor #2933 ProcessLinterTest - Ensure Windows test only runs on Windows, add a Mac test execution (aidantwoods)
2027
+ * minor #2935 special handling of fabbot.io service if it's using too old PHP CS Fixer version (keradus)
2028
+ * minor #2937 Travis: execute 5.3 job on precise (keradus)
2029
+ * minor #2938 Tests fix configuration of project (SpacePossum, keradus)
2030
+ * minor #2943 FunctionToConstantFixer - test with diff. arguments than fixable (SpacePossum)
2031
+ * minor #2946 Detect extra old installations (keradus)
2032
+ * minor #2947 Test suggested CI integration (keradus)
2033
+ * minor #2951 AccessibleObject - remove most of usage (keradus)
2034
+ * minor #2969 Shrink down AccessibleObject usage (keradus)
2035
+ * minor #2982 TrailingCommaInMultilineArrayFixer - simplify isMultilineArray condition (TomasVotruba)
2036
+
2037
+ Changelog for v2.2.5
2038
+ --------------------
2039
+
2040
+ * bug #2807 NoUselessElseFixer - Fix detection of conditional block (SpacePossum)
2041
+ * bug #2809 Phar release - fix readme generation (SpacePossum, keradus)
2042
+ * bug #2827 MethodArgumentSpaceFixer - Always remove trailing spaces (julienfalque)
2043
+ * bug #2835 SelfAcessorFixer - class property fix (mnabialek)
2044
+ * bug #2848 PhpdocIndentFixer - fix edge case with inline phpdoc (keradus)
2045
+ * bug #2849 BracesFixer - Fix indentation issues with comments (julienfalque)
2046
+ * bug #2851 Tokens - ensureWhitespaceAtIndex (GrahamCampbell, SpacePossum)
2047
+ * bug #2854 NoLeadingImportSlashFixer - Removing leading slash from import even when in global space (kubawerlos)
2048
+ * bug #2858 Support generic types (keradus)
2049
+ * bug #2869 Fix handling required configuration (keradus)
2050
+ * bug #2881 NoUnusedImportsFixer - Bug when trying to insert empty token (GrahamCampbell, keradus)
2051
+ * bug #2882 DocBlock\Annotation - Fix parsing of collections with multiple key types (julienfalque)
2052
+ * bug #2886 NoSpacesInsideParenthesisFixer - Do not remove whitespace if next token is comment (SpacePossum)
2053
+ * bug #2888 SingleImportPerStatementFixer - Add support for function and const (SpacePossum)
2054
+ * bug #2901 Add missing files to archive files (keradus)
2055
+ * bug #2914 HeredocToNowdocFixer - works with CRLF line ending (dg)
2056
+ * bug #2920 RuleSet - Update deprecated configuration of fixers (SpacePossum, keradus)
2057
+ * minor #1531 Update docs for few generic types (keradus)
2058
+ * minor #2793 COOKBOOK-FIXERS.md - update to current version, fix links (keradus)
2059
+ * minor #2812 ProcessLinter - compatibility with Symfony 3.3 (keradus)
2060
+ * minor #2816 Tokenizer - better docs and validation (keradus)
2061
+ * minor #2817 Tokenizer - use future-compatible interface (keradus)
2062
+ * minor #2819 Fix benchmark (keradus)
2063
+ * minor #2824 code grooming (keradus)
2064
+ * minor #2826 Exceptions - provide utests (localheinz)
2065
+ * minor #2828 Enhancement: Reference phpunit.xsd from phpunit.xml.dist (localheinz)
2066
+ * minor #2830 Differs - add tests (localheinz)
2067
+ * minor #2832 Fix: Use all the columns (localheinz)
2068
+ * minor #2833 Doctrine\Annotation\Token - provide utests (localheinz)
2069
+ * minor #2839 Use PHP 7.2 polyfill instead of xml one (keradus)
2070
+ * minor #2842 Move null to first position in PHPDoc types (julienfalque)
2071
+ * minor #2850 ReadmeCommandTest - Prevent diff output (julienfalque)
2072
+ * minor #2859 Fixed typo and dead code removal (GrahamCampbell)
2073
+ * minor #2863 FileSpecificCodeSample - add tests (localheinz)
2074
+ * minor #2864 WhitespacesAwareFixerInterface clean up (Slamdunk)
2075
+ * minor #2865 AutoReview\FixerTest - test configuration samples (SpacePossum, keradus)
2076
+ * minor #2867 VersionSpecification - Fix copy-paste typo (SpacePossum)
2077
+ * minor #2874 LineTest - fix typo (keradus)
2078
+ * minor #2875 HelpCommand - recursive layout fix (SpacePossum)
2079
+ * minor #2883 DescribeCommand - Show which sample uses the default configuration (SpacePossum)
2080
+ * minor #2887 Housekeeping - Strict whitespace checks (SpacePossum)
2081
+ * minor #2895 ProjectCodeTest - check that classes in no-tests exception exist (keradus)
2082
+ * minor #2896 Move testing related classes from src to tests (keradus)
2083
+ * minor #2904 Reapply CS (keradus)
2084
+ * minor #2910 PhpdocAnnotationWithoutDotFixer - Restrict lowercasing (oschwald)
2085
+ * minor #2913 Tests - tweaks (SpacePossum, keradus)
2086
+ * minor #2916 FixerFactory - drop return in sortFixers(), never used (TomasVotruba)
2087
+
2088
+ Changelog for v2.2.4
2089
+ --------------------
2090
+
2091
+ * bug #2682 DoctrineAnnotationIndentationFixer - fix handling nested annotations (edhgoose, julienfalque)
2092
+ * bug #2700 Fix Doctrine Annotation end detection (julienfalque)
2093
+ * bug #2715 OrderedImportsFixer - handle indented groups (pilgerone)
2094
+ * bug #2732 HeaderCommentFixer - fix handling blank lines (s7b4)
2095
+ * bug #2745 Fix Doctrine Annotation newlines (julienfalque)
2096
+ * bug #2752 FixCommand - fix typo in warning message (mnapoli)
2097
+ * bug #2757 GeckoPHPUnit is not dev dependency (keradus)
2098
+ * bug #2759 Update gitattributes (SpacePossum)
2099
+ * bug #2763 Fix describe command with PSR-0 fixer (julienfalque)
2100
+ * bug #2768 Tokens::ensureWhitespaceAtIndex - clean up comment check, add check for T_OPEN (SpacePossum)
2101
+ * bug #2783 Tokens::ensureWhitespaceAtIndex - Fix handling line endings (SpacePossum)
2102
+ * minor #2663 Use colors for keywords in commands output (julienfalque, keradus)
2103
+ * minor #2706 Update README (SpacePossum)
2104
+ * minor #2714 README.rst - fix wrong value in example (mleko)
2105
+ * minor #2721 Update phpstorm article link to a fresh blog post (valeryan)
2106
+ * minor #2727 PHPUnit - use speedtrap (keradus)
2107
+ * minor #2728 SelfUpdateCommand - verify that it's possible to replace current file (keradus)
2108
+ * minor #2729 DescribeCommand - add decorated output test (julienfalque)
2109
+ * minor #2731 BracesFixer - properly pass config in utest dataProvider (keradus)
2110
+ * minor #2738 Upgrade tests to use new, namespaced PHPUnit TestCase class (keradus)
2111
+ * minor #2743 Fixing example and description for GeneralPhpdocAnnotationRemoveFixer (kubawerlos)
2112
+ * minor #2744 AbstractDoctrineAnnotationFixerTestCase - split fixers test cases (julienfalque)
2113
+ * minor #2755 Fix compatibility with PHPUnit 5.4.x (keradus)
2114
+ * minor #2758 Readme - improve CI integration guidelines (keradus)
2115
+ * minor #2769 Psr0Fixer - remove duplicated example (julienfalque)
2116
+ * minor #2775 NoExtraConsecutiveBlankLinesFixer - remove duplicate code sample. (SpacePossum)
2117
+ * minor #2778 AutoReview - watch that code samples are unique (keradus)
2118
+ * minor #2787 Add warnings about missing dom ext and require json ext (keradus)
2119
+ * minor #2792 Use composer-require-checker (keradus)
2120
+ * minor #2796 Update .gitattributes (SpacePossum)
2121
+ * minor #2800 PhpdocTypesFixerTest - Fix typo in covers annotation (SpacePossum)
2122
+
2123
+ Changelog for v2.2.3
2124
+ --------------------
2125
+
2126
+ * bug #2724 Revert #2554 Add short diff. output format (keradus)
2127
+
2128
+ Changelog for v2.2.2
2129
+ --------------------
2130
+
2131
+ Warning, this release breaks BC due to introduction of:
2132
+ * minor #2554 Add short diff. output format (SpacePossum, keradus)
2133
+ That PR was reverted in v2.2.3, which should be used instead of v2.2.2.
2134
+
2135
+ * bug #2545 RuleSet - change resolvement (SpacePossum)
2136
+ * bug #2686 Commands readme and describe - fix rare casing when not displaying some possible options of configuration (keradus)
2137
+ * bug #2711 FixCommand - fix diff optional value handling (keradus)
2138
+ * minor #2688 AppVeyor - Remove github oauth (keradus)
2139
+ * minor #2703 Clean ups - No mixed annotations (SpacePossum)
2140
+ * minor #2704 Create PHP70Migration:risky ruleset (keradus)
2141
+ * minor #2707 Deprecate other than "yes" or "no" for input options (SpacePossum)
2142
+ * minor #2709 code grooming (keradus)
2143
+ * minor #2710 Travis - run more rules on TASK_SCA (keradus)
2144
+
2145
+ Changelog for v2.2.1
2146
+ --------------------
2147
+
2148
+ * bug #2621 Tokenizer - fix edge cases with empty code, registered found tokens and code hash (SpacePossum, keradus)
2149
+ * bug #2674 SemicolonAfterInstructionFixer - Fix case where block ends with an opening curly brace (ntzm)
2150
+ * bug #2675 ProcessOutputTest - update tests to pass on newest Symfony components under Windows (keradus)
2151
+ * minor #2651 Fix UPGRADE.md table syntax so it works in GitHub (ntzm, keradus)
2152
+ * minor #2665 Travis - Improve trailing spaces detection (julienfalque)
2153
+ * minor #2666 TransformersTest - move test to auto-review group (keradus)
2154
+ * minor #2668 add covers annotation (keradus)
2155
+ * minor #2669 TokensTest - grooming (SpacePossum)
2156
+ * minor #2670 AbstractFixer: use applyFix instead of fix (Slamdunk)
2157
+ * minor #2677 README: Correct progressbar option support (Laurens St�tzel)
2158
+
2159
+ Changelog for v2.2.0
2160
+ --------------------
2161
+
2162
+ * bug #2640 NoExtraConsecutiveBlankLinesFixer - Fix single indent characters not working (ntzm)
2163
+ * feature #2220 Doctrine annotation fixers (julienfalque)
2164
+ * feature #2431 MethodArgumentSpaceFixer: allow to retain multiple spaces after comma (Slamdunk)
2165
+ * feature #2459 BracesFixer - Add option for keeping opening brackets on the same line (jtojnar, SpacePossum)
2166
+ * feature #2486 Add FunctionToConstantFixer (SpacePossum, keradus)
2167
+ * feature #2505 FunctionDeclarationFixer - Make space after anonymous function configurable (jtojnar, keradus)
2168
+ * feature #2509 FullOpeningTagFixer - Ensure opening PHP tag is lowercase (jtojnar)
2169
+ * feature #2532 FixCommand - add stop-on-violation option (keradus)
2170
+ * feature #2591 Improve process output (julienfalque)
2171
+ * feature #2603 Add InvisibleSymbols Fixer (ivan1986, keradus)
2172
+ * feature #2642 Add MagicConstantCasingFixer (ntzm)
2173
+ * feature #2657 PhpdocToCommentFixer - Allow phpdoc for language constructs (ceeram, SpacePossum)
2174
+ * minor #2500 Configuration resolver (julienfalque, SpacePossum, keradus)
2175
+ * minor #2566 Show more details on errors and exceptions. (SpacePossum, julienfalque)
2176
+ * minor #2597 HHVM - bump required version to 3.18 (keradus)
2177
+ * minor #2606 FixCommand - fix missing comment close tag (keradus)
2178
+ * minor #2623 OrderedClassElementsFixer - remove dead code (SpacePossum)
2179
+ * minor #2625 Update Symfony and Symfony:risky rulesets (keradus)
2180
+ * minor #2626 TernaryToNullCoalescingFixer - adjust ruleset membership and description (keradus)
2181
+ * minor #2635 ProjectCodeTest - watch that all classes have dedicated tests (keradus)
2182
+ * minor #2647 DescribeCommandTest - remove deprecated code usage (julienfalque)
2183
+ * minor #2648 Move non-code covering tests to AutoReview subnamespace (keradus)
2184
+ * minor #2652 NoSpacesAroundOffsetFixerTest - fix deprecation (keradus)
2185
+ * minor #2656 Code grooming (keradus)
2186
+ * minor #2659 Travis - speed up preparation for phar building (keradus)
2187
+ * minor #2660 Fixed typo in suggest for ext-mbstring (pascal-hofmann)
2188
+ * minor #2661 NonPrintableCharacterFixer - include into Symfony:risky ruleset (keradus)
2189
+
2190
+ Changelog for v2.1.3
2191
+ --------------------
2192
+
2193
+ * bug #2358 Cache - Deal with signature encoding (keradus, GrahamCampbell)
2194
+ * bug #2475 Add shorthand array destructing support (SpacePossum, keradus)
2195
+ * bug #2595 NoUnusedImportsFixer - Fix import usage detection with properties (julienfalque)
2196
+ * bug #2605 PhpdocAddMissingParamAnnotationFixer, PhpdocOrderFixer - fix priority issue (SpacePossum)
2197
+ * bug #2607 Fixers - better comments handling (SpacePossum)
2198
+ * bug #2612 BracesFixer - Fix early bracket close for do-while loop inside an if without brackets (felixgomez)
2199
+ * bug #2614 Ensure that '*Fixer::fix()' won't crash when running on non-candidate collection (keradus)
2200
+ * bug #2630 HeaderCommentFixer - Fix trailing whitespace not removed after <?php (julienfalque)
2201
+ * bug #2637 ToolInfo - use static dir check for composer discovery (Slamdunk)
2202
+ * bug #2639 SemicolonAfterInstructionFixer - Handle alternative syntax (SpacePossum)
2203
+ * bug #2645 HHVM: handle T_HH_ERROR (keradus)
2204
+ * bug #2653 IsNullFixer - fix edge case (localheinz, kalessil)
2205
+ * bug #2654 PhpdocAddMissingParamAnnotationFixer - handle one-line docblocks (keradus)
2206
+ * minor #2594 Travis - generate coverage report at 7.1 and clean up build matrix (keradus)
2207
+ * minor #2613 HeaderCommentFixer - add missing case for exception raising (keradus)
2208
+ * minor #2615 Add DescribeCommand test (julienfalque)
2209
+ * minor #2616 Exclude more tests in phar version (keradus)
2210
+ * minor #2618 Update README.rst (mhitza)
2211
+ * minor #2620 Finder - Remove `*.twig` as default (SpacePossum)
2212
+ * minor #2641 Cookbook - remove information about levels (keradus)
2213
+ * minor #2644 DescribeCommandTest - fix test execution on decorated console (keradus)
2214
+ * minor #2655 AppVeyor - Cache Composer Installation (julienfalque)
2215
+
2216
+ Changelog for v2.1.2
2217
+ --------------------
2218
+
2219
+ * bug #2580 NoSpacesAfterFunctionNameFixer - Fix after dynamic call (SpacePossum, keradus)
2220
+ * bug #2586 NoUnusedImportsFixerTest - handle FQCN import (keradus)
2221
+ * bug #2587 NoClosingTagFixerTest - handle file without operations (keradus, SpacePossum)
2222
+ * minor #2552 Initial compatibility with PHP 7.2-DEV (keradus)
2223
+ * minor #2582 Improve AppVeyor and Travis CI build time (julienfalque)
2224
+ * minor #2584 NoUnreachableDefaultArgumentValueFixer - fix typo (chadburrus)
2225
+ * minor #2593 PhpUnitFqcnAnnotationFixer - move test to proper namespace (keradus)
2226
+ * minor #2596 AppVeyor - update PHP versions (keradus)
2227
+
2228
+ Changelog for v2.1.1
2229
+ --------------------
2230
+
2231
+ * bug #2547 NoUnneededControlParenthesesFixer - Handle T_COALESCE in clone (keksa)
2232
+ * bug #2557 BracesFixer - Better comments handling (SpacePossum)
2233
+ * bug #2558 require symfony/polyfill-xml (SpacePossum)
2234
+ * bug #2560 PhpdocNoAliasTagFixer - Fix circular replacements detection (julienfalque)
2235
+ * bug #2567 Filename with spaces usage (jaymecd)
2236
+ * bug #2572 NoUnreachableDefaultArgumentValueFixer - Mark as risky (SpacePossum)
2237
+ * minor #2533 AppVeyor - adjust phpunit version (keradus)
2238
+ * minor #2535 Make .gitignore entries more specific (julienfalque)
2239
+ * minor #2541 README.rst - provide download link for latest version (keradus)
2240
+ * minor #2562 Add schema.json (keradus)
2241
+ * minor #2563 Add deprecation notices tests (julienfalque)
2242
+ * minor #2564 Add rules configuration by passing json encode config by CLI (SpacePossum)
2243
+ * minor #2569 Make symfony/phpunit-bridge a dev dependency only (julienfalque)
2244
+ * minor #2574 Add xml.xsd (keradus)
2245
+
2246
+ Changelog for v2.1.0
2247
+ --------------------
2248
+
2249
+ * feature #2124 Add TernaryToNullCoalescingFixer (Slamdunk, SpacePossum)
2250
+ * feature #2280 Configurable OrderedImportsFixer (DarkaOnLine)
2251
+ * feature #2351 Enhancement: Allow to configure return_type_declaration rule (localheinz)
2252
+ * feature #2359 Add PhpdocNoUselessInheritdocFixer (SpacePossum, keradus)
2253
+ * feature #2414 Add PhpdocReturnSelfReferenceFixer (SpacePossum)
2254
+ * feature #2415 Add IsNullFixer (kalessil, keradus)
2255
+ * feature #2421 BracesFixer - Add allow_single_line_closure configuration (keradus)
2256
+ * feature #2461 PhpdocNoUselessInheritdocFixer - support multiline docblock (keradus)
2257
+ * feature #2462 Add NativeFunctionInvocationFixer (localheinz, keradus, Slamdunk)
2258
+ * feature #2478 DeclareEqualNormalizeFixer - Add config option (SpacePossum)
2259
+ * feature #2494 FixCommand - Support rules with params (ptcong, keradus)
2260
+ * minor #2452 Provide rules definitions (keradus)
2261
+ * minor #2460 RuleSet - extend Symfony (keradus)
2262
+ * minor #2483 DX: AbstractIntegrationTestCase does not use IntegrationCase::shouldCheckPriority, logic is now automated and method is now deprecated (keradus)
2263
+ * minor #2488 IsNullFixer - Fix bug when calling without params (SpacePossum)
2264
+ * minor #2519 remove trailing whitespace (keradus)
2265
+
2266
+ Changelog for v2.0.1
2267
+ --------------------
2268
+
2269
+ * bug #2357 Better handling of file name that is the same in multiple finder paths (keradus)
2270
+ * bug #2373 FunctionDeclarationFixer - Fix static anonymous functions (SpacePossum)
2271
+ * bug #2377 PhpdocSeparationFixer - Ignore incorrect PHPDoc (SpacePossum, keradus)
2272
+ * bug #2388 PhpdocAlignFixer - unicode characters support (SpacePossum)
2273
+ * bug #2399 HashToSlashCommentFixer - Fix edge cases (SpacePossum)
2274
+ * bug #2403 ClassDefinitionFixer - Anonymous classes format by PSR12 (SpacePossum)
2275
+ * bug #2408 SingleClassElementPerStatementFixer, PhpdocSeparationFixer - add missing WhitespacesAwareFixerInterface interface (keradus)
2276
+ * bug #2425 ClassKeywordRemoveFixer - Fix handling leading backslash and comments (SpacePossum)
2277
+ * bug #2430 PhpdocAlignFixer - Fix alignment of variadic params. (SpacePossum)
2278
+ * bug #2437 NoWhitespaceInBlankLineFixer - Fix more cases (SpacePossum)
2279
+ * bug #2444 MbStrFunctionsFixer - handle return reference in method declaration (SpacePossum)
2280
+ * bug #2449 PhpdocAlignFixer - don't crash poorly formatted phpdoc (GrahamCampbell)
2281
+ * bug #2477 BracesFixer - Do not remove white space inside declare statement (SpacePossum)
2282
+ * bug #2481 Fix priorities between declare_strict_types and blank_line_after_opening_tag (juliendufresne, keradus)
2283
+ * bug #2507 NoClosingTagFixer - Do not insert semicolon in comment (SpacePossum)
2284
+ * minor #2347 UPGRADE.md - Fix multi-row description (drAlberT, keradus)
2285
+ * minor #2352 Corrected method visibility (GrahamCampbell)
2286
+ * minor #2353 Fix: Typos (localheinz)
2287
+ * minor #2354 Enhancement: Allow to specify minimum and maximum PHP versions for code samples (localheinz)
2288
+ * minor #2356 Fixed spelling on "blank line" (GrahamCampbell)
2289
+ * minor #2361 ConfigurationResolver - Reject unknown rules (localheinz)
2290
+ * minor #2368 clean ups (SpacePossum, localheinz)
2291
+ * minor #2380 DescribeCommand - filter code samples and output note when none can be demonstrated (localheinz)
2292
+ * minor #2381 Tests - Do not use annotations for asserting exceptions (localheinz, keradus)
2293
+ * minor #2382 Consistently provide a default configuration field (localheinz)
2294
+ * minor #2383 update .php_cs.dist configuration (keradus)
2295
+ * minor #2386 PHP7.1 Integration test - Add features added in PHP7.1. (SpacePossum)
2296
+ * minor #2392 FixCommandHelp - fix typo (keradus)
2297
+ * minor #2393 Remove overcomplete tests (SpacePossum)
2298
+ * minor #2394 Update .gitattributes (SpacePossum)
2299
+ * minor #2395 NoEmptyCommentFixer - Fix typo (fritz-c)
2300
+ * minor #2396 MethodArgumentSpaceFixer - scope down endpoint (SpacePossum)
2301
+ * minor #2397 RuleSet - Check risky (SpacePossum, keradus)
2302
+ * minor #2400 Add Fixer descriptions (SpacePossum)
2303
+ * minor #2401 Fix UPGRADE.md (issei-m)
2304
+ * minor #2405 Transformers - Must be final (SpacePossum)
2305
+ * minor #2406 ProtectedToPrivateFixer - Use backticks for visibility in description (localheinz)
2306
+ * minor #2407 Add tests for not abusing interfaces (keradus)
2307
+ * minor #2410 DX: Keep packages sorted (localheinz)
2308
+ * minor #2412 Enhancement: Add more descriptions (localheinz)
2309
+ * minor #2413 Update Symfony ruleset (fabpot)
2310
+ * minor #2419 README.rst - use double backticks for code pieces in rule descriptions (keradus)
2311
+ * minor #2422 BracesFixer - cleanup code after introducing CT::T_FUNCTION_IMPORT (keradus)
2312
+ * minor #2426 .php_cs.dist - update local CS config (keradus)
2313
+ * minor #2428 SCA with Php Inspections (EA Extended) (kalessil)
2314
+ * minor #2433 AbstractFixerTestCase - give all the details available during catch (Slamdunk)
2315
+ * minor #2434 COOKBOOK-FIXERS.md - Replace reference to outdated class with current (greg0ire)
2316
+ * minor #2436 MethodArgumentSpaceFixer - Remove duplicate class name (greg0ire)
2317
+ * minor #2441 IndentationTypeFixer - Fix description and upgrade guide (SpacePossum)
2318
+ * minor #2443 AppVeyor - update configuration (keradus)
2319
+ * minor #2447 .php_cs.dist - update local CS config (keradus)
2320
+ * minor #2452 Provide rules definitions (keradus)
2321
+ * minor #2455 NoMultilineWhitespaceAroundDoubleArrowFixer - Add missing priority test (SpacePossum)
2322
+ * minor #2466 Provide rules definitions (keradus)
2323
+ * minor #2470 README.rst - explain the usage of "--path-mode" parameter (kalimatas)
2324
+ * minor #2474 Housekeeping (SpacePossum)
2325
+ * minor #2487 UPGRADE.md - Fix typo (SpacePossum)
2326
+ * minor #2493 FixCommand - Output warning message when both config and rules options are passed (SpacePossum)
2327
+ * minor #2496 DX: Travis - check for trailing spaces (keradus)
2328
+ * minor #2499 FileSpecificCodeSample - Specify class name relative to root namespace (localheinz, keradus)
2329
+ * minor #2506 SCA (SpacePossum)
2330
+ * minor #2515 Fix code indentation (keradus)
2331
+ * minor #2521 SCA trailing spces check - ouput lines with trailing white space (SpacePossum)
2332
+ * minor #2522 Fix docs and small code issues (keradus)
2333
+
2334
+ Changelog for v2.0.0
2335
+ --------------------
2336
+
2337
+ * bug #1001 MethodArgumentSpaceFixer - no need for multiple executions (keradus)
2338
+ * bug #1006 NewWithBracesFixer - fix by adding BraceClassInstantiationTransformer (sstok)
2339
+ * bug #1077 ConfigInterface - add missing methods (localheinz)
2340
+ * bug #1103 added missing keyword token (gharlan)
2341
+ * bug #1107 Added ImportTransformer (gharlan)
2342
+ * bug #1157 Prevent token collection corruption by fixers (keradus, stof)
2343
+ * bug #1256 Do not write the fixed output twice (SpacePossum)
2344
+ * bug #1405 Linter - fix ignoring input parameter for constructor (keradus)
2345
+ * bug #1414 Linter - fix escaping the php binary (GrahamCampbell, keradus)
2346
+ * bug #1606 Fixer - remove duplicate file_get_contents call (gharlan)
2347
+ * bug #1629 Fix linting test cases (gharlan)
2348
+ * bug #1800 ConfigurationResolver - Fix resolving intersection path (keradus)
2349
+ * bug #1809 NoMultilineWhitespaceBeforeSemicolonsFixer - Semicolon should not be moved into comment (SpacePossum)
2350
+ * bug #1838 BracesFixer - Removes line break (SpacePossum)
2351
+ * bug #1847 Runner - always cache files, not only when something is changed (gharlan)
2352
+ * bug #1852 ConfigurationResolver - disallow empty rule name (keradus)
2353
+ * bug #1855 FixCommand - fix passing NullLinter to Runner (keradus)
2354
+ * bug #1926 NoUselessElseFixer - fix wrong if handling (SpacePossum)
2355
+ * bug #1946 NoEmptyCommentFixer - Only remove complete empty comment blocks (SpacePossum)
2356
+ * bug #1965 AbstractPsrAutoloadingFixer - fix edge case of halting compiler for PHP 5.3 (keradus)
2357
+ * bug #1974 composer.json - fix dependencies for PHP 5.3.6 (keradus)
2358
+ * bug #2025 NoShortEchoTagFixer - adjust isCandidate check for hhvm (keradus)
2359
+ * bug #2039 NoExtraConsecutiveBlankLinesFixer - Fix curly brace open false positive (SpacePossum)
2360
+ * bug #2044 SingleClassElementPerStatementFixer - fix array handling (keradus)
2361
+ * bug #2063 ConfigurationResolver - passing non-existing path is ignored (keradus)
2362
+ * bug #2236 .gitattributes - fix ignoring tests during export (keradus)
2363
+ * bug #2241 XmlReporter - fix used getter (keradus)
2364
+ * bug #2283 FixCommand - Fix resolving format option (SpacePossum, keradus)
2365
+ * bug #2287 NoExtraConsecutiveBlankLinesFixer - fix bug that removes empty line already after scope end (keradus)
2366
+ * bug #2290 FixCommand - fix progress (keradus)
2367
+ * bug #2292 GeneralPhpdocAnnotation*Fixer::configure - add missing return (keradus)
2368
+ * bug #2305 ProcessLinter - fix running under phpdbg (keradus)
2369
+ * feature #1076 Enhancement: Allow to specify cache file (localheinz, keradus)
2370
+ * feature #1088 JoinFunctionFixer -> AliasFunctionsFixer (kalessil)
2371
+ * feature #1275 Added PhpdocInlineTagFixer (SpacePossum, keradus)
2372
+ * feature #1292 Added MethodSeparationFixer (SpacePossum)
2373
+ * feature #1383 Introduce rules and sets (keradus)
2374
+ * feature #1416 Mark fixers as risky (keradus)
2375
+ * feature #1440 Made AbstractFixerTestCase and AbstractIntegrationTestCase public (keradus)
2376
+ * feature #1489 Added Psr4Fixer (GrahamCampbell)
2377
+ * feature #1497 ExtraEmptyLinesFixer - allow to remove empty blank lines after configured tags (SpacePossum)
2378
+ * feature #1529 Added PhpdocPropertyFixer, refactored Tag and Annotation (GrahamCampbell)
2379
+ * feature #1628 Added OrderedClassElementsFixer (gharlan)
2380
+ * feature #1742 path argument is used to create an intersection with existing finder (keradus, gharlan)
2381
+ * feature #1779 Added GeneralPhpdocAnnotationRemoveFixer, GeneralPhpdocAnnotationRenameFixer (keradus)
2382
+ * feature #1811 Added NoSpacesInsideOfssetFixer (phansys)
2383
+ * feature #1819 Added DirConstantFixer, ModernizeTypesCastingFixer, RandomApiMigrationFixer (kalessil, SpacePossum, keradus)
2384
+ * feature #1825 Added junit format (ekho)
2385
+ * feature #1862 FixerFactory - Do not allow conflicting fixers (SpacePossum)
2386
+ * feature #1888 Cache refactoring, better cache handling in dry-run mode (localheinz)
2387
+ * feature #1889 Added SingleClassElementPerStatementFixer (phansys, SpacePossum)
2388
+ * feature #1903 FixCommand - allow to pass multiple path argument (keradus)
2389
+ * feature #1913 Introduce path-mode CLI option (keradus)
2390
+ * feature #1949 Added DeclareStrictTypesFixer, introduce options for HeaderCommentFixer (Seldaek, SpacePossum, keradus)
2391
+ * feature #1955 Introduce CT_ARRAY_INDEX_CURLY_BRACE_OPEN and CT_ARRAY_INDEX_CURLY_BRACE_CLOSE (keradus)
2392
+ * feature #1958 Added NormalizeIndexBraceFixer (keradus)
2393
+ * feature #2069 Add semicolon after instruction fixer (SpacePossum)
2394
+ * feature #2089 Add `no_spaces_around_offset` fixer (phansys)
2395
+ * feature #2179 BinaryOperatorSpacesFixer - add (un)align configuration options (SpacePossum)
2396
+ * feature #2192 Add PowToExponentiationFixer (SpacePossum, keradus)
2397
+ * feature #2207 Added ReturnTypeDeclarationFixer (keradus)
2398
+ * feature #2213 VisibilityRequiredFixer - Add support for class const visibility added in PHP7.1. (SpacePossum)
2399
+ * feature #2221 Add support for user-defined whitespaces (keradus)
2400
+ * feature #2244 Config cleanup (keradus, SpacePossum)
2401
+ * feature #2247 PhpdocAnnotationWithoutDotFixer - support more cases (keradus)
2402
+ * feature #2289 Add PhpdocAddMissingParamAnnotationFixer (keradus)
2403
+ * feature #2331 Add DescribeCommand (keradus, SpacePossum)
2404
+ * feature #2332 New colours of diff on console (keradus)
2405
+ * feature #829 add support for .php_cs.dist file (keradus)
2406
+ * feature #998 MethodArgumentSpaceFixer - enhance, now only one space after comma (trilopin, keradus)
2407
+ * minor #1007 Simplify Transformers (keradus)
2408
+ * minor #1050 Make Config's setDir() fluent like the rest of methods (gonzaloserrano)
2409
+ * minor #1062 Added NamespaceOperatorTransformer (gharlan)
2410
+ * minor #1078 Exit status should be 0 if there are no errors (gharlan)
2411
+ * minor #1101 CS: fix project itself (localheinz)
2412
+ * minor #1102 Enhancement: List errors occurred before, during and after fixing (localheinz)
2413
+ * minor #1105 Token::isStructureAlternativeEnd - remove unused method (keradus)
2414
+ * minor #1106 readme grooming (SpacePossum, keradus)
2415
+ * minor #1115 Fixer - simplify flow (keradus)
2416
+ * minor #1118 Process output refactor (SpacePossum)
2417
+ * minor #1132 Linter - public methods should be first (keradus)
2418
+ * minor #1134 Token::isWhitespace - simplify interface (keradus)
2419
+ * minor #1140 FixerInterface - check if fixer should be applied by isCandidate method (keradus)
2420
+ * minor #1146 Linter - detect executable (keradus)
2421
+ * minor #1156 deleted old ConfigurationResolver class (keradus)
2422
+ * minor #1160 Grammar fix to README (Falkirks)
2423
+ * minor #1174 DefaultFinder - boost performance by not filtering when files array is empty (keradus)
2424
+ * minor #1179 Exit with non-zero if invalid files were detected prior to fixing (localheinz)
2425
+ * minor #1186 Finder - do not search for .xml and .yml files (keradus)
2426
+ * minor #1206 BracesFixer::getClassyTokens - remove duplicated method (keradus)
2427
+ * minor #1222 Made fixers final (GrahamCampbell)
2428
+ * minor #1229 Tokens - Fix PHPDoc (SpacePossum)
2429
+ * minor #1241 More details on exceptions. (SpacePossum)
2430
+ * minor #1263 Made internal classes final (GrahamCampbell)
2431
+ * minor #1272 Readme - Add spaces around PHP-CS-Fixer headers (Soullivaneuh)
2432
+ * minor #1283 Error - Fixed type phpdoc (GrahamCampbell)
2433
+ * minor #1284 Token - Fix PHPDoc (SpacePossum)
2434
+ * minor #1314 Added missing internal annotations (keradus)
2435
+ * minor #1329 Psr0Fixer - move to contrib level (gharlan)
2436
+ * minor #1340 Clean ups (SpacePossum)
2437
+ * minor #1341 Linter - throw exception when write fails (SpacePossum)
2438
+ * minor #1348 Linter - Prefer error output when throwing a linting exception (GrahamCampbell)
2439
+ * minor #1350 Add "phpt" as a valid extension (henriquemoody)
2440
+ * minor #1376 Add time and memory to XML report (junichi11)
2441
+ * minor #1387 Made all test classes final (keradus)
2442
+ * minor #1388 Made all tests internal (keradus)
2443
+ * minor #1390 Added ProjectCodeTest that tests if all classes inside tests are internal and final or abstract (keradus)
2444
+ * minor #1391 Fixer::getLevelAsString is no longer static (keradus)
2445
+ * minor #1392 Add report to XML report as the root node (junichi11)
2446
+ * minor #1394 Stop mixing level from config file and fixers from CLI arg when one of fixers has dash (keradus)
2447
+ * minor #1426 MethodSeparationFixer - Fix spacing around comments (SpacePossum, keradus)
2448
+ * minor #1432 Fixer check on factory (Soullivaneuh)
2449
+ * minor #1434 Add Test\AccessibleObject class (keradus)
2450
+ * minor #1442 FixerFactory - disallow to register multiple fixers with same name (keradus)
2451
+ * minor #1477 rename PhpdocShortDescriptionFixer into PhpdocSummaryFixer (keradus)
2452
+ * minor #1481 Fix running the tests (keradus)
2453
+ * minor #1482 move AbstractTransformerTestBase class outside Tests dir (keradus)
2454
+ * minor #1530 Added missing internal annotation (GrahamCampbell)
2455
+ * minor #1534 Clean ups (SpacePossum)
2456
+ * minor #1536 Typo fix (fabpot)
2457
+ * minor #1555 Fixed indentation in composer.json (GrahamCampbell)
2458
+ * minor #1558 [2.0] Cleanup the tags property in the abstract phpdoc types fixer (GrahamCampbell)
2459
+ * minor #1567 PrintToEchoFixer - add to symfony rule set (gharlan)
2460
+ * minor #1607 performance improvement (gharlan)
2461
+ * minor #1621 Switch to PSR-4 (keradus)
2462
+ * minor #1631 Configuration exceptions exception cases on master. (SpacePossum)
2463
+ * minor #1646 Remove non-default Config/Finder classes (keradus)
2464
+ * minor #1648 Fixer - avoid extra calls to getFileRelativePathname (GrahamCampbell)
2465
+ * minor #1649 Consider the php version when caching (GrahamCampbell)
2466
+ * minor #1652 Rename namespace "Symfony\CS" to "PhpCsFixer" (gharlan)
2467
+ * minor #1666 new Runner, ProcessOutputInterface, DifferInterface and ResultInterface (keradus)
2468
+ * minor #1674 Config - add addCustomFixers method (PedroTroller)
2469
+ * minor #1677 Enhance tests (keradus)
2470
+ * minor #1695 Rename Fixers (keradus)
2471
+ * minor #1702 Upgrade guide (keradus)
2472
+ * minor #1707 ExtraEmptyLinesFixer - fix configure docs (keradus)
2473
+ * minor #1712 NoExtraConsecutiveBlankLinesFixer - Remove blankline after curly brace open (SpacePossum)
2474
+ * minor #1718 CLI: rename --config-file argument (keradus)
2475
+ * minor #1722 Renamed not_operators_with_space to not_operator_with_space (GrahamCampbell)
2476
+ * minor #1728 PhpdocNoSimplifiedNullReturnFixer - rename back to PhpdocNoEmptyReturnFixer (keradus)
2477
+ * minor #1729 Renamed whitespacy_lines to no_whitespace_in_blank_lines (GrahamCampbell)
2478
+ * minor #1731 FixCommand - value for config option is required (keradus)
2479
+ * minor #1732 move fixer classes from level subdirs to thematic subdirs (gharlan, keradus)
2480
+ * minor #1733 ConfigurationResolver - look for .php_cs file in cwd as well (keradus)
2481
+ * minor #1737 RuleSet/FixerFactory - sort arrays content (keradus)
2482
+ * minor #1751 FixerInterface::configure - method should always override configuration, not patch it (keradus)
2483
+ * minor #1752 Remove unused code (keradus)
2484
+ * minor #1756 Finder - clean up code (keradus)
2485
+ * minor #1757 Psr0Fixer - change way of configuring the fixer (keradus)
2486
+ * minor #1762 Remove ConfigInterface::getDir, ConfigInterface::setDir, Finder::setDir and whole FinderInterface (keradus)
2487
+ * minor #1764 Remove ConfigAwareInterface (keradus)
2488
+ * minor #1780 AbstractFixer - throw error on configuring non-configurable Fixer (keradus)
2489
+ * minor #1782 rename fixers (gharlan)
2490
+ * minor #1815 NoSpacesInsideParenthesisFixer - simplify implementation (keradus)
2491
+ * minor #1821 Ensure that PhpUnitDedicateAssertFixer runs after NoAliasFunctionsFixer, clean up NoEmptyCommentFixer (SpacePossum)
2492
+ * minor #1824 Reporting extracted to separate classes (ekho, keradus, SpacePossum)
2493
+ * minor #1826 Fixer - remove measuring fixing time per file (keradus)
2494
+ * minor #1843 FileFilterIterator - add missing import (GrahamCampbell)
2495
+ * minor #1845 FileCacheManager - Allow linting to determine the cache state too (GrahamCampbell)
2496
+ * minor #1846 FileFilterIterator - Corrected an iterator typehint (GrahamCampbell)
2497
+ * minor #1848 DocBlock - Remove some old unused phpdoc tags (GrahamCampbell)
2498
+ * minor #1856 NoDuplicateSemicolonsFixer - Remove overcomplete fixer (SpacePossum)
2499
+ * minor #1861 Fix: Ofsset should be Offset (localheinz)
2500
+ * minor #1867 Print non-report output to stdErr (SpacePossum, keradus)
2501
+ * minor #1873 Enhancement: Show path to cache file if it exists (localheinz)
2502
+ * minor #1875 renamed Composer package (fabpot)
2503
+ * minor #1882 Runner - Handle throwables too (GrahamCampbell)
2504
+ * minor #1886 PhpdocScalarFixer - Fix lowercase str to string too (GrahamCampbell)
2505
+ * minor #1940 README.rst - update CI example (keradus)
2506
+ * minor #1947 SCA, CS, add more tests (SpacePossum, keradus)
2507
+ * minor #1954 tests - stop using deprecated method (sebastianbergmann)
2508
+ * minor #1962 TextDiffTest - tests should not produce cache file (keradus)
2509
+ * minor #1973 Introduce fast PHP7 based linter (keradus)
2510
+ * minor #1999 Runner - No need to determine relative file name twice (localheinz)
2511
+ * minor #2002 FileCacheManagerTest - Adjust name of test and variable (localheinz)
2512
+ * minor #2010 NoExtraConsecutiveBlankLinesFixer - SF rule set, add 'extra' (SpacePossum)
2513
+ * minor #2013 no_whitespace_in_blank_lines -> no_whitespace_in_blank_line (SpacePossum)
2514
+ * minor #2024 AbstractFixerTestCase - check if there is no duplicated Token instance inside Tokens collection (keradus)
2515
+ * minor #2031 COOKBOOK-FIXERS.md - update calling doTest method (keradus)
2516
+ * minor #2032 code grooming (keradus)
2517
+ * minor #2068 Code grooming (keradus)
2518
+ * minor #2073 DeclareStrictTypesFixer - Remove fix CS fix logic from fixer. (SpacePossum)
2519
+ * minor #2088 TokenizerLintingResult - expose line number of parsing error (keradus)
2520
+ * minor #2093 Tokens - add block type BLOCK_TYPE_ARRAY_INDEX_CURLY_BRACE (SpacePossum)
2521
+ * minor #2095 Transformers - add required PHP version (keradus)
2522
+ * minor #2096 Introduce CT for PHP7 (keradus)
2523
+ * minor #2119 Create @Symfony:risky ruleset (keradus)
2524
+ * minor #2163 ClassKeywordRemoveFixerTest - Fix tests (SpacePossum)
2525
+ * minor #2180 FixCommand - don't refer to renamed rules (keradus)
2526
+ * minor #2181 Disallow to disable linter (keradus)
2527
+ * minor #2194 semicolon_after_instruction,no_unneeded_control_parentheses prio issue (SpacePossum)
2528
+ * minor #2199 make fixers less risky (SpacePossum)
2529
+ * minor #2206 Add PHP70Migration ruleset (keradus)
2530
+ * minor #2217 SelfUpdateCommand - Print version of update fixer (SpacePossum)
2531
+ * minor #2223 update integration test format (keradus)
2532
+ * minor #2227 Stop polluting global namespace with CT (keradus)
2533
+ * minor #2237 DX: extend integration tests for PSR2 and Symfony rulesets (keradus)
2534
+ * minor #2240 Make some objects immutable (keradus)
2535
+ * minor #2251 ProtectedToPrivateFixer - fix priority, fix comments with new fixer names (SpacePossum)
2536
+ * minor #2252 ClassDefinitionFixer - Set configuration of the fixer in the RuleSet of SF. (SpacePossum)
2537
+ * minor #2257 extend Symfony_whitespaces itest (keradus)
2538
+ * minor #2258 README.rst - indicate configurable rules (keradus)
2539
+ * minor #2267 RuleSet - validate set (keradus)
2540
+ * minor #2268 Use strict parameters for PHP functions (keradus)
2541
+ * minor #2273 fixed typo (fabpot)
2542
+ * minor #2274 ShortArraySyntaxFixer/LongArraySyntaxFixer - Merge conflicting fixers (SpacePossum)
2543
+ * minor #2275 Clean ups (SpacePossum)
2544
+ * minor #2278 Concat*Fixer - unify concat fixers (SpacePossum, keradus)
2545
+ * minor #2279 Use Prophecy (keradus)
2546
+ * minor #2284 Code grooming (SpacePossum)
2547
+ * minor #2285 IntegrationCase is now aware about RuleSet but not Fixers (keradus, SpacePossum)
2548
+ * minor #2286 Phpdoc*Fixer - unify rename fixers (SpacePossum, keradus)
2549
+ * minor #2288 FixerInterface::configure(null) reset fixer to use default configuration (keradus)
2550
+ * minor #2291 Make fixers ready to use directly after creation (keradus)
2551
+ * minor #2295 Code grooming (keradus)
2552
+ * minor #2296 ProjectCodeTest - make test part of regular testsuite, not standalone one (keradus)
2553
+ * minor #2298 ConfigurationResolver - grooming (SpacePossum)
2554
+ * minor #2300 Simplify rule set (SpacePossum, keradus)
2555
+ * minor #2306 DeclareStrictTypesFixer - do not move tokens (SpacePossum)
2556
+ * minor #2312 RuleSet - sort rules (localheinz)
2557
+ * minor #2313 DX: provide doctyping for tests (keradus)
2558
+ * minor #2317 Add utests (keradus)
2559
+ * minor #2318 *TestCase - Reduce visibility of setUp() (localheinz)
2560
+ * minor #2319 Code grooming (keradus)
2561
+ * minor #2322 DX: use whitemessy aware assertion (keradus)
2562
+ * minor #2324 Echo|Print*Fixer - unify printing fixers (SpacePossum, keradus)
2563
+ * minor #2337 Normalize rule naming (keradus)
2564
+ * minor #2338 Drop hacks for unsupported HHVM (keradus)
2565
+ * minor #2339 Add some Fixer descriptions (SpacePossum, keradus)
2566
+ * minor #2343 PowToExponentiationFixer - allow to run on 5.6.0 as well (keradus)
2567
+ * minor #767 Add @internal tag (keradus)
2568
+ * minor #807 Tokens::isMethodNameIsMagic - remove unused method (keradus)
2569
+ * minor #809 Split Tokens into Tokens and TokensAnalyzer (keradus)
2570
+ * minor #844 Renamed phpdoc_params to phpdoc_align (GrahamCampbell)
2571
+ * minor #854 Change default level to PSR2 (keradus)
2572
+ * minor #873 Config - using cache by default (keradus)
2573
+ * minor #902 change FixerInterface (keradus)
2574
+ * minor #911 remove Token::$line (keradus)
2575
+ * minor #914 All Transformer classes should be named with Transformer as suffix (keradus)
2576
+ * minor #915 add UseTransformer (keradus)
2577
+ * minor #916 add ArraySquareBraceTransformer (keradus)
2578
+ * minor #917 clean up Transformer tests (keradus)
2579
+ * minor #919 CurlyBraceTransformer - one transformer to handle all curly braces transformations (keradus)
2580
+ * minor #928 remove Token::getLine (keradus)
2581
+ * minor #929 add WhitespacyCommentTransformer (keradus)
2582
+ * minor #937 fix docs/typehinting in few classes (keradus)
2583
+ * minor #958 FileCacheManager - remove code for BC support (keradus)
2584
+ * minor #979 Improve Tokens::clearEmptyTokens performance (keradus)
2585
+ * minor #981 Tokens - code grooming (keradus)
2586
+ * minor #988 Fixers - no need to search for tokens of given kind in extra loop (keradus)
2587
+ * minor #989 No need for loop in Token::equals (keradus)
2588
+
2589
+ Changelog for v1.13.3
2590
+ ---------------------
2591
+
2592
+ * minor #3042 Update gitter address (keradus)
2593
+
2594
+ Changelog for v1.13.2
2595
+ ---------------------
2596
+
2597
+ * minor #2946 Detect extra old installations (keradus)
2598
+
2599
+ Changelog for v1.13.1
2600
+ ---------------------
2601
+
2602
+ * minor #2342 Application - adjust test to not depend on symfony/console version (keradus)
2603
+ * minor #2344 AppVeyor: enforce PHP version (keradus)
2604
+
2605
+ Changelog for v1.13.0
2606
+ ---------------------
2607
+
2608
+ * bug #2303 ClassDefinitionFixer - Anonymous classes fixing (SpacePossum)
2609
+ * feature #2208 Added fixer for PHPUnit's @expectedException annotation (ro0NL)
2610
+ * feature #2249 Added ProtectedToPrivateFixer (Slamdunk, SpacePossum)
2611
+ * feature #2264 SelfUpdateCommand - Do not update to next major version by default (SpacePossum)
2612
+ * feature #2328 ClassDefinitionFixer - Anonymous classes format by PSR12 (SpacePossum)
2613
+ * feature #2333 PhpUnitFqcnAnnotationFixer - support more annotations (keradus)
2614
+ * minor #2256 EmptyReturnFixer - it's now risky fixer due to null vs void (keradus)
2615
+ * minor #2281 Add issue template (SpacePossum)
2616
+ * minor #2307 Update .editorconfig (SpacePossum)
2617
+ * minor #2310 CI: update AppVeyor to use newest PHP, silence the composer (keradus)
2618
+ * minor #2315 Token - Deprecate getLine() (SpacePossum)
2619
+ * minor #2320 Clear up status code on 1.x (SpacePossum)
2620
+
2621
+ Changelog for v1.12.4
2622
+ ---------------------
2623
+
2624
+ * bug #2235 OrderedImportsFixer - PHP 7 group imports support (SpacePossum)
2625
+ * minor #2276 Tokens cleanup (keradus)
2626
+ * minor #2277 Remove trailing spaces (keradus)
2627
+ * minor #2294 Improve Travis configuration (keradus)
2628
+ * minor #2297 Use phpdbg instead of xdebug (keradus)
2629
+ * minor #2299 Travis: proper xdebug disabling (keradus)
2630
+ * minor #2301 Travis: update platform adjusting (keradus)
2631
+
2632
+ Changelog for v1.12.3
2633
+ ---------------------
2634
+
2635
+ * bug #2155 ClassDefinitionFixer - overhaul (SpacePossum)
2636
+ * bug #2187 MultipleUseFixer - Fix handling comments (SpacePossum)
2637
+ * bug #2209 LinefeedFixer - Fix in a safe way (SpacePossum)
2638
+ * bug #2228 NoEmptyLinesAfterPhpdocs, SingleBlankLineBeforeNamespace - Fix priority (SpacePossum)
2639
+ * bug #2230 FunctionDeclarationFixer - Fix T_USE case (SpacePossum)
2640
+ * bug #2232 Add a test for style of varaible decalration : var (daiglej)
2641
+ * bug #2246 Fix itest requirements (keradus)
2642
+ * minor #2238 .gitattributes - specified line endings (keradus)
2643
+ * minor #2239 IntegrationCase - no longer internal (keradus)
2644
+
2645
+ Changelog for v1.12.2
2646
+ ---------------------
2647
+
2648
+ * bug #2191 PhpdocToCommentFixer - fix false positive for docblock of variable (keradus)
2649
+ * bug #2193 UnneededControlParenthesesFixer - Fix more return cases. (SpacePossum)
2650
+ * bug #2198 FileCacheManager - fix exception message and undefined property (j0k3r)
2651
+ * minor #2170 Add dollar sign prefix for consistency (bcremer)
2652
+ * minor #2190 .travis.yml - improve Travis speed for tags (keradus)
2653
+ * minor #2196 PhpdocTypesFixer - support iterable type (GrahamCampbell)
2654
+ * minor #2197 Update cookbook and readme (g105b, SpacePossum)
2655
+ * minor #2203 README.rst - change formatting (ro0NL)
2656
+ * minor #2204 FixCommand - clean unused var (keradus)
2657
+ * minor #2205 Add integration test for iterable type (keradus)
2658
+
2659
+ Changelog for v1.12.1
2660
+ ---------------------
2661
+
2662
+ * bug #2144 Remove temporary files not deleted by destructor on failure (adawolfa)
2663
+ * bug #2150 SelfUpdateCommand: resolve symlink (julienfalque)
2664
+ * bug #2162 Fix issue where an exception is thrown if the cache file exists but is empty. (ikari7789)
2665
+ * bug #2164 OperatorsSpacesFixer - Do not unalign double arrow and equals operators (SpacePossum)
2666
+ * bug #2167 Rewrite file removal (keradus)
2667
+ * minor #2152 Code cleanup (keradus)
2668
+ * minor #2154 ShutdownFileRemoval - Fixed file header (GrahamCampbell)
2669
+
2670
+ Changelog for v1.12.0
2671
+ ---------------------
2672
+
2673
+ * feature #1493 Added MethodArgumentDefaultValueFixer (lmanzke)
2674
+ * feature #1495 BracesFixer - added support for declare (EspadaV8)
2675
+ * feature #1518 Added ClassDefinitionFixer (SpacePossum)
2676
+ * feature #1543 [PSR-2] Switch case space fixer (Soullivaneuh)
2677
+ * feature #1577 Added SpacesAfterSemicolonFixer (SpacePossum)
2678
+ * feature #1580 Added HeredocToNowdocFixer (gharlan)
2679
+ * feature #1581 UnneededControlParenthesesFixer - add "break" and "continue" support (gharlan)
2680
+ * feature #1610 HashToSlashCommentFixer - Add (SpacePossum)
2681
+ * feature #1613 ScalarCastFixer - LowerCaseCastFixer - Add (SpacePossum)
2682
+ * feature #1659 NativeFunctionCasingFixer - Add (SpacePossum)
2683
+ * feature #1661 SwitchCaseSemicolonToColonFixer - Add (SpacePossum)
2684
+ * feature #1662 Added CombineConsecutiveUnsetsFixer (SpacePossum)
2685
+ * feature #1671 Added NoEmptyStatementFixer (SpacePossum)
2686
+ * feature #1705 Added NoUselessReturnFixer (SpacePossum, keradus)
2687
+ * feature #1735 Added NoTrailingWhitespaceInCommentFixer (keradus)
2688
+ * feature #1750 Add PhpdocSingleLineVarSpacingFixer (SpacePossum)
2689
+ * feature #1765 Added NoEmptyPhpdocFixer (SpacePossum)
2690
+ * feature #1773 Add NoUselessElseFixer (gharlan, SpacePossum)
2691
+ * feature #1786 Added NoEmptyCommentFixer (SpacePossum)
2692
+ * feature #1792 Add PhpUnitDedicateAssertFixer. (SpacePossum)
2693
+ * feature #1894 BracesFixer - correctly fix indents of anonymous functions/classes (gharlan)
2694
+ * feature #1985 Added ClassKeywordRemoveFixer (Soullivaneuh)
2695
+ * feature #2020 Added PhpdocAnnotationWithoutDotFixer (keradus)
2696
+ * feature #2067 Added DeclareEqualNormalizeFixer (keradus)
2697
+ * feature #2078 Added SilencedDeprecationErrorFixer (HeahDude)
2698
+ * feature #2082 Added MbStrFunctionsFixer (Slamdunk)
2699
+ * bug #1657 SwitchCaseSpaceFixer - Fix spacing between 'case' and semicolon (SpacePossum)
2700
+ * bug #1684 SpacesAfterSemicolonFixer - fix loops handling (SpacePossum, keradus)
2701
+ * bug #1700 Fixer - resolve import conflict (keradus)
2702
+ * bug #1836 NoUselessReturnFixer - Do not remove return if last statement in short if statement (SpacePossum)
2703
+ * bug #1879 HeredocToNowdocFixer - Handle space in heredoc token (SpacePossum)
2704
+ * bug #1896 FixCommand - Fix escaping of diff output (SpacePossum)
2705
+ * bug #2034 IncludeFixer - fix support for close tag (SpacePossum)
2706
+ * bug #2040 PhpdocAnnotationWithoutDotFixer - fix crash on odd character (keradus)
2707
+ * bug #2041 DefaultFinder should implement FinderInterface (keradus)
2708
+ * bug #2050 PhpdocAnnotationWithoutDotFixer - handle ellipsis (keradus)
2709
+ * bug #2051 NativeFunctionCasingFixer - call to constructor with default NS of class with name matching native function name fix (SpacePossum)
2710
+ * minor #1538 Added possibility to lint tests (gharlan)
2711
+ * minor #1569 Add sample to get a specific version of the fixer (Soullivaneuh)
2712
+ * minor #1571 Enhance integration tests (keradus)
2713
+ * minor #1578 Code grooming (keradus)
2714
+ * minor #1583 Travis - update matrix (keradus)
2715
+ * minor #1585 Code grooming - Improve utests code coverage (SpacePossum)
2716
+ * minor #1586 Add configuration exception classes and exit codes (SpacePossum)
2717
+ * minor #1594 Fix invalid PHP code samples in utests (SpacePossum)
2718
+ * minor #1597 MethodArgumentDefaultValueFixer - refactoring and fix closures with "use" clause (gharlan)
2719
+ * minor #1600 Added more integration tests (SpacePossum, keradus)
2720
+ * minor #1605 integration tests - swap EXPECT and INPUT (optional INPUT) (gharlan)
2721
+ * minor #1608 Travis - change matrix order for faster results (gharlan)
2722
+ * minor #1609 CONTRIBUTING.md - Don't rebase always on master (SpacePossum)
2723
+ * minor #1616 IncludeFixer - fix and test more cases (SpacePossum)
2724
+ * minor #1622 AbstractIntegratationTest - fix linting test cases (gharlan)
2725
+ * minor #1624 fix invalid code in test cases (gharlan)
2726
+ * minor #1625 Travis - switch to trusty (keradus)
2727
+ * minor #1627 FixCommand - fix output (keradus)
2728
+ * minor #1630 Pass along the exception code. (SpacePossum)
2729
+ * minor #1632 Php Inspections (EA Extended): SCA for 1.12 (kalessil)
2730
+ * minor #1633 Fix CS for project itself (keradus)
2731
+ * minor #1634 Backport some minor changes from 2.x line (keradus)
2732
+ * minor #1637 update PHP Coveralls (keradus)
2733
+ * minor #1639 Revert "Travis - set dist to trusty" (keradus)
2734
+ * minor #1641 AppVeyor/Travis - use GITHUB_OAUTH_TOKEN (keradus)
2735
+ * minor #1642 AppVeyor - install dev deps as well (keradus)
2736
+ * minor #1647 Deprecate non-default Configs and Finders (keradus)
2737
+ * minor #1654 Split output to stderr and stdout (SpacePossum)
2738
+ * minor #1660 update phpunit version (gharlan)
2739
+ * minor #1663 DuplicateSemicolonFixer - Remove duplicate semicolons even if there are comments between those (SpacePossum)
2740
+ * minor #1664 IncludeFixer - Add missing test case (SpacePossum)
2741
+ * minor #1668 Code grooming (keradus)
2742
+ * minor #1669 NativeFunctionCasingFixer - move to Symfony level (keradus)
2743
+ * minor #1670 Backport Finder and Config classes from 2.x line (keradus)
2744
+ * minor #1682 ElseifFixer - handle comments (SpacePossum)
2745
+ * minor #1689 AbstractIntegrationTest - no need for single-char group and docs grooming (keradus)
2746
+ * minor #1690 Integration tests - allow to not check priority, introduce IntegrationCase (keradus)
2747
+ * minor #1701 Fixer - Renamed import alias (GrahamCampbell)
2748
+ * minor #1708 Update composer.json requirements (keradus)
2749
+ * minor #1734 Travis: Turn on linting (keradus)
2750
+ * minor #1736 Integration tests - don't check priority for tests using short_tag fixer (keradus)
2751
+ * minor #1739 NoTrailingWhitespaceInCommentFixer - move to PSR2 level (keradus)
2752
+ * minor #1763 Deprecate ConfigInterface::getDir, ConfigInterface::setDir, Finder::setDir (keradus)
2753
+ * minor #1777 NoTrailingWhitespaceInCommentFixer - fix parent class (keradus)
2754
+ * minor #1816 PhpUnitDedicateAssertFixer - configuration is not required anymore (keradus)
2755
+ * minor #1849 DocBlock - The category tag should be together with package (GrahamCampbell)
2756
+ * minor #1870 Update README.rst (glensc)
2757
+ * minor #1880 FixCommand - fix stdErr detection (SpacePossum)
2758
+ * minor #1881 NoEmptyStatementFixer - handle anonymous classes correctly (gharlan)
2759
+ * minor #1906 .php_cs - use no_useless_else rule (keradus)
2760
+ * minor #1915 NoEmptyComment - move to Symfony level (SpacePossum)
2761
+ * minor #1917 BracesFixer - fixed comment handling (gharlan)
2762
+ * minor #1919 EmptyReturnFixer - move fixer outside of Symfony level (keradus)
2763
+ * minor #2036 OrderedUseFixer - adjust tests (keradus)
2764
+ * minor #2056 Travis - run nightly PHP (keradus)
2765
+ * minor #2061 UnusedUseFixer and LineAfterNamespace - add new integration test (keradus)
2766
+ * minor #2097 Add lambda tests for 7.0 and 7.1 (SpacePossum)
2767
+ * minor #2111 .travis.yml - rename PHP 7.1 env (keradus)
2768
+ * minor #2112 Fix 1.12 line (keradus)
2769
+ * minor #2118 SilencedDeprecationErrorFixer - adjust level (keradus)
2770
+ * minor #2132 composer.json - rename package name (keradus)
2771
+ * minor #2133 Apply ordered_class_elements rule (keradus)
2772
+ * minor #2138 composer.json - disallow to run on PHP 7.2+ (keradus)
2773
+
2774
+ Changelog for v1.11.8
2775
+ ---------------------
2776
+
2777
+ * bug #2143 ReadmeCommand - fix running command on phar file (keradus)
2778
+ * minor #2129 Add .gitattributes to remove unneeded files (Slamdunk)
2779
+ * minor #2141 Move phar building to PHP 5.6 job as newest box.phar is no longer working on 5.3 (keradus)
2780
+
2781
+ Changelog for v1.11.7
2782
+ ---------------------
2783
+
2784
+ * bug #2108 ShortArraySyntaxFixer, TernarySpacesFixer, UnalignEqualsFixer - fix priority bug (SpacePossum)
2785
+ * bug #2092 ConcatWithoutSpacesFixer, OperatorsSpacesFixer - fix too many spaces, fix incorrect fixing of lines with comments (SpacePossum)
2786
+
2787
+ Changelog for v1.11.6
2788
+ ---------------------
2789
+
2790
+ * bug #2086 Braces - fix bug with comment in method prototype (keradus)
2791
+ * bug #2077 SingleLineAfterImportsFixer - Do not remove lines between use cases (SpacePossum)
2792
+ * bug #2079 TernarySpacesFixer - Remove multiple spaces (SpacePossum)
2793
+ * bug #2087 Fixer - handle PHP7 Errors as well (keradus)
2794
+ * bug #2072 LowercaseKeywordsFixer - handle CT_CLASS_CONSTANT (tgabi333)
2795
+ * bug #2066 LineAfterNamespaceFixer - Handle close tag (SpacePossum)
2796
+ * bug #2057 LineAfterNamespaceFixer - adding too much extra lines where namespace is last statement (keradus)
2797
+ * bug #2059 OperatorsSpacesFixer - handle declare statement (keradus)
2798
+ * bug #2060 UnusedUseFixer - fix handling whitespaces around removed import (keradus)
2799
+ * minor #2071 ShortEchoTagFixer - allow to run tests on PHP 5.3 (keradus)
2800
+
2801
+ Changelog for v1.11.5
2802
+ ---------------------
2803
+
2804
+ * bug #2012 Properly build phar file for lowest supported PHP version (keradus)
2805
+ * bug #2037 BracesFixer - add support for anonymous classes (keradus)
2806
+ * bug #1989 Add support for PHP 7 namespaces (SpacePossum)
2807
+ * bug #2019 Fixing newlines added after curly brace string index access (jaydiablo)
2808
+ * bug #1840 [Bug] BracesFixer - Do add a line before close tag (SpacePossum)
2809
+ * bug #1994 EchoToPrintFixer - Fix T_OPEN_TAG_WITH_ECHO on hhvm (keradus)
2810
+ * bug #1970 Tokens - handle semi-reserved PHP 7 keywords (keradus)
2811
+ * minor #2017 PHP7 integration tests (keradus)
2812
+ * minor #1465 Bump supported HHVM version, improve ShortEchoTagFixer on HHVM (keradus)
2813
+ * minor #1995 Rely on own phpunit, not one from CI service (keradus)
2814
+
2815
+ Changelog for v1.11.4
2816
+ ---------------------
2817
+
2818
+ * bug #1956 SelfUpdateCommand - don't update to non-stable version (keradus)
2819
+ * bug #1963 Fix not wanted unneeded_control_parentheses fixer for clone (Soullivaneuh)
2820
+ * bug #1960 Fix invalid test cases (keradus)
2821
+ * bug #1939 BracesFixer - fix handling comment around control token (keradus)
2822
+ * minor #1927 NewWithBracesFixer - remove invalid testcase (keradus)
2823
+
2824
+ Changelog for v1.11.3
2825
+ ---------------------
2826
+
2827
+ * bug #1868 NewWithBracesFixer - fix handling more neighbor tokens (keradus)
2828
+ * bug #1893 BracesFixer - handle comments inside lambda function prototype (keradus)
2829
+ * bug #1806 SelfAccessorFixer - skip anonymous classes (gharlan)
2830
+ * bug #1813 BlanklineAfterOpenTagFixer, NoBlankLinesBeforeNamespaceFixer - fix priority (SpacePossum)
2831
+ * minor #1807 Tokens - simplify isLambda() (gharlan)
2832
+
2833
+ Changelog for v1.11.2
2834
+ ---------------------
2835
+
2836
+ * bug #1776 EofEndingFixer - new line on end line comment is allowed (Slamdunk)
2837
+ * bug #1775 FileCacheManager - ignore corrupted serialized data (keradus)
2838
+ * bug #1769 FunctionDeclarationFixer - fix more cases (keradus)
2839
+ * bug #1747 Fixer - Fix ordering of fixer when both level and custom fixers are used (SpacePossum)
2840
+ * bug #1744 Fixer - fix rare situation when file was visited twice (keradus)
2841
+ * bug #1710 LowercaseConstantFixer - Fix comment cases. (SpacePossum)
2842
+ * bug #1711 FunctioncallSpaceFixer - do not touch function declarations. (SpacePossum)
2843
+ * minor #1798 LintManager - meaningful tempnam (Slamdunk)
2844
+ * minor #1759 UniqueFileIterator - performance improvement (GrahamCampbell)
2845
+ * minor #1745 appveyor - fix build (keradus)
2846
+
2847
+ Changelog for v1.11.1
2848
+ ---------------------
2849
+
2850
+ * bug #1680 NewWithBracesFixer - End tags (SpacePossum)
2851
+ * bug #1685 EmptyReturnFixer - Make independent of LowercaseConstantsFixer (SpacePossum)
2852
+ * bug #1640 IntegrationTest - fix directory separator (keradus)
2853
+ * bug #1595 ShortTagFixer - fix priority (keradus)
2854
+ * bug #1576 SpacesBeforeSemicolonFixer - do not remove space before semicolon if that space is after a semicolon (SpacePossum)
2855
+ * bug #1570 UnneededControlParenthesesFixer - fix test samples (keradus)
2856
+ * minor #1653 Update license year (gharlan)
2857
+
2858
+ Changelog for v1.11
2859
+ -------------------
2860
+
2861
+ * feature #1550 Added UnneededControlParenthesesFixer (Soullivaneuh, keradus)
2862
+ * feature #1532 Added ShortBoolCastFixer (SpacePossum)
2863
+ * feature #1523 Added EchoToPrintFixer and PrintToEchoFixer (Soullivaneuh)
2864
+ * feature #1552 Warn when running with xdebug extension (SpacePossum)
2865
+ * feature #1484 Added ArrayElementNoSpaceBeforeCommaFixer and ArrayElementWhiteSpaceAfterCommaFixer (amarczuk)
2866
+ * feature #1449 PhpUnitConstructFixer - Fix more use cases (SpacePossum)
2867
+ * feature #1382 Added PhpdocTypesFixer (GrahamCampbell)
2868
+ * feature #1384 Add integration tests (SpacePossum)
2869
+ * feature #1349 Added FunctionTypehintSpaceFixer (keradus)
2870
+ * minor #1562 Fix invalid PHP code samples in utests (SpacePossum)
2871
+ * minor #1560 Fixed project name in xdebug warning (gharlan)
2872
+ * minor #1545 Fix invalid PHP code samples in utests (SpacePossum)
2873
+ * minor #1554 Alphabetically sort entries in .gitignore (GrahamCampbell)
2874
+ * minor #1527 Refactor the way types work on annotations (GrahamCampbell)
2875
+ * minor #1546 Update coding guide in cookbook (keradus)
2876
+ * minor #1526 Support more annotations when fixing types in phpdoc (GrahamCampbell)
2877
+ * minor #1535 clean ups (SpacePossum)
2878
+ * minor #1510 Added Symfony 3.0 support (Ener-Getick)
2879
+ * minor #1520 Code grooming (keradus)
2880
+ * minor #1515 Support property, property-read and property-write tags (GrahamCampbell)
2881
+ * minor #1488 Added more inline phpdoc tests (GrahamCampbell)
2882
+ * minor #1496 Add docblock to AbstractFixerTestBase::makeTest (lmanzke)
2883
+ * minor #1467 PhpdocShortDescriptionFixer - add support for Japanese sentence-ending characters (fritz-c)
2884
+ * minor #1453 remove calling array_keys in foreach loops (keradus)
2885
+ * minor #1448 Code grooming (keradus)
2886
+ * minor #1437 Added import fixers integration test (GrahamCampbell)
2887
+ * minor #1433 phpunit.xml.dist - disable gc (keradus)
2888
+ * minor #1427 Change arounded to surrounded in README.rst (36degrees)
2889
+ * minor #1420 AlignDoubleArrowFixer, AlignEqualsFixer - add integration tests (keradus)
2890
+ * minor #1423 appveyor.yml - do not cache C:\tools, its internal forAppVeyor (keradus)
2891
+ * minor #1400 appveyor.yml - add file (keradus)
2892
+ * minor #1396 AbstractPhpdocTypesFixer - instance method should be called on instance (keradus)
2893
+ * minor #1395 code grooming (keradus)
2894
+ * minor #1393 boost .travis.yml file (keradus)
2895
+ * minor #1372 Don't allow PHP 7 to fail (GrahamCampbell)
2896
+ * minor #1332 PhpUnitConstructFixer - fix more functions (keradus)
2897
+ * minor #1339 CONTRIBUTING.md - add link to PSR-5 (keradus)
2898
+ * minor #1346 Core grooming (SpacePossum)
2899
+ * minor #1328 Tokens: added typehint for Iterator elements (gharlan)
2900
+
2901
+ Changelog for v1.10.3
2902
+ ---------------------
2903
+
2904
+ * bug #1559 WhitespacyLinesFixer - fix bug cases (SpacePossum, keradus)
2905
+ * bug #1541 Psr0Fixer - Ignore filenames that are a reserved keyword or predefined constant (SpacePossum)
2906
+ * bug #1537 Psr0Fixer - ignore file without name or with name started by digit (keradus)
2907
+ * bug #1516 FixCommand - fix wrong message for dry-run (SpacePossum)
2908
+ * bug #1486 ExtraEmptyLinesFixer - Remove extra lines after comment lines too (SpacePossum)
2909
+ * bug #1503 Psr0Fixer - fix case with comments lying around (GrahamCampbell)
2910
+ * bug #1474 PhpdocToCommentFixer - fix not properly fixing for block right after namespace (GrahamCampbell)
2911
+ * bug #1478 BracesFixer - do not remove empty lines after class opening (keradus)
2912
+ * bug #1468 Add missing ConfigInterface::getHideProgress() (Eugene Leonovich, rybakit)
2913
+ * bug #1466 Fix bad indent on align double arrow fixer (Soullivaneuh, keradus)
2914
+ * bug #1479 Tokens - fix detection of short array (keradus)
2915
+
2916
+ Changelog for v1.10.2
2917
+ ---------------------
2918
+
2919
+ * bug #1461 PhpUnitConstructFixer - fix case when first argument is an expression (keradus)
2920
+ * bug #1460 AlignDoubleArrowFixer - fix handling of nested arrays (Soullivaneuh, keradus)
2921
+
2922
+ Changelog for v1.10.1
2923
+ ---------------------
2924
+
2925
+ * bug #1424 Fixed the import fixer priorities (GrahamCampbell)
2926
+ * bug #1444 OrderedUseFixer - fix next case (keradus)
2927
+ * bug #1441 BracesFixer - fix next case (keradus)
2928
+ * bug #1422 AlignDoubleArrowFixer - fix handling of nested array (SpacePossum)
2929
+ * bug #1425 PhpdocInlineTagFixerTest - fix case when met inalid PHPDoc (keradus)
2930
+ * bug #1419 AlignDoubleArrowFixer, AlignEqualsFixer - fix priorities (keradus)
2931
+ * bug #1415 BlanklineAfterOpenTagFixer - Do not add a line break if there is one already. (SpacePossum)
2932
+ * bug #1410 PhpdocIndentFixer - Fix for open tag (SpacePossum)
2933
+ * bug #1401 PhpdocVarWithoutNameFixer - Fixed the var without name fixer for inline docs (keradus, GrahamCampbell)
2934
+ * bug #1369 Fix not well-formed XML output (junichi11)
2935
+ * bug #1356 Psr0Fixer - disallow run on StdinFileInfo (keradus)
2936
+
2937
+ Changelog for v1.10
2938
+ -------------------
2939
+
2940
+ * feature #1306 Added LogicalNotOperatorsWithSuccessorSpaceFixer (phansys)
2941
+ * feature #1286 Added PhpUnitConstructFixer (keradus)
2942
+ * feature #1316 Added PhpdocInlineTagFixer (SpacePossum, keradus)
2943
+ * feature #1303 Added LogicalNotOperatorsWithSpacesFixer (phansys)
2944
+ * feature #1279 Added PhpUnitStrictFixer (keradus)
2945
+ * feature #1267 SingleQuoteFixer fix more use cases (SpacePossum)
2946
+ * minor #1319 PhpUnitConstructFixer - fix performance and add to local .php_cs (keradus)
2947
+ * minor #1280 Fix non-utf characters in docs (keradus)
2948
+ * minor #1274 Cookbook - No change auto-test note (Soullivaneuh)
2949
+
2950
+ Changelog for v1.9.3
2951
+ --------------------
2952
+
2953
+ * bug #1327 DocBlock\Tag - keep the case of tags (GrahamCampbell)
2954
+
2955
+ Changelog for v1.9.2
2956
+ --------------------
2957
+
2958
+ * bug #1313 AlignDoubleArrowFixer - fix aligning after UTF8 chars (keradus)
2959
+ * bug #1296 PhpdocScalarFixer - fix property annotation too (GrahamCampbell)
2960
+ * bug #1299 WhitespacyLinesFixer - spaces on next valid line must not be fixed (Slamdunk)
2961
+
2962
+ Changelog for v1.9.1
2963
+ --------------------
2964
+
2965
+ * bug #1288 TrimArraySpacesFixer - fix moving first comment (keradus)
2966
+ * bug #1287 PhpdocParamsFixer - now works on any indentation level (keradus)
2967
+ * bug #1278 Travis - fix PHP7 build (keradus)
2968
+ * bug #1277 WhitespacyLinesFixer - stop changing non-whitespacy tokens (SpacePossum, SamBurns-awin, keradus)
2969
+ * bug #1224 TrailingSpacesFixer - stop changing non-whitespacy tokens (SpacePossum, SamBurns-awin, keradus)
2970
+ * bug #1266 FunctionCallSpaceFixer - better detection of function call (funivan)
2971
+ * bug #1255 make sure some phpdoc fixers are run in right order (SpacePossum)
2972
+
2973
+ Changelog for v1.9
2974
+ ------------------
2975
+
2976
+ * feature #1097 Added ShortEchoTagFixer (vinkla)
2977
+ * minor #1238 Fixed error handler to respect current error_reporting (JanJakes)
2978
+ * minor #1234 Add class to exception message, use sprintf for exceptions (SpacePossum)
2979
+ * minor #1210 set custom error handler for application run (keradus)
2980
+ * minor #1214 Tokens::isMonolithicPhp - enhance performance (keradus)
2981
+ * minor #1207 Update code documentation (keradus)
2982
+ * minor #1202 Update IDE tool urls (keradus)
2983
+ * minor #1195 PreIncrementFixer - move to Symfony level (gharlan)
2984
+
2985
+ Changelog for v1.8.1
2986
+ --------------------
2987
+
2988
+ * bug #1193 EofEndingFixer - do not add an empty line at EOF if the PHP tags have been closed (SpacePossum)
2989
+ * bug #1209 PhpdocParamsFixer - fix corrupting following custom annotation (keradus)
2990
+ * bug #1205 BracesFixer - fix missing indentation fixes for class level (keradus)
2991
+ * bug #1204 Tag - fix treating complex tag as simple PhpDoc tag (keradus)
2992
+ * bug #1198 Tokens - fixed unary/binary operator check for type-hinted reference arguments (gharlan)
2993
+ * bug #1201 Php4ConstructorFixer - fix invalid handling of subnamespaces (gharlan)
2994
+ * minor #1221 Add more tests (SpacePossum)
2995
+ * minor #1216 Tokens - Add unit test for array detection (SpacePossum)
2996
+
2997
+ Changelog for v1.8
2998
+ ------------------
2999
+
3000
+ * feature #1168 Added UnalignEqualsFixer (keradus)
3001
+ * feature #1167 Added UnalignDoubleArrowFixer (keradus)
3002
+ * bug #1169 ToolInfo - Fix way to find script dir (sp-ian-monge)
3003
+ * minor #1181 composer.json - Update description (SpacePossum)
3004
+ * minor #1180 create Tokens::overrideAt method (keradus)
3005
+
3006
+ Changelog for v1.7.1
3007
+ --------------------
3008
+
3009
+ * bug #1165 BracesFixer - fix bug when comment is a first statement in control structure without braces (keradus)
3010
+
3011
+ Changelog for v1.7
3012
+ ------------------
3013
+
3014
+ * feature #1113 Added PreIncrementFixer (gharlan)
3015
+ * feature #1144 Added PhpdocNoAccessFixer (GrahamCampbell)
3016
+ * feature #1116 Added SelfAccessorFixer (gharlan)
3017
+ * feature #1064 OperatorsSpacesFixer enhancements (gharlan)
3018
+ * bug #1151 Prevent token collection corruption by fixers (stof, keradus)
3019
+ * bug #1152 LintManager - fix handling of temporary file (keradus)
3020
+ * bug #1139 NamespaceNoLeadingWhitespaceFixer - remove need for ctype extension (keradus)
3021
+ * bug #1117 Tokens - fix iterator used with foreach by reference (keradus)
3022
+ * minor #1148 code grooming (keradus)
3023
+ * minor #1142 We are actually PSR-4, not PSR-0 (GrahamCampbell)
3024
+ * minor #1131 Phpdocs and typos (SpacePossum)
3025
+ * minor #1069 state min HHVM version (keradus)
3026
+ * minor #1129 [DX] Help developers choose the right branch (SpacePossum)
3027
+ * minor #1138 PhpClosingTagFixer - simplify flow, no need for loop (keradus)
3028
+ * minor #1123 Reference mismatches fixed, SCA (kalessil)
3029
+ * minor #1109 SingleQuoteFixer - made fixer more accurate (gharlan)
3030
+ * minor #1110 code grooming (kalessil)
3031
+
3032
+ Changelog for v1.6.2
3033
+ --------------------
3034
+
3035
+ * bug #1149 UnusedUseFixer - must be run before LineAfterNamespaceFixer, fix token collection corruption (keradus)
3036
+ * minor #1145 AbstractLinesBeforeNamespaceFixer - fix docs for fixLinesBeforeNamespace (GrahamCampbell)
3037
+
3038
+ Changelog for v1.6.1
3039
+ --------------------
3040
+
3041
+ * bug #1108 UnusedUseFixer - fix false positive when name is used as part of another namespace (gharlan)
3042
+ * bug #1114 Fixed PhpdocParamsFixer with malformed doc block (gharlan)
3043
+ * minor #1135 PhpdocTrimFixer - fix doc typo (localheinz)
3044
+ * minor #1093 Travis - test lowest dependencies (boekkooi)
3045
+
3046
+ Changelog for v1.6
3047
+ ------------------
3048
+
3049
+ * feature #1089 Added NewlineAfterOpenTagFixer and BlanklineAfterOpenTagFixer (ceeram, keradus)
3050
+ * feature #1090 Added TrimArraySpacesFixer (jaredh159, keradus)
3051
+ * feature #1058 Added SingleQuoteFixer (gharlan)
3052
+ * feature #1059 Added LongArraySyntaxFixer (gharlan)
3053
+ * feature #1037 Added PhpdocScalarFixer (GrahamCampbell, keradus)
3054
+ * feature #1028 Add ListCommasFixer (keradus)
3055
+ * bug #1047 Utils::camelCaseToUnderscore - fix regexp (odin-delrio)
3056
+ * minor #1073 ShortTagFixer enhancement (gharlan)
3057
+ * minor #1079 Use LongArraySyntaxFixer for this repo (gharlan)
3058
+ * minor #1070 Tokens::isMonolithicPhp - remove unused T_CLOSE_TAG search (keradus)
3059
+ * minor #1049 OrderedUseFixer - grooming (keradus)
3060
+
3061
+ Changelog for v1.5.2
3062
+ --------------------
3063
+
3064
+ * bug #1025 Fixer - ignore symlinks (kix)
3065
+ * bug #1071 Psr0Fixer - fix bug for fixing file with long extension like .class.php (keradus)
3066
+ * bug #1080 ShortTagFixer - fix false positive (gharlan)
3067
+ * bug #1066 Php4ConstructorFixer - fix causing infinite recursion (mbeccati)
3068
+ * bug #1056 VisibilityFixer - fix T_VAR with multiple props (localheinz, keradus)
3069
+ * bug #1065 Php4ConstructorFixer - fix detection of a PHP4 parent constructor variant (mbeccati)
3070
+ * bug #1060 Tokens::isShortArray: tests and bugfixes (gharlan)
3071
+ * bug #1057 unused_use: fix false positive when name is only used as variable name (gharlan)
3072
+
3073
+ Changelog for v1.5.1
3074
+ --------------------
3075
+
3076
+ * bug #1054 VisibilityFixer - fix var with array value assigned (localheinz, keradus)
3077
+ * bug #1048 MultilineArrayTrailingCommaFixer, SingleArrayNoTrailingCommaFixer - using heredoc inside array not cousing to treat it as multiline array (keradus)
3078
+ * bug #1043 PhpdocToCommentFixer - also check other control structures, besides foreach (ceeram)
3079
+ * bug #1045 OrderedUseFixer - fix namespace order for trailing digits (rusitschka)
3080
+ * bug #1035 PhpdocToCommentFixer - Add static as valid keyword for structural element (ceeram)
3081
+ * bug #1020 BracesFixer - fix missing braces for nested if elseif else (malengrin)
3082
+ * minor #1036 Added php7 to travis build (fonsecas72)
3083
+ * minor #1026 Fix typo in ShortArraySyntaxFixer (tommygnr)
3084
+ * minor #1024 code grooming (keradus)
3085
+
3086
+ Changelog for v1.5
3087
+ ------------------
3088
+
3089
+ * feature #887 Added More Phpdoc Fixers (GrahamCampbell, keradus)
3090
+ * feature #1002 Add HeaderCommentFixer (ajgarlag)
3091
+ * feature #974 Add EregToPregFixer (mbeccati)
3092
+ * feature #970 Added Php4ConstructorFixer (mbeccati)
3093
+ * feature #997 Add PhpdocToCommentFixer (ceeram, keradus)
3094
+ * feature #932 Add NoBlankLinesAfterClassOpeningFixer (ceeram)
3095
+ * feature #879 Add SingleBlankLineBeforeNamespaceFixer and NoBlankLinesBeforeNamespaceFixer (GrahamCampbell)
3096
+ * feature #860 Add single_line_after_imports fixer (ceeram)
3097
+ * minor #1014 Fixed a few file headers (GrahamCampbell)
3098
+ * minor #1011 Fix HHVM as it works different than PHP (keradus)
3099
+ * minor #1010 Fix invalid UTF-8 char in docs (ajgarlag)
3100
+ * minor #1003 Fix header comment in php files (ajgarlag)
3101
+ * minor #1005 Add Utils::calculateBitmask method (keradus)
3102
+ * minor #973 Add Tokens::findSequence (mbeccati)
3103
+ * minor #991 Longer explanation of how to use blacklist (bmitch, networkscraper)
3104
+ * minor #972 Add case sensitive option to the tokenizer (mbeccati)
3105
+ * minor #986 Add benchmark script (dericofilho)
3106
+ * minor #985 Fix typo in COOKBOOK-FIXERS.md (mattleff)
3107
+ * minor #978 Token - fix docs (keradus)
3108
+ * minor #957 Fix Fixers methods order (GrahamCampbell)
3109
+ * minor #944 Enable caching of composer downloads on Travis (stof)
3110
+ * minor #941 EncodingFixer - enhance tests (keradus)
3111
+ * minor #938 Psr0Fixer - remove unneded assignment (keradus)
3112
+ * minor #936 FixerTest - test description consistency (keradus)
3113
+ * minor #933 NoEmptyLinesAfterPhpdocsFixer - remove unneeded code, clarify description (ceeram)
3114
+ * minor #934 StdinFileInfo::getFilename - Replace phpdoc with normal comment and add back empty line before return (ceeram)
3115
+ * minor #927 Exclude the resources folder from coverage reports (GrahamCampbell)
3116
+ * minor #926 Update Token::isGivenKind phpdoc (GrahamCampbell)
3117
+ * minor #925 Improved AbstractFixerTestBase (GrahamCampbell)
3118
+ * minor #922 AbstractFixerTestBase::makeTest - test if input is different than expected (keradus)
3119
+ * minor #904 Refactoring Utils (GrahamCampbell)
3120
+ * minor #901 Improved Readme Formatting (GrahamCampbell)
3121
+ * minor #898 Tokens::getImportUseIndexes - simplify function (keradus)
3122
+ * minor #897 phpunit.xml.dist - split testsuite (keradus)
3123
+
3124
+ Changelog for v1.4.2
3125
+ --------------------
3126
+
3127
+ * bug #994 Fix detecting of short arrays (keradus)
3128
+ * bug #995 DuplicateSemicolonFixer - ignore duplicated semicolons inside T_FOR (keradus)
3129
+
3130
+ Changelog for v1.4.1
3131
+ --------------------
3132
+
3133
+ * bug #990 MultilineArrayTrailingCommaFixer - fix case with short array on return (keradus)
3134
+ * bug #975 NoEmptyLinesAfterPhpdocsFixer - fix only when documentation documents sth (keradus)
3135
+ * bug #976 PhpdocIndentFixer - fix error when there is a comment between docblock and next meaningful token (keradus, ceeram)
3136
+
3137
+ Changelog for v1.4
3138
+ ------------------
3139
+
3140
+ * feature #841 PhpdocParamsFixer: added aligning var/type annotations (GrahamCampbell)
3141
+ * bug #965 Fix detection of lambda function that returns a reference (keradus)
3142
+ * bug #962 PhpdocIndentFixer - fix bug when documentation is on the end of braces block (keradus)
3143
+ * bug #961 Fixer - fix handling of empty file (keradus)
3144
+ * bug #960 IncludeFixer - fix bug when include is part of condition statement (keradus)
3145
+ * bug #954 AlignDoubleArrowFixer - fix new buggy case (keradus)
3146
+ * bug #955 ParenthesisFixer - fix case with list call with trailing comma (keradus)
3147
+ * bug #950 Tokens::isLambda - fix detection near comments (keradus)
3148
+ * bug #951 Tokens::getImportUseIndexes - fix detection near comments (keradus)
3149
+ * bug #949 Tokens::isShortArray - fix detection near comments (keradus)
3150
+ * bug #948 NewWithBracesFixer - fix case with multidimensional array (keradus)
3151
+ * bug #945 Skip files containing __halt_compiler() on PHP 5.3 (stof)
3152
+ * bug #946 BracesFixer - fix typo in exception name (keradus)
3153
+ * bug #940 Tokens::setCode - apply missing transformation (keradus)
3154
+ * bug #908 BracesFixer - fix invalide inserting brace for control structure without brace and lambda inside of it (keradus)
3155
+ * bug #903 NoEmptyLinesAfterPhpdocsFixer - fix bug with Windows style lines (GrahamCampbell)
3156
+ * bug #895 [PSR-2] Preserve blank line after control structure opening brace (marcaube)
3157
+ * bug #892 Fixed the double arrow multiline whitespace fixer (GrahamCampbell)
3158
+ * bug #874 BracesFixer - fix bug of removing empty lines after class' opening { (ceeram)
3159
+ * bug #868 BracesFixer - fix missing braces when statement is not followed by ; (keradus)
3160
+ * bug #861 Updated PhpdocParamsFixer not to change line endings (keradus, GrahamCampbell)
3161
+ * bug #837 FixCommand - stop corrupting xml/json format (keradus)
3162
+ * bug #846 Made phpdoc_params run after phpdoc_indent (GrahamCampbell)
3163
+ * bug #834 Correctly handle tab indentation (ceeram)
3164
+ * bug #822 PhpdocIndentFixer - Ignore inline docblocks (ceeram)
3165
+ * bug #813 MultilineArrayTrailingCommaFixer - do not move array end to new line (keradus)
3166
+ * bug #817 LowercaseConstantsFixer - ignore class' constants TRUE/FALSE/NULL (keradus)
3167
+ * bug #821 JoinFunctionFixer - stop changing declaration method name (ceeram)
3168
+ * minor #963 State the minimum version of PHPUnit in CONTRIBUTING.md (SpacePossum)
3169
+ * minor #943 Improve the cookbook to use relative links (stof)
3170
+ * minor #921 Add changelog file (keradus)
3171
+ * minor #909 BracesFixerTest - no \n line in \r\n test (keradus)
3172
+ * minor #864 Added NoEmptyLinesAfterPhpdocsFixer (GrahamCampbell)
3173
+ * minor #871 Added missing author (GrahamCampbell)
3174
+ * minor #852 Fixed the coveralls version constraint (GrahamCampbell)
3175
+ * minor #863 Tweaked testRetainsNewLineCharacters (GrahamCampbell)
3176
+ * minor #849 Removed old alias (GrahamCampbell)
3177
+ * minor #843 integer should be int (GrahamCampbell)
3178
+ * minor #830 Remove whitespace before opening tag (ceeram)
3179
+ * minor #835 code grooming (keradus)
3180
+ * minor #828 PhpdocIndentFixerTest - code grooming (keradus)
3181
+ * minor #827 UnusedUseFixer - code grooming (keradus)
3182
+ * minor #825 improve code coverage (keradus)
3183
+ * minor #810 improve code coverage (keradus)
3184
+ * minor #811 ShortArraySyntaxFixer - remove not needed if statement (keradus)
3185
+
3186
+ Changelog for v1.3
3187
+ ------------------
3188
+
3189
+ * feature #790 Add docblock indent fixer (ceeram)
3190
+ * feature #771 Add JoinFunctionFixer (keradus)
3191
+ * bug #798 Add DynamicVarBrace Transformer for properly handling ${$foo} syntax (keradus)
3192
+ * bug #796 LowercaseConstantsFixer - rewrite to handle new test cases (keradus)
3193
+ * bug #789 T_CASE is not succeeded by parentheses (dericofilho)
3194
+ * minor #814 Minor improvements to the phpdoc_params fixer (GrahamCampbell)
3195
+ * minor #815 Minor fixes (GrahamCampbell)
3196
+ * minor #782 Cookbook on how to make a new fixer (dericofilho)
3197
+ * minor #806 Fix Tokens::detectBlockType call (keradus)
3198
+ * minor #758 travis - disable sudo (keradus)
3199
+ * minor #808 Tokens - remove commented code (keradus)
3200
+ * minor #802 Address Sensiolabs Insight's warning of code cloning. (dericofilho)
3201
+ * minor #803 README.rst - fix \` into \`\` (keradus)
3202
+
3203
+ Changelog for v1.2
3204
+ ------------------
3205
+
3206
+ * feature #706 Remove lead slash (dericofilho)
3207
+ * feature #740 Add EmptyReturnFixer (GrahamCampbell)
3208
+ * bug #775 PhpClosingTagFixer - fix case with T_OPEN_TAG_WITH_ECHO (keradus)
3209
+ * bug #756 Fix broken cases for AlignDoubleArrowFixer (dericofilho)
3210
+ * bug #763 MethodArgumentSpaceFixer - fix receiving data in list context with omitted values (keradus)
3211
+ * bug #759 Fix Tokens::isArrayMultiLine (stof, keradus)
3212
+ * bug #754 LowercaseKeywordsFixer - __HALT_COMPILER must not be lowercased (keradus)
3213
+ * bug #753 Fix for double arrow misalignment in deeply nested arrays. (dericofilho)
3214
+ * bug #752 OrderedUseFixer should be case-insensitive (rusitschka)
3215
+ * minor #779 Fixed a docblock type (GrahamCampbell)
3216
+ * minor #765 Typehinting in FileCacheManager, remove unused variable in Tokens (keradus)
3217
+ * minor #764 SelfUpdateCommand - get local version only if remote version was successfully obtained (keradus)
3218
+ * minor #761 aling => (keradus)
3219
+ * minor #757 Some minor code simplify and extra test (keradus)
3220
+ * minor #713 Download php-cs-fixer.phar without sudo (michaelsauter)
3221
+ * minor #742 Various Minor Improvements (GrahamCampbell)
3222
+
3223
+ Changelog for v1.1
3224
+ ------------------
3225
+
3226
+ * feature #749 remove the --no-progress option (replaced by the standard -v) (fabpot, keradus)
3227
+ * feature #728 AlignDoubleArrowFixer - standardize whitespace after => (keradus)
3228
+ * feature #647 Add DoubleArrowMultilineWhitespacesFixer (dericofilho, keradus)
3229
+ * bug #746 SpacesBeforeSemicolonFixerTest - fix bug with semicolon after comment (keradus)
3230
+ * bug #741 Fix caching when composer is installed in custom path (cmodijk)
3231
+ * bug #725 DuplicateSemicolonFixer - fix clearing whitespace after duplicated semicolon (keradus)
3232
+ * bug #730 Cache busting when fixers list changes (Seldaek)
3233
+ * bug #722 Fix lint for STDIN-files (ossinkine)
3234
+ * bug #715 TrailingSpacesFixer - fix bug with french UTF-8 chars (keradus)
3235
+ * bug #718 Fix package name for composer cache (Seldaek)
3236
+ * bug #711 correct vendor name (keradus)
3237
+ * minor #745 Show progress by default and allow to disable it (keradus)
3238
+ * minor #731 Add a way to disable all default filters and really provide a whitelist (Seldaek)
3239
+ * minor #737 Extract tool info into new class, self-update command works now only for PHAR version (keradus)
3240
+ * minor #739 fix fabbot issues (keradus)
3241
+ * minor #726 update CONTRIBUTING.md for installing dependencies (keradus)
3242
+ * minor #736 Fix fabbot issues (GrahamCampbell)
3243
+ * minor #727 Fixed typos (pborreli)
3244
+ * minor #719 Add update instructions for composer and caching docs (Seldaek)
3245
+
3246
+ Changelog for v1.0
3247
+ ------------------
3248
+
3249
+ First stable release.