dependabot-composer 0.95.39 → 0.95.40

Sign up to get free protection for your applications and to get access to all the features.
Files changed (900) hide show
  1. checksums.yaml +4 -4
  2. data/helpers/vendor/autoload.php +7 -0
  3. data/helpers/vendor/bin/composer +1 -0
  4. data/helpers/vendor/bin/jsonlint +1 -0
  5. data/helpers/vendor/bin/validate-json +1 -0
  6. data/helpers/vendor/composer/ClassLoader.php +445 -0
  7. data/helpers/vendor/composer/LICENSE +21 -0
  8. data/helpers/vendor/composer/autoload_classmap.php +9 -0
  9. data/helpers/vendor/composer/autoload_files.php +11 -0
  10. data/helpers/vendor/composer/autoload_namespaces.php +9 -0
  11. data/helpers/vendor/composer/autoload_psr4.php +26 -0
  12. data/helpers/vendor/composer/autoload_real.php +70 -0
  13. data/helpers/vendor/composer/autoload_static.php +128 -0
  14. data/helpers/vendor/composer/ca-bundle/LICENSE +19 -0
  15. data/helpers/vendor/composer/ca-bundle/README.md +85 -0
  16. data/helpers/vendor/composer/ca-bundle/composer.json +54 -0
  17. data/helpers/vendor/composer/ca-bundle/res/cacert.pem +3240 -0
  18. data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +308 -0
  19. data/helpers/vendor/composer/composer/.gitattributes +12 -0
  20. data/helpers/vendor/composer/composer/.github/CONTRIBUTING.md +59 -0
  21. data/helpers/vendor/composer/composer/.github/ISSUE_TEMPLATE.md +25 -0
  22. data/helpers/vendor/composer/composer/.gitignore +11 -0
  23. data/helpers/vendor/composer/composer/.php_cs +58 -0
  24. data/helpers/vendor/composer/composer/.travis.yml +76 -0
  25. data/helpers/vendor/composer/composer/CHANGELOG.md +767 -0
  26. data/helpers/vendor/composer/composer/LICENSE +19 -0
  27. data/helpers/vendor/composer/composer/PORTING_INFO +39 -0
  28. data/helpers/vendor/composer/composer/README.md +62 -0
  29. data/helpers/vendor/composer/composer/appveyor.yml +33 -0
  30. data/helpers/vendor/composer/composer/bin/compile +31 -0
  31. data/helpers/vendor/composer/composer/bin/composer +57 -0
  32. data/helpers/vendor/composer/composer/composer.json +81 -0
  33. data/helpers/vendor/composer/composer/composer.lock +1800 -0
  34. data/helpers/vendor/composer/composer/doc/00-intro.md +156 -0
  35. data/helpers/vendor/composer/composer/doc/01-basic-usage.md +266 -0
  36. data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
  37. data/helpers/vendor/composer/composer/doc/03-cli.md +931 -0
  38. data/helpers/vendor/composer/composer/doc/04-schema.md +924 -0
  39. data/helpers/vendor/composer/composer/doc/05-repositories.md +713 -0
  40. data/helpers/vendor/composer/composer/doc/06-config.md +277 -0
  41. data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
  42. data/helpers/vendor/composer/composer/doc/articles/aliases.md +105 -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 +343 -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 +285 -0
  48. data/helpers/vendor/composer/composer/doc/articles/scripts.md +304 -0
  49. data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +309 -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 +50 -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/phpunit.xml.dist +35 -0
  70. data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
  71. data/helpers/vendor/composer/composer/res/composer-schema.json +843 -0
  72. data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1057 -0
  73. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
  74. data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +222 -0
  75. data/helpers/vendor/composer/composer/src/Composer/Cache.php +251 -0
  76. data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +46 -0
  77. data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +165 -0
  78. data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
  79. data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +255 -0
  80. data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +156 -0
  81. data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +72 -0
  82. data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +704 -0
  83. data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +384 -0
  84. data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +56 -0
  85. data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +728 -0
  86. data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +86 -0
  87. data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +90 -0
  88. data/helpers/vendor/composer/composer/src/Composer/Command/GlobalCommand.php +110 -0
  89. data/helpers/vendor/composer/composer/src/Composer/Command/HomeCommand.php +166 -0
  90. data/helpers/vendor/composer/composer/src/Composer/Command/InitCommand.php +795 -0
  91. data/helpers/vendor/composer/composer/src/Composer/Command/InstallCommand.php +123 -0
  92. data/helpers/vendor/composer/composer/src/Composer/Command/LicensesCommand.php +158 -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 +56 -0
  95. data/helpers/vendor/composer/composer/src/Composer/Command/RemoveCommand.php +162 -0
  96. data/helpers/vendor/composer/composer/src/Composer/Command/RequireCommand.php +243 -0
  97. data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +139 -0
  98. data/helpers/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php +64 -0
  99. data/helpers/vendor/composer/composer/src/Composer/Command/SearchCommand.php +82 -0
  100. data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +404 -0
  101. data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1014 -0
  102. data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +213 -0
  103. data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +151 -0
  104. data/helpers/vendor/composer/composer/src/Composer/Command/UpdateCommand.php +227 -0
  105. data/helpers/vendor/composer/composer/src/Composer/Command/ValidateCommand.php +171 -0
  106. data/helpers/vendor/composer/composer/src/Composer/Compiler.php +283 -0
  107. data/helpers/vendor/composer/composer/src/Composer/Composer.php +246 -0
  108. data/helpers/vendor/composer/composer/src/Composer/Config.php +455 -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 +267 -0
  111. data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +481 -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 +199 -0
  114. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php +285 -0
  115. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php +91 -0
  116. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php +66 -0
  117. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php +67 -0
  118. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php +67 -0
  119. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php +42 -0
  120. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php +50 -0
  121. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php +66 -0
  122. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php +80 -0
  123. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php +27 -0
  124. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php +378 -0
  125. data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php +253 -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 +263 -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 +372 -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 +868 -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 +516 -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 +175 -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 +114 -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 +536 -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 +255 -0
  169. data/helpers/vendor/composer/composer/src/Composer/IO/BufferIO.php +59 -0
  170. data/helpers/vendor/composer/composer/src/Composer/IO/ConsoleIO.php +322 -0
  171. data/helpers/vendor/composer/composer/src/Composer/IO/IOInterface.php +207 -0
  172. data/helpers/vendor/composer/composer/src/Composer/IO/NullIO.php +129 -0
  173. data/helpers/vendor/composer/composer/src/Composer/Installer.php +1793 -0
  174. data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php +210 -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 +81 -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 +301 -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 +521 -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 +404 -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 +178 -0
  198. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php +43 -0
  199. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php +148 -0
  200. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php +31 -0
  201. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php +79 -0
  202. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php +107 -0
  203. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php +97 -0
  204. data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php +74 -0
  205. data/helpers/vendor/composer/composer/src/Composer/Package/BasePackage.php +250 -0
  206. data/helpers/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php +129 -0
  207. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackage.php +199 -0
  208. data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +95 -0
  209. data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +145 -0
  210. data/helpers/vendor/composer/composer/src/Composer/Package/Link.php +128 -0
  211. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php +24 -0
  212. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php +24 -0
  213. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php +24 -0
  214. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php +24 -0
  215. data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php +24 -0
  216. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php +290 -0
  217. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php +46 -0
  218. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php +45 -0
  219. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php +30 -0
  220. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php +241 -0
  221. data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php +461 -0
  222. data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +438 -0
  223. data/helpers/vendor/composer/composer/src/Composer/Package/Package.php +612 -0
  224. data/helpers/vendor/composer/composer/src/Composer/Package/PackageInterface.php +361 -0
  225. data/helpers/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php +173 -0
  226. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackage.php +136 -0
  227. data/helpers/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php +142 -0
  228. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php +302 -0
  229. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php +81 -0
  230. data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php +176 -0
  231. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php +23 -0
  232. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php +33 -0
  233. data/helpers/vendor/composer/composer/src/Composer/Plugin/Capable.php +43 -0
  234. data/helpers/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php +88 -0
  235. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php +61 -0
  236. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php +39 -0
  237. data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginManager.php +403 -0
  238. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php +68 -0
  239. data/helpers/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php +78 -0
  240. data/helpers/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php +94 -0
  241. data/helpers/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php +208 -0
  242. data/helpers/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php +167 -0
  243. data/helpers/vendor/composer/composer/src/Composer/Repository/BaseRepository.php +157 -0
  244. data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +838 -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 +92 -0
  248. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php +24 -0
  249. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php +22 -0
  250. data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php +24 -0
  251. data/helpers/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php +22 -0
  252. data/helpers/vendor/composer/composer/src/Composer/Repository/PackageRepository.php +61 -0
  253. data/helpers/vendor/composer/composer/src/Composer/Repository/PathRepository.php +190 -0
  254. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php +82 -0
  255. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php +67 -0
  256. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelReader.php +101 -0
  257. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php +164 -0
  258. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php +139 -0
  259. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php +60 -0
  260. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php +50 -0
  261. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php +317 -0
  262. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageInfo.php +94 -0
  263. data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php +50 -0
  264. data/helpers/vendor/composer/composer/src/Composer/Repository/PearRepository.php +198 -0
  265. data/helpers/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php +315 -0
  266. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +166 -0
  267. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php +74 -0
  268. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php +177 -0
  269. data/helpers/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php +22 -0
  270. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php +443 -0
  271. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php +238 -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 +222 -0
  274. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +472 -0
  275. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +511 -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 +230 -0
  278. data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php +181 -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 +377 -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 +89 -0
  288. data/helpers/vendor/composer/composer/src/Composer/Script/PackageEvent.php +24 -0
  289. data/helpers/vendor/composer/composer/src/Composer/Script/ScriptEvents.php +193 -0
  290. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php +36 -0
  291. data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php +75 -0
  292. data/helpers/vendor/composer/composer/src/Composer/Util/AuthHelper.php +63 -0
  293. data/helpers/vendor/composer/composer/src/Composer/Util/Bitbucket.php +245 -0
  294. data/helpers/vendor/composer/composer/src/Composer/Util/ComposerMirror.php +57 -0
  295. data/helpers/vendor/composer/composer/src/Composer/Util/ConfigValidator.php +191 -0
  296. data/helpers/vendor/composer/composer/src/Composer/Util/ErrorHandler.php +79 -0
  297. data/helpers/vendor/composer/composer/src/Composer/Util/Filesystem.php +700 -0
  298. data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +347 -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 +163 -0
  301. data/helpers/vendor/composer/composer/src/Composer/Util/Hg.php +94 -0
  302. data/helpers/vendor/composer/composer/src/Composer/Util/IniHelper.php +64 -0
  303. data/helpers/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php +147 -0
  304. data/helpers/vendor/composer/composer/src/Composer/Util/Perforce.php +575 -0
  305. data/helpers/vendor/composer/composer/src/Composer/Util/Platform.php +92 -0
  306. data/helpers/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php +186 -0
  307. data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1093 -0
  308. data/helpers/vendor/composer/composer/src/Composer/Util/Silencer.php +78 -0
  309. data/helpers/vendor/composer/composer/src/Composer/Util/SpdxLicense.php +24 -0
  310. data/helpers/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php +177 -0
  311. data/helpers/vendor/composer/composer/src/Composer/Util/Svn.php +381 -0
  312. data/helpers/vendor/composer/composer/src/Composer/Util/TlsHelper.php +204 -0
  313. data/helpers/vendor/composer/composer/src/Composer/Util/Url.php +55 -0
  314. data/helpers/vendor/composer/composer/src/Composer/XdebugHandler.php +31 -0
  315. data/helpers/vendor/composer/composer/src/bootstrap.php +24 -0
  316. data/helpers/vendor/composer/installed.json +945 -0
  317. data/helpers/vendor/composer/semver/CHANGELOG.md +66 -0
  318. data/helpers/vendor/composer/semver/LICENSE +19 -0
  319. data/helpers/vendor/composer/semver/README.md +70 -0
  320. data/helpers/vendor/composer/semver/composer.json +58 -0
  321. data/helpers/vendor/composer/semver/src/Comparator.php +111 -0
  322. data/helpers/vendor/composer/semver/src/Constraint/AbstractConstraint.php +63 -0
  323. data/helpers/vendor/composer/semver/src/Constraint/Constraint.php +219 -0
  324. data/helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php +32 -0
  325. data/helpers/vendor/composer/semver/src/Constraint/EmptyConstraint.php +59 -0
  326. data/helpers/vendor/composer/semver/src/Constraint/MultiConstraint.php +120 -0
  327. data/helpers/vendor/composer/semver/src/Semver.php +127 -0
  328. data/helpers/vendor/composer/semver/src/VersionParser.php +548 -0
  329. data/helpers/vendor/composer/spdx-licenses/.php_cs.dist +59 -0
  330. data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +84 -0
  331. data/helpers/vendor/composer/spdx-licenses/LICENSE +19 -0
  332. data/helpers/vendor/composer/spdx-licenses/README.md +69 -0
  333. data/helpers/vendor/composer/spdx-licenses/composer.json +57 -0
  334. data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +101 -0
  335. data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +1907 -0
  336. data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
  337. data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +51 -0
  338. data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
  339. data/helpers/vendor/composer/xdebug-handler/README.md +280 -0
  340. data/helpers/vendor/composer/xdebug-handler/composer.json +40 -0
  341. data/helpers/vendor/composer/xdebug-handler/src/PhpConfig.php +73 -0
  342. data/helpers/vendor/composer/xdebug-handler/src/Process.php +160 -0
  343. data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
  344. data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +540 -0
  345. data/helpers/vendor/justinrainbow/json-schema/.gitattributes +5 -0
  346. data/helpers/vendor/justinrainbow/json-schema/.php_cs.dist +33 -0
  347. data/helpers/vendor/justinrainbow/json-schema/LICENSE +21 -0
  348. data/helpers/vendor/justinrainbow/json-schema/README.md +206 -0
  349. data/helpers/vendor/justinrainbow/json-schema/bin/validate-json +251 -0
  350. data/helpers/vendor/justinrainbow/json-schema/composer.json +65 -0
  351. data/helpers/vendor/justinrainbow/json-schema/demo/README.md +14 -0
  352. data/helpers/vendor/justinrainbow/json-schema/demo/data.json +3 -0
  353. data/helpers/vendor/justinrainbow/json-schema/demo/demo.php +18 -0
  354. data/helpers/vendor/justinrainbow/json-schema/demo/schema.json +3 -0
  355. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json +174 -0
  356. data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json +150 -0
  357. data/helpers/vendor/justinrainbow/json-schema/phpunit.xml.dist +26 -0
  358. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php +148 -0
  359. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php +147 -0
  360. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php +213 -0
  361. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php +65 -0
  362. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php +54 -0
  363. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php +220 -0
  364. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php +214 -0
  365. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php +86 -0
  366. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php +192 -0
  367. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php +94 -0
  368. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php +60 -0
  369. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php +68 -0
  370. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php +36 -0
  371. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php +18 -0
  372. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php +261 -0
  373. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php +413 -0
  374. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php +161 -0
  375. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php +7 -0
  376. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php +17 -0
  377. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php +17 -0
  378. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php +17 -0
  379. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php +17 -0
  380. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php +17 -0
  381. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php +40 -0
  382. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php +17 -0
  383. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php +17 -0
  384. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php +19 -0
  385. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php +17 -0
  386. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php +14 -0
  387. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php +149 -0
  388. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php +30 -0
  389. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php +169 -0
  390. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php +41 -0
  391. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +34 -0
  392. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php +83 -0
  393. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php +93 -0
  394. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php +56 -0
  395. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php +36 -0
  396. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php +175 -0
  397. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php +330 -0
  398. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php +26 -0
  399. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php +26 -0
  400. data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php +90 -0
  401. data/helpers/vendor/psr/log/.gitignore +1 -0
  402. data/helpers/vendor/psr/log/LICENSE +19 -0
  403. data/helpers/vendor/psr/log/Psr/Log/AbstractLogger.php +128 -0
  404. data/helpers/vendor/psr/log/Psr/Log/InvalidArgumentException.php +7 -0
  405. data/helpers/vendor/psr/log/Psr/Log/LogLevel.php +18 -0
  406. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +18 -0
  407. data/helpers/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +26 -0
  408. data/helpers/vendor/psr/log/Psr/Log/LoggerInterface.php +123 -0
  409. data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +140 -0
  410. data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +28 -0
  411. data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +144 -0
  412. data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +146 -0
  413. data/helpers/vendor/psr/log/README.md +52 -0
  414. data/helpers/vendor/psr/log/composer.json +26 -0
  415. data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
  416. data/helpers/vendor/seld/jsonlint/.travis.yml +25 -0
  417. data/helpers/vendor/seld/jsonlint/CHANGELOG.md +66 -0
  418. data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
  419. data/helpers/vendor/seld/jsonlint/README.md +89 -0
  420. data/helpers/vendor/seld/jsonlint/bin/jsonlint +117 -0
  421. data/helpers/vendor/seld/jsonlint/composer.json +24 -0
  422. data/helpers/vendor/seld/jsonlint/phpunit.xml.dist +25 -0
  423. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php +26 -0
  424. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php +502 -0
  425. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php +217 -0
  426. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php +28 -0
  427. data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php +16 -0
  428. data/helpers/vendor/seld/jsonlint/tests/JsonParserTest.php +230 -0
  429. data/helpers/vendor/seld/jsonlint/tests/bom.json +6 -0
  430. data/helpers/vendor/seld/jsonlint/tests/bootstrap.php +13 -0
  431. data/helpers/vendor/seld/phar-utils/.gitignore +1 -0
  432. data/helpers/vendor/seld/phar-utils/LICENSE +19 -0
  433. data/helpers/vendor/seld/phar-utils/README.md +39 -0
  434. data/helpers/vendor/seld/phar-utils/composer.json +26 -0
  435. data/helpers/vendor/seld/phar-utils/composer.lock +19 -0
  436. data/helpers/vendor/seld/phar-utils/src/Timestamps.php +192 -0
  437. data/helpers/vendor/symfony/console/.gitignore +3 -0
  438. data/helpers/vendor/symfony/console/Application.php +1174 -0
  439. data/helpers/vendor/symfony/console/CHANGELOG.md +140 -0
  440. data/helpers/vendor/symfony/console/Command/Command.php +654 -0
  441. data/helpers/vendor/symfony/console/Command/HelpCommand.php +81 -0
  442. data/helpers/vendor/symfony/console/Command/ListCommand.php +90 -0
  443. data/helpers/vendor/symfony/console/Command/LockableTrait.php +71 -0
  444. data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +37 -0
  445. data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +55 -0
  446. data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
  447. data/helpers/vendor/symfony/console/ConsoleEvents.php +47 -0
  448. data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +98 -0
  449. data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +144 -0
  450. data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
  451. data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +31 -0
  452. data/helpers/vendor/symfony/console/Descriptor/JsonDescriptor.php +168 -0
  453. data/helpers/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +182 -0
  454. data/helpers/vendor/symfony/console/Descriptor/TextDescriptor.php +342 -0
  455. data/helpers/vendor/symfony/console/Descriptor/XmlDescriptor.php +245 -0
  456. data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
  457. data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +58 -0
  458. data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
  459. data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +53 -0
  460. data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +91 -0
  461. data/helpers/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
  462. data/helpers/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
  463. data/helpers/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
  464. data/helpers/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
  465. data/helpers/vendor/symfony/console/Exception/LogicException.php +19 -0
  466. data/helpers/vendor/symfony/console/Exception/NamespaceNotFoundException.php +21 -0
  467. data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
  468. data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +278 -0
  469. data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
  470. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +203 -0
  471. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
  472. data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +110 -0
  473. data/helpers/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php +25 -0
  474. data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
  475. data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +94 -0
  476. data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +106 -0
  477. data/helpers/vendor/symfony/console/Helper/Helper.php +138 -0
  478. data/helpers/vendor/symfony/console/Helper/HelperInterface.php +39 -0
  479. data/helpers/vendor/symfony/console/Helper/HelperSet.php +108 -0
  480. data/helpers/vendor/symfony/console/Helper/InputAwareHelper.php +33 -0
  481. data/helpers/vendor/symfony/console/Helper/ProcessHelper.php +156 -0
  482. data/helpers/vendor/symfony/console/Helper/ProgressBar.php +530 -0
  483. data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +269 -0
  484. data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +434 -0
  485. data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +96 -0
  486. data/helpers/vendor/symfony/console/Helper/Table.php +808 -0
  487. data/helpers/vendor/symfony/console/Helper/TableCell.php +68 -0
  488. data/helpers/vendor/symfony/console/Helper/TableRows.php +32 -0
  489. data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
  490. data/helpers/vendor/symfony/console/Helper/TableStyle.php +458 -0
  491. data/helpers/vendor/symfony/console/Input/ArgvInput.php +346 -0
  492. data/helpers/vendor/symfony/console/Input/ArrayInput.php +206 -0
  493. data/helpers/vendor/symfony/console/Input/Input.php +203 -0
  494. data/helpers/vendor/symfony/console/Input/InputArgument.php +129 -0
  495. data/helpers/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
  496. data/helpers/vendor/symfony/console/Input/InputDefinition.php +402 -0
  497. data/helpers/vendor/symfony/console/Input/InputInterface.php +163 -0
  498. data/helpers/vendor/symfony/console/Input/InputOption.php +208 -0
  499. data/helpers/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
  500. data/helpers/vendor/symfony/console/Input/StringInput.php +72 -0
  501. data/helpers/vendor/symfony/console/LICENSE +19 -0
  502. data/helpers/vendor/symfony/console/Logger/ConsoleLogger.php +124 -0
  503. data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
  504. data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +161 -0
  505. data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +32 -0
  506. data/helpers/vendor/symfony/console/Output/ConsoleSectionOutput.php +141 -0
  507. data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
  508. data/helpers/vendor/symfony/console/Output/Output.php +177 -0
  509. data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
  510. data/helpers/vendor/symfony/console/Output/StreamOutput.php +124 -0
  511. data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +184 -0
  512. data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
  513. data/helpers/vendor/symfony/console/Question/Question.php +246 -0
  514. data/helpers/vendor/symfony/console/README.md +20 -0
  515. data/helpers/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
  516. data/helpers/vendor/symfony/console/Style/OutputStyle.php +155 -0
  517. data/helpers/vendor/symfony/console/Style/StyleInterface.php +154 -0
  518. data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +438 -0
  519. data/helpers/vendor/symfony/console/Terminal.php +137 -0
  520. data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +77 -0
  521. data/helpers/vendor/symfony/console/Tester/CommandTester.php +79 -0
  522. data/helpers/vendor/symfony/console/Tester/TesterTrait.php +173 -0
  523. data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1791 -0
  524. data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +436 -0
  525. data/helpers/vendor/symfony/console/Tests/Command/HelpCommandTest.php +71 -0
  526. data/helpers/vendor/symfony/console/Tests/Command/ListCommandTest.php +113 -0
  527. data/helpers/vendor/symfony/console/Tests/Command/LockableTraitTest.php +67 -0
  528. data/helpers/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +61 -0
  529. data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +60 -0
  530. data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +258 -0
  531. data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -0
  532. data/helpers/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +35 -0
  533. data/helpers/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +45 -0
  534. data/helpers/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +82 -0
  535. data/helpers/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +53 -0
  536. data/helpers/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +27 -0
  537. data/helpers/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +156 -0
  538. data/helpers/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +11 -0
  539. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +18 -0
  540. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +26 -0
  541. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +24 -0
  542. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +27 -0
  543. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +32 -0
  544. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +27 -0
  545. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +25 -0
  546. data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +32 -0
  547. data/helpers/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +36 -0
  548. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +26 -0
  549. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +21 -0
  550. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +29 -0
  551. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +11 -0
  552. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +10 -0
  553. data/helpers/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +11 -0
  554. data/helpers/vendor/symfony/console/Tests/Fixtures/FooCommand.php +33 -0
  555. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +28 -0
  556. data/helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +27 -0
  557. data/helpers/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +36 -0
  558. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +11 -0
  559. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +11 -0
  560. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +26 -0
  561. data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +26 -0
  562. data/helpers/vendor/symfony/console/Tests/Fixtures/FooWithoutAliasCommand.php +21 -0
  563. data/helpers/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +25 -0
  564. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +11 -0
  565. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +13 -0
  566. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +17 -0
  567. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +12 -0
  568. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +13 -0
  569. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +14 -0
  570. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +17 -0
  571. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +14 -0
  572. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +15 -0
  573. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +13 -0
  574. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +16 -0
  575. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +12 -0
  576. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +34 -0
  577. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4_with_iterators.php +34 -0
  578. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +37 -0
  579. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +16 -0
  580. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +15 -0
  581. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +26 -0
  582. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +11 -0
  583. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +19 -0
  584. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +7 -0
  585. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +3 -0
  586. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +9 -0
  587. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +7 -0
  588. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +4 -0
  589. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +6 -0
  590. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +7 -0
  591. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +6 -0
  592. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +7 -0
  593. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +8 -0
  594. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +7 -0
  595. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +13 -0
  596. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +7 -0
  597. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +32 -0
  598. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4_with_iterators.txt +32 -0
  599. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +18 -0
  600. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +6 -0
  601. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +5 -0
  602. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +9 -0
  603. data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +5 -0
  604. data/helpers/vendor/symfony/console/Tests/Fixtures/TestCommand.php +28 -0
  605. data/helpers/vendor/symfony/console/Tests/Fixtures/TestTiti.php +21 -0
  606. data/helpers/vendor/symfony/console/Tests/Fixtures/TestToto.php +22 -0
  607. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.json +156 -0
  608. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.md +172 -0
  609. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.txt +17 -0
  610. data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.xml +104 -0
  611. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.json +509 -0
  612. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.md +431 -0
  613. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.txt +21 -0
  614. data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.xml +254 -0
  615. data/helpers/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +16 -0
  616. data/helpers/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +1 -0
  617. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +269 -0
  618. data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +19 -0
  619. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +5 -0
  620. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +7 -0
  621. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +18 -0
  622. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +18 -0
  623. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +6 -0
  624. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +8 -0
  625. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +8 -0
  626. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +9 -0
  627. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +9 -0
  628. data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +11 -0
  629. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run1.txt +17 -0
  630. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run2.txt +29 -0
  631. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +29 -0
  632. data/helpers/vendor/symfony/console/Tests/Fixtures/application_run4.txt +1 -0
  633. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.json +15 -0
  634. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.md +12 -0
  635. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.txt +10 -0
  636. data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.xml +12 -0
  637. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.json +33 -0
  638. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.md +29 -0
  639. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.txt +16 -0
  640. data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.xml +21 -0
  641. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +29 -0
  642. data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +16 -0
  643. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +7 -0
  644. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +5 -0
  645. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +1 -0
  646. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +5 -0
  647. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +7 -0
  648. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +7 -0
  649. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +1 -0
  650. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +5 -0
  651. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +7 -0
  652. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +7 -0
  653. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +1 -0
  654. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +7 -0
  655. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +7 -0
  656. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +8 -0
  657. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +2 -0
  658. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +6 -0
  659. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +7 -0
  660. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +7 -0
  661. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +1 -0
  662. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +7 -0
  663. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +7 -0
  664. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +7 -0
  665. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +1 -0
  666. data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +7 -0
  667. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +4 -0
  668. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +0 -0
  669. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +0 -0
  670. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +5 -0
  671. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +12 -0
  672. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +7 -0
  673. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +2 -0
  674. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +10 -0
  675. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +14 -0
  676. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +8 -0
  677. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +2 -0
  678. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +9 -0
  679. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +22 -0
  680. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +16 -0
  681. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +5 -0
  682. data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +14 -0
  683. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.json +9 -0
  684. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.md +6 -0
  685. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +1 -0
  686. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +4 -0
  687. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.json +9 -0
  688. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.md +8 -0
  689. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +1 -0
  690. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +7 -0
  691. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.json +9 -0
  692. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.md +8 -0
  693. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +1 -0
  694. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +5 -0
  695. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.json +9 -0
  696. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.md +8 -0
  697. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +1 -0
  698. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +5 -0
  699. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.json +9 -0
  700. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.md +9 -0
  701. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +2 -0
  702. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +6 -0
  703. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.json +9 -0
  704. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.md +8 -0
  705. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +1 -0
  706. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +5 -0
  707. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +9 -0
  708. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +8 -0
  709. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +1 -0
  710. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +7 -0
  711. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +9 -0
  712. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +8 -0
  713. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +1 -0
  714. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +7 -0
  715. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +12 -0
  716. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +8 -0
  717. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +1 -0
  718. data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +8 -0
  719. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +71 -0
  720. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
  721. data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +352 -0
  722. data/helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +34 -0
  723. data/helpers/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +129 -0
  724. data/helpers/vendor/symfony/console/Tests/Helper/HelperSetTest.php +127 -0
  725. data/helpers/vendor/symfony/console/Tests/Helper/HelperTest.php +55 -0
  726. data/helpers/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +133 -0
  727. data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +899 -0
  728. data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +183 -0
  729. data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +665 -0
  730. data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +168 -0
  731. data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +28 -0
  732. data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +1127 -0
  733. data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +458 -0
  734. data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +177 -0
  735. data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +103 -0
  736. data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +407 -0
  737. data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +196 -0
  738. data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +149 -0
  739. data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
  740. data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +215 -0
  741. data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
  742. data/helpers/vendor/symfony/console/Tests/Output/ConsoleSectionOutputTest.php +163 -0
  743. data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
  744. data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +189 -0
  745. data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +61 -0
  746. data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +116 -0
  747. data/helpers/vendor/symfony/console/Tests/TerminalTest.php +44 -0
  748. data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +113 -0
  749. data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +207 -0
  750. data/helpers/vendor/symfony/console/composer.json +53 -0
  751. data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
  752. data/helpers/vendor/symfony/contracts/.gitignore +3 -0
  753. data/helpers/vendor/symfony/contracts/CHANGELOG.md +12 -0
  754. data/helpers/vendor/symfony/contracts/Cache/CacheInterface.php +57 -0
  755. data/helpers/vendor/symfony/contracts/Cache/CacheTrait.php +71 -0
  756. data/helpers/vendor/symfony/contracts/Cache/CallbackInterface.php +30 -0
  757. data/helpers/vendor/symfony/contracts/Cache/ItemInterface.php +60 -0
  758. data/helpers/vendor/symfony/contracts/Cache/TagAwareCacheInterface.php +38 -0
  759. data/helpers/vendor/symfony/contracts/LICENSE +19 -0
  760. data/helpers/vendor/symfony/contracts/README.md +70 -0
  761. data/helpers/vendor/symfony/contracts/Service/ResetInterface.php +30 -0
  762. data/helpers/vendor/symfony/contracts/Service/ServiceLocatorTrait.php +97 -0
  763. data/helpers/vendor/symfony/contracts/Service/ServiceSubscriberInterface.php +53 -0
  764. data/helpers/vendor/symfony/contracts/Service/ServiceSubscriberTrait.php +61 -0
  765. data/helpers/vendor/symfony/contracts/Tests/Cache/CacheTraitTest.php +165 -0
  766. data/helpers/vendor/symfony/contracts/Tests/Service/ServiceLocatorTest.php +94 -0
  767. data/helpers/vendor/symfony/contracts/Tests/Service/ServiceSubscriberTraitTest.php +65 -0
  768. data/helpers/vendor/symfony/contracts/Tests/Translation/TranslatorTest.php +353 -0
  769. data/helpers/vendor/symfony/contracts/Translation/LocaleAwareInterface.php +31 -0
  770. data/helpers/vendor/symfony/contracts/Translation/TranslatorInterface.php +65 -0
  771. data/helpers/vendor/symfony/contracts/Translation/TranslatorTrait.php +255 -0
  772. data/helpers/vendor/symfony/contracts/composer.json +44 -0
  773. data/helpers/vendor/symfony/contracts/phpunit.xml.dist +31 -0
  774. data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
  775. data/helpers/vendor/symfony/filesystem/CHANGELOG.md +59 -0
  776. data/helpers/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
  777. data/helpers/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
  778. data/helpers/vendor/symfony/filesystem/Exception/IOException.php +39 -0
  779. data/helpers/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +27 -0
  780. data/helpers/vendor/symfony/filesystem/Exception/InvalidArgumentException.php +19 -0
  781. data/helpers/vendor/symfony/filesystem/Filesystem.php +767 -0
  782. data/helpers/vendor/symfony/filesystem/LICENSE +19 -0
  783. data/helpers/vendor/symfony/filesystem/README.md +13 -0
  784. data/helpers/vendor/symfony/filesystem/Tests/ExceptionTest.php +47 -0
  785. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTest.php +1686 -0
  786. data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +166 -0
  787. data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -0
  788. data/helpers/vendor/symfony/filesystem/composer.json +34 -0
  789. data/helpers/vendor/symfony/filesystem/phpunit.xml.dist +30 -0
  790. data/helpers/vendor/symfony/finder/.gitignore +3 -0
  791. data/helpers/vendor/symfony/finder/CHANGELOG.md +69 -0
  792. data/helpers/vendor/symfony/finder/Comparator/Comparator.php +98 -0
  793. data/helpers/vendor/symfony/finder/Comparator/DateComparator.php +51 -0
  794. data/helpers/vendor/symfony/finder/Comparator/NumberComparator.php +79 -0
  795. data/helpers/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
  796. data/helpers/vendor/symfony/finder/Finder.php +780 -0
  797. data/helpers/vendor/symfony/finder/Glob.php +116 -0
  798. data/helpers/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
  799. data/helpers/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
  800. data/helpers/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +45 -0
  801. data/helpers/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +84 -0
  802. data/helpers/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +53 -0
  803. data/helpers/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
  804. data/helpers/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +47 -0
  805. data/helpers/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +112 -0
  806. data/helpers/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
  807. data/helpers/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +140 -0
  808. data/helpers/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
  809. data/helpers/vendor/symfony/finder/Iterator/SortableIterator.php +98 -0
  810. data/helpers/vendor/symfony/finder/LICENSE +19 -0
  811. data/helpers/vendor/symfony/finder/README.md +14 -0
  812. data/helpers/vendor/symfony/finder/SplFileInfo.php +78 -0
  813. data/helpers/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php +65 -0
  814. data/helpers/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php +64 -0
  815. data/helpers/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php +108 -0
  816. data/helpers/vendor/symfony/finder/Tests/FinderTest.php +1280 -0
  817. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/a +0 -0
  818. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon +0 -0
  819. data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon +0 -0
  820. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat +0 -0
  821. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat +0 -0
  822. data/helpers/vendor/symfony/finder/Tests/Fixtures/A/a.dat +0 -0
  823. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy +0 -0
  824. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy +0 -0
  825. data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy +0 -0
  826. data/helpers/vendor/symfony/finder/Tests/Fixtures/dolor.txt +2 -0
  827. data/helpers/vendor/symfony/finder/Tests/Fixtures/ipsum.txt +2 -0
  828. data/helpers/vendor/symfony/finder/Tests/Fixtures/lorem.txt +2 -0
  829. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/.dot +1 -0
  830. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/a +0 -0
  831. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon +0 -0
  832. data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon +0 -0
  833. data/helpers/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat +0 -0
  834. 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
  835. data/helpers/vendor/symfony/finder/Tests/GlobTest.php +95 -0
  836. data/helpers/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php +46 -0
  837. data/helpers/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php +92 -0
  838. data/helpers/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php +103 -0
  839. data/helpers/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php +107 -0
  840. data/helpers/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php +82 -0
  841. data/helpers/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php +86 -0
  842. data/helpers/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php +54 -0
  843. data/helpers/vendor/symfony/finder/Tests/Iterator/Iterator.php +55 -0
  844. data/helpers/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php +100 -0
  845. data/helpers/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php +21 -0
  846. data/helpers/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php +132 -0
  847. data/helpers/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php +71 -0
  848. data/helpers/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php +82 -0
  849. data/helpers/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php +128 -0
  850. data/helpers/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php +59 -0
  851. data/helpers/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php +70 -0
  852. data/helpers/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php +262 -0
  853. data/helpers/vendor/symfony/finder/composer.json +33 -0
  854. data/helpers/vendor/symfony/finder/phpunit.xml.dist +30 -0
  855. data/helpers/vendor/symfony/polyfill-ctype/Ctype.php +227 -0
  856. data/helpers/vendor/symfony/polyfill-ctype/LICENSE +19 -0
  857. data/helpers/vendor/symfony/polyfill-ctype/README.md +12 -0
  858. data/helpers/vendor/symfony/polyfill-ctype/bootstrap.php +26 -0
  859. data/helpers/vendor/symfony/polyfill-ctype/composer.json +34 -0
  860. data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
  861. data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +800 -0
  862. data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
  863. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1096 -0
  864. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
  865. data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1104 -0
  866. data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +58 -0
  867. data/helpers/vendor/symfony/polyfill-mbstring/composer.json +34 -0
  868. data/helpers/vendor/symfony/process/.gitignore +3 -0
  869. data/helpers/vendor/symfony/process/CHANGELOG.md +90 -0
  870. data/helpers/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
  871. data/helpers/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
  872. data/helpers/vendor/symfony/process/Exception/LogicException.php +21 -0
  873. data/helpers/vendor/symfony/process/Exception/ProcessFailedException.php +54 -0
  874. data/helpers/vendor/symfony/process/Exception/ProcessSignaledException.php +41 -0
  875. data/helpers/vendor/symfony/process/Exception/ProcessTimedOutException.php +69 -0
  876. data/helpers/vendor/symfony/process/Exception/RuntimeException.php +21 -0
  877. data/helpers/vendor/symfony/process/ExecutableFinder.php +88 -0
  878. data/helpers/vendor/symfony/process/InputStream.php +90 -0
  879. data/helpers/vendor/symfony/process/LICENSE +19 -0
  880. data/helpers/vendor/symfony/process/PhpExecutableFinder.php +101 -0
  881. data/helpers/vendor/symfony/process/PhpProcess.php +76 -0
  882. data/helpers/vendor/symfony/process/Pipes/AbstractPipes.php +178 -0
  883. data/helpers/vendor/symfony/process/Pipes/PipesInterface.php +67 -0
  884. data/helpers/vendor/symfony/process/Pipes/UnixPipes.php +153 -0
  885. data/helpers/vendor/symfony/process/Pipes/WindowsPipes.php +191 -0
  886. data/helpers/vendor/symfony/process/Process.php +1652 -0
  887. data/helpers/vendor/symfony/process/ProcessUtils.php +69 -0
  888. data/helpers/vendor/symfony/process/README.md +13 -0
  889. data/helpers/vendor/symfony/process/Tests/ExecutableFinderTest.php +178 -0
  890. data/helpers/vendor/symfony/process/Tests/KillableProcessWithOutput.php +25 -0
  891. data/helpers/vendor/symfony/process/Tests/NonStopableProcess.php +47 -0
  892. data/helpers/vendor/symfony/process/Tests/PhpExecutableFinderTest.php +49 -0
  893. data/helpers/vendor/symfony/process/Tests/PhpProcessTest.php +48 -0
  894. data/helpers/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php +72 -0
  895. data/helpers/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php +137 -0
  896. data/helpers/vendor/symfony/process/Tests/ProcessTest.php +1533 -0
  897. data/helpers/vendor/symfony/process/Tests/SignalListener.php +21 -0
  898. data/helpers/vendor/symfony/process/composer.json +33 -0
  899. data/helpers/vendor/symfony/process/phpunit.xml.dist +30 -0
  900. metadata +903 -5
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2004-2019 Fabien Potencier
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is furnished
8
+ to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
@@ -0,0 +1,14 @@
1
+ Finder Component
2
+ ================
3
+
4
+ The Finder component finds files and directories via an intuitive fluent
5
+ interface.
6
+
7
+ Resources
8
+ ---------
9
+
10
+ * [Documentation](https://symfony.com/doc/current/components/finder.html)
11
+ * [Contributing](https://symfony.com/doc/current/contributing/index.html)
12
+ * [Report issues](https://github.com/symfony/symfony/issues) and
13
+ [send Pull Requests](https://github.com/symfony/symfony/pulls)
14
+ in the [main Symfony repository](https://github.com/symfony/symfony)
@@ -0,0 +1,78 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Component\Finder;
13
+
14
+ /**
15
+ * Extends \SplFileInfo to support relative paths.
16
+ *
17
+ * @author Fabien Potencier <fabien@symfony.com>
18
+ */
19
+ class SplFileInfo extends \SplFileInfo
20
+ {
21
+ private $relativePath;
22
+ private $relativePathname;
23
+
24
+ /**
25
+ * @param string $file The file name
26
+ * @param string $relativePath The relative path
27
+ * @param string $relativePathname The relative path name
28
+ */
29
+ public function __construct(string $file, string $relativePath, string $relativePathname)
30
+ {
31
+ parent::__construct($file);
32
+ $this->relativePath = $relativePath;
33
+ $this->relativePathname = $relativePathname;
34
+ }
35
+
36
+ /**
37
+ * Returns the relative path.
38
+ *
39
+ * This path does not contain the file name.
40
+ *
41
+ * @return string the relative path
42
+ */
43
+ public function getRelativePath()
44
+ {
45
+ return $this->relativePath;
46
+ }
47
+
48
+ /**
49
+ * Returns the relative path name.
50
+ *
51
+ * This path contains the file name.
52
+ *
53
+ * @return string the relative path name
54
+ */
55
+ public function getRelativePathname()
56
+ {
57
+ return $this->relativePathname;
58
+ }
59
+
60
+ /**
61
+ * Returns the contents of the file.
62
+ *
63
+ * @return string the contents of the file
64
+ *
65
+ * @throws \RuntimeException
66
+ */
67
+ public function getContents()
68
+ {
69
+ set_error_handler(function ($type, $msg) use (&$error) { $error = $msg; });
70
+ $content = file_get_contents($this->getPathname());
71
+ restore_error_handler();
72
+ if (false === $content) {
73
+ throw new \RuntimeException($error);
74
+ }
75
+
76
+ return $content;
77
+ }
78
+ }
@@ -0,0 +1,65 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Component\Finder\Tests\Comparator;
13
+
14
+ use PHPUnit\Framework\TestCase;
15
+ use Symfony\Component\Finder\Comparator\Comparator;
16
+
17
+ class ComparatorTest extends TestCase
18
+ {
19
+ public function testGetSetOperator()
20
+ {
21
+ $comparator = new Comparator();
22
+ try {
23
+ $comparator->setOperator('foo');
24
+ $this->fail('->setOperator() throws an \InvalidArgumentException if the operator is not valid.');
25
+ } catch (\Exception $e) {
26
+ $this->assertInstanceOf('InvalidArgumentException', $e, '->setOperator() throws an \InvalidArgumentException if the operator is not valid.');
27
+ }
28
+
29
+ $comparator = new Comparator();
30
+ $comparator->setOperator('>');
31
+ $this->assertEquals('>', $comparator->getOperator(), '->getOperator() returns the current operator');
32
+ }
33
+
34
+ public function testGetSetTarget()
35
+ {
36
+ $comparator = new Comparator();
37
+ $comparator->setTarget(8);
38
+ $this->assertEquals(8, $comparator->getTarget(), '->getTarget() returns the target');
39
+ }
40
+
41
+ /**
42
+ * @dataProvider getTestData
43
+ */
44
+ public function testTest($operator, $target, $match, $noMatch)
45
+ {
46
+ $c = new Comparator();
47
+ $c->setOperator($operator);
48
+ $c->setTarget($target);
49
+
50
+ foreach ($match as $m) {
51
+ $this->assertTrue($c->test($m), '->test() tests a string against the expression');
52
+ }
53
+
54
+ foreach ($noMatch as $m) {
55
+ $this->assertFalse($c->test($m), '->test() tests a string against the expression');
56
+ }
57
+ }
58
+
59
+ public function getTestData()
60
+ {
61
+ return array(
62
+ array('<', '1000', array('500', '999'), array('1000', '1500')),
63
+ );
64
+ }
65
+ }
@@ -0,0 +1,64 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Component\Finder\Tests\Comparator;
13
+
14
+ use PHPUnit\Framework\TestCase;
15
+ use Symfony\Component\Finder\Comparator\DateComparator;
16
+
17
+ class DateComparatorTest extends TestCase
18
+ {
19
+ public function testConstructor()
20
+ {
21
+ try {
22
+ new DateComparator('foobar');
23
+ $this->fail('__construct() throws an \InvalidArgumentException if the test expression is not valid.');
24
+ } catch (\Exception $e) {
25
+ $this->assertInstanceOf('InvalidArgumentException', $e, '__construct() throws an \InvalidArgumentException if the test expression is not valid.');
26
+ }
27
+
28
+ try {
29
+ new DateComparator('');
30
+ $this->fail('__construct() throws an \InvalidArgumentException if the test expression is not valid.');
31
+ } catch (\Exception $e) {
32
+ $this->assertInstanceOf('InvalidArgumentException', $e, '__construct() throws an \InvalidArgumentException if the test expression is not valid.');
33
+ }
34
+ }
35
+
36
+ /**
37
+ * @dataProvider getTestData
38
+ */
39
+ public function testTest($test, $match, $noMatch)
40
+ {
41
+ $c = new DateComparator($test);
42
+
43
+ foreach ($match as $m) {
44
+ $this->assertTrue($c->test($m), '->test() tests a string against the expression');
45
+ }
46
+
47
+ foreach ($noMatch as $m) {
48
+ $this->assertFalse($c->test($m), '->test() tests a string against the expression');
49
+ }
50
+ }
51
+
52
+ public function getTestData()
53
+ {
54
+ return array(
55
+ array('< 2005-10-10', array(strtotime('2005-10-09')), array(strtotime('2005-10-15'))),
56
+ array('until 2005-10-10', array(strtotime('2005-10-09')), array(strtotime('2005-10-15'))),
57
+ array('before 2005-10-10', array(strtotime('2005-10-09')), array(strtotime('2005-10-15'))),
58
+ array('> 2005-10-10', array(strtotime('2005-10-15')), array(strtotime('2005-10-09'))),
59
+ array('after 2005-10-10', array(strtotime('2005-10-15')), array(strtotime('2005-10-09'))),
60
+ array('since 2005-10-10', array(strtotime('2005-10-15')), array(strtotime('2005-10-09'))),
61
+ array('!= 2005-10-10', array(strtotime('2005-10-11')), array(strtotime('2005-10-10'))),
62
+ );
63
+ }
64
+ }
@@ -0,0 +1,108 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Component\Finder\Tests\Comparator;
13
+
14
+ use PHPUnit\Framework\TestCase;
15
+ use Symfony\Component\Finder\Comparator\NumberComparator;
16
+
17
+ class NumberComparatorTest extends TestCase
18
+ {
19
+ /**
20
+ * @dataProvider getConstructorTestData
21
+ */
22
+ public function testConstructor($successes, $failures)
23
+ {
24
+ foreach ($successes as $s) {
25
+ new NumberComparator($s);
26
+ }
27
+
28
+ foreach ($failures as $f) {
29
+ try {
30
+ new NumberComparator($f);
31
+ $this->fail('__construct() throws an \InvalidArgumentException if the test expression is not valid.');
32
+ } catch (\Exception $e) {
33
+ $this->assertInstanceOf('InvalidArgumentException', $e, '__construct() throws an \InvalidArgumentException if the test expression is not valid.');
34
+ }
35
+ }
36
+ }
37
+
38
+ /**
39
+ * @dataProvider getTestData
40
+ */
41
+ public function testTest($test, $match, $noMatch)
42
+ {
43
+ $c = new NumberComparator($test);
44
+
45
+ foreach ($match as $m) {
46
+ $this->assertTrue($c->test($m), '->test() tests a string against the expression');
47
+ }
48
+
49
+ foreach ($noMatch as $m) {
50
+ $this->assertFalse($c->test($m), '->test() tests a string against the expression');
51
+ }
52
+ }
53
+
54
+ public function getTestData()
55
+ {
56
+ return array(
57
+ array('< 1000', array('500', '999'), array('1000', '1500')),
58
+
59
+ array('< 1K', array('500', '999'), array('1000', '1500')),
60
+ array('<1k', array('500', '999'), array('1000', '1500')),
61
+ array(' < 1 K ', array('500', '999'), array('1000', '1500')),
62
+ array('<= 1K', array('1000'), array('1001')),
63
+ array('> 1K', array('1001'), array('1000')),
64
+ array('>= 1K', array('1000'), array('999')),
65
+
66
+ array('< 1KI', array('500', '1023'), array('1024', '1500')),
67
+ array('<= 1KI', array('1024'), array('1025')),
68
+ array('> 1KI', array('1025'), array('1024')),
69
+ array('>= 1KI', array('1024'), array('1023')),
70
+
71
+ array('1KI', array('1024'), array('1023', '1025')),
72
+ array('==1KI', array('1024'), array('1023', '1025')),
73
+
74
+ array('==1m', array('1000000'), array('999999', '1000001')),
75
+ array('==1mi', array(1024 * 1024), array(1024 * 1024 - 1, 1024 * 1024 + 1)),
76
+
77
+ array('==1g', array('1000000000'), array('999999999', '1000000001')),
78
+ array('==1gi', array(1024 * 1024 * 1024), array(1024 * 1024 * 1024 - 1, 1024 * 1024 * 1024 + 1)),
79
+
80
+ array('!= 1000', array('500', '999'), array('1000')),
81
+ );
82
+ }
83
+
84
+ public function getConstructorTestData()
85
+ {
86
+ return array(
87
+ array(
88
+ array(
89
+ '1', '0',
90
+ '3.5', '33.55', '123.456', '123456.78',
91
+ '.1', '.123',
92
+ '.0', '0.0',
93
+ '1.', '0.', '123.',
94
+ '==1', '!=1', '<1', '>1', '<=1', '>=1',
95
+ '==1k', '==1ki', '==1m', '==1mi', '==1g', '==1gi',
96
+ '1k', '1ki', '1m', '1mi', '1g', '1gi',
97
+ ),
98
+ array(
99
+ false, null, '',
100
+ ' ', 'foobar',
101
+ '=1', '===1',
102
+ '0 . 1', '123 .45', '234. 567',
103
+ '..', '.0.', '0.1.2',
104
+ ),
105
+ ),
106
+ );
107
+ }
108
+ }
@@ -0,0 +1,1280 @@
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony\Component\Finder\Tests;
13
+
14
+ use Symfony\Component\Finder\Finder;
15
+
16
+ class FinderTest extends Iterator\RealIteratorTestCase
17
+ {
18
+ public function testCreate()
19
+ {
20
+ $this->assertInstanceOf('Symfony\Component\Finder\Finder', Finder::create());
21
+ }
22
+
23
+ public function testDirectories()
24
+ {
25
+ $finder = $this->buildFinder();
26
+ $this->assertSame($finder, $finder->directories());
27
+ $this->assertIterator($this->toAbsolute(array('foo', 'qux', 'toto')), $finder->in(self::$tmpDir)->getIterator());
28
+
29
+ $finder = $this->buildFinder();
30
+ $finder->directories();
31
+ $finder->files();
32
+ $finder->directories();
33
+ $this->assertIterator($this->toAbsolute(array('foo', 'qux', 'toto')), $finder->in(self::$tmpDir)->getIterator());
34
+ }
35
+
36
+ public function testFiles()
37
+ {
38
+ $finder = $this->buildFinder();
39
+ $this->assertSame($finder, $finder->files());
40
+ $this->assertIterator($this->toAbsolute(array('foo/bar.tmp',
41
+ 'test.php',
42
+ 'test.py',
43
+ 'foo bar',
44
+ 'qux/baz_100_1.py',
45
+ 'qux/baz_1_2.py',
46
+ 'qux_0_1.php',
47
+ 'qux_1000_1.php',
48
+ 'qux_1002_0.php',
49
+ 'qux_10_2.php',
50
+ 'qux_12_0.php',
51
+ 'qux_2_0.php',
52
+ )), $finder->in(self::$tmpDir)->getIterator());
53
+
54
+ $finder = $this->buildFinder();
55
+ $finder->files();
56
+ $finder->directories();
57
+ $finder->files();
58
+ $this->assertIterator($this->toAbsolute(array('foo/bar.tmp',
59
+ 'test.php',
60
+ 'test.py',
61
+ 'foo bar',
62
+ 'qux/baz_100_1.py',
63
+ 'qux/baz_1_2.py',
64
+ 'qux_0_1.php',
65
+ 'qux_1000_1.php',
66
+ 'qux_1002_0.php',
67
+ 'qux_10_2.php',
68
+ 'qux_12_0.php',
69
+ 'qux_2_0.php',
70
+ )), $finder->in(self::$tmpDir)->getIterator());
71
+ }
72
+
73
+ public function testRemoveTrailingSlash()
74
+ {
75
+ $finder = $this->buildFinder();
76
+
77
+ $expected = $this->toAbsolute(array(
78
+ 'foo/bar.tmp',
79
+ 'test.php',
80
+ 'test.py',
81
+ 'foo bar',
82
+ 'qux/baz_100_1.py',
83
+ 'qux/baz_1_2.py',
84
+ 'qux_0_1.php',
85
+ 'qux_1000_1.php',
86
+ 'qux_1002_0.php',
87
+ 'qux_10_2.php',
88
+ 'qux_12_0.php',
89
+ 'qux_2_0.php',
90
+ ));
91
+ $in = self::$tmpDir.'//';
92
+
93
+ $this->assertIterator($expected, $finder->in($in)->files()->getIterator());
94
+ }
95
+
96
+ public function testSymlinksNotResolved()
97
+ {
98
+ if ('\\' === \DIRECTORY_SEPARATOR) {
99
+ $this->markTestSkipped('symlinks are not supported on Windows');
100
+ }
101
+
102
+ $finder = $this->buildFinder();
103
+
104
+ symlink($this->toAbsolute('foo'), $this->toAbsolute('baz'));
105
+ $expected = $this->toAbsolute(array('baz/bar.tmp'));
106
+ $in = self::$tmpDir.'/baz/';
107
+ try {
108
+ $this->assertIterator($expected, $finder->in($in)->files()->getIterator());
109
+ unlink($this->toAbsolute('baz'));
110
+ } catch (\Exception $e) {
111
+ unlink($this->toAbsolute('baz'));
112
+ throw $e;
113
+ }
114
+ }
115
+
116
+ public function testBackPathNotNormalized()
117
+ {
118
+ $finder = $this->buildFinder();
119
+
120
+ $expected = $this->toAbsolute(array('foo/../foo/bar.tmp'));
121
+ $in = self::$tmpDir.'/foo/../foo/';
122
+ $this->assertIterator($expected, $finder->in($in)->files()->getIterator());
123
+ }
124
+
125
+ public function testDepth()
126
+ {
127
+ $finder = $this->buildFinder();
128
+ $this->assertSame($finder, $finder->depth('< 1'));
129
+ $this->assertIterator($this->toAbsolute(array('foo',
130
+ 'test.php',
131
+ 'test.py',
132
+ 'toto',
133
+ 'foo bar',
134
+ 'qux',
135
+ 'qux_0_1.php',
136
+ 'qux_1000_1.php',
137
+ 'qux_1002_0.php',
138
+ 'qux_10_2.php',
139
+ 'qux_12_0.php',
140
+ 'qux_2_0.php',
141
+ )), $finder->in(self::$tmpDir)->getIterator());
142
+
143
+ $finder = $this->buildFinder();
144
+ $this->assertSame($finder, $finder->depth('<= 0'));
145
+ $this->assertIterator($this->toAbsolute(array('foo',
146
+ 'test.php',
147
+ 'test.py',
148
+ 'toto',
149
+ 'foo bar',
150
+ 'qux',
151
+ 'qux_0_1.php',
152
+ 'qux_1000_1.php',
153
+ 'qux_1002_0.php',
154
+ 'qux_10_2.php',
155
+ 'qux_12_0.php',
156
+ 'qux_2_0.php',
157
+ )), $finder->in(self::$tmpDir)->getIterator());
158
+
159
+ $finder = $this->buildFinder();
160
+ $this->assertSame($finder, $finder->depth('>= 1'));
161
+ $this->assertIterator($this->toAbsolute(array(
162
+ 'foo/bar.tmp',
163
+ 'qux/baz_100_1.py',
164
+ 'qux/baz_1_2.py',
165
+ )), $finder->in(self::$tmpDir)->getIterator());
166
+
167
+ $finder = $this->buildFinder();
168
+ $finder->depth('< 1')->depth('>= 1');
169
+ $this->assertIterator(array(), $finder->in(self::$tmpDir)->getIterator());
170
+ }
171
+
172
+ public function testDepthWithArrayParam()
173
+ {
174
+ $finder = $this->buildFinder();
175
+ $finder->depth(array('>= 1', '< 2'));
176
+ $this->assertIterator($this->toAbsolute(array(
177
+ 'foo/bar.tmp',
178
+ 'qux/baz_100_1.py',
179
+ 'qux/baz_1_2.py',
180
+ )), $finder->in(self::$tmpDir)->getIterator());
181
+ }
182
+
183
+ public function testName()
184
+ {
185
+ $finder = $this->buildFinder();
186
+ $this->assertSame($finder, $finder->name('*.php'));
187
+ $this->assertIterator($this->toAbsolute(array(
188
+ 'test.php',
189
+ 'qux_0_1.php',
190
+ 'qux_1000_1.php',
191
+ 'qux_1002_0.php',
192
+ 'qux_10_2.php',
193
+ 'qux_12_0.php',
194
+ 'qux_2_0.php',
195
+ )), $finder->in(self::$tmpDir)->getIterator());
196
+
197
+ $finder = $this->buildFinder();
198
+ $finder->name('test.ph*');
199
+ $finder->name('test.py');
200
+ $this->assertIterator($this->toAbsolute(array('test.php', 'test.py')), $finder->in(self::$tmpDir)->getIterator());
201
+
202
+ $finder = $this->buildFinder();
203
+ $finder->name('~^test~i');
204
+ $this->assertIterator($this->toAbsolute(array('test.php', 'test.py')), $finder->in(self::$tmpDir)->getIterator());
205
+
206
+ $finder = $this->buildFinder();
207
+ $finder->name('~\\.php$~i');
208
+ $this->assertIterator($this->toAbsolute(array(
209
+ 'test.php',
210
+ 'qux_0_1.php',
211
+ 'qux_1000_1.php',
212
+ 'qux_1002_0.php',
213
+ 'qux_10_2.php',
214
+ 'qux_12_0.php',
215
+ 'qux_2_0.php',
216
+ )), $finder->in(self::$tmpDir)->getIterator());
217
+
218
+ $finder = $this->buildFinder();
219
+ $finder->name('test.p{hp,y}');
220
+ $this->assertIterator($this->toAbsolute(array('test.php', 'test.py')), $finder->in(self::$tmpDir)->getIterator());
221
+ }
222
+
223
+ public function testNameWithArrayParam()
224
+ {
225
+ $finder = $this->buildFinder();
226
+ $finder->name(array('test.php', 'test.py'));
227
+ $this->assertIterator($this->toAbsolute(array('test.php', 'test.py')), $finder->in(self::$tmpDir)->getIterator());
228
+ }
229
+
230
+ public function testNotName()
231
+ {
232
+ $finder = $this->buildFinder();
233
+ $this->assertSame($finder, $finder->notName('*.php'));
234
+ $this->assertIterator($this->toAbsolute(array(
235
+ 'foo',
236
+ 'foo/bar.tmp',
237
+ 'test.py',
238
+ 'toto',
239
+ 'foo bar',
240
+ 'qux',
241
+ 'qux/baz_100_1.py',
242
+ 'qux/baz_1_2.py',
243
+ )), $finder->in(self::$tmpDir)->getIterator());
244
+
245
+ $finder = $this->buildFinder();
246
+ $finder->notName('*.php');
247
+ $finder->notName('*.py');
248
+ $this->assertIterator($this->toAbsolute(array(
249
+ 'foo',
250
+ 'foo/bar.tmp',
251
+ 'toto',
252
+ 'foo bar',
253
+ 'qux',
254
+ )), $finder->in(self::$tmpDir)->getIterator());
255
+
256
+ $finder = $this->buildFinder();
257
+ $finder->name('test.ph*');
258
+ $finder->name('test.py');
259
+ $finder->notName('*.php');
260
+ $finder->notName('*.py');
261
+ $this->assertIterator(array(), $finder->in(self::$tmpDir)->getIterator());
262
+
263
+ $finder = $this->buildFinder();
264
+ $finder->name('test.ph*');
265
+ $finder->name('test.py');
266
+ $finder->notName('*.p{hp,y}');
267
+ $this->assertIterator(array(), $finder->in(self::$tmpDir)->getIterator());
268
+ }
269
+
270
+ public function testNotNameWithArrayParam()
271
+ {
272
+ $finder = $this->buildFinder();
273
+ $finder->notName(array('*.php', '*.py'));
274
+ $this->assertIterator($this->toAbsolute(array(
275
+ 'foo',
276
+ 'foo/bar.tmp',
277
+ 'toto',
278
+ 'foo bar',
279
+ 'qux',
280
+ )), $finder->in(self::$tmpDir)->getIterator());
281
+ }
282
+
283
+ /**
284
+ * @dataProvider getRegexNameTestData
285
+ */
286
+ public function testRegexName($regex)
287
+ {
288
+ $finder = $this->buildFinder();
289
+ $finder->name($regex);
290
+ $this->assertIterator($this->toAbsolute(array(
291
+ 'test.py',
292
+ 'test.php',
293
+ )), $finder->in(self::$tmpDir)->getIterator());
294
+ }
295
+
296
+ public function testSize()
297
+ {
298
+ $finder = $this->buildFinder();
299
+ $this->assertSame($finder, $finder->files()->size('< 1K')->size('> 500'));
300
+ $this->assertIterator($this->toAbsolute(array('test.php')), $finder->in(self::$tmpDir)->getIterator());
301
+ }
302
+
303
+ public function testSizeWithArrayParam()
304
+ {
305
+ $finder = $this->buildFinder();
306
+ $this->assertSame($finder, $finder->files()->size(array('< 1K', '> 500')));
307
+ $this->assertIterator($this->toAbsolute(array('test.php')), $finder->in(self::$tmpDir)->getIterator());
308
+ }
309
+
310
+ public function testDate()
311
+ {
312
+ $finder = $this->buildFinder();
313
+ $this->assertSame($finder, $finder->files()->date('until last month'));
314
+ $this->assertIterator($this->toAbsolute(array('foo/bar.tmp', 'test.php')), $finder->in(self::$tmpDir)->getIterator());
315
+ }
316
+
317
+ public function testDateWithArrayParam()
318
+ {
319
+ $finder = $this->buildFinder();
320
+ $this->assertSame($finder, $finder->files()->date(array('>= 2005-10-15', 'until last month')));
321
+ $this->assertIterator($this->toAbsolute(array('foo/bar.tmp', 'test.php')), $finder->in(self::$tmpDir)->getIterator());
322
+ }
323
+
324
+ public function testExclude()
325
+ {
326
+ $finder = $this->buildFinder();
327
+ $this->assertSame($finder, $finder->exclude('foo'));
328
+ $this->assertIterator($this->toAbsolute(array(
329
+ 'test.php',
330
+ 'test.py',
331
+ 'toto',
332
+ 'foo bar',
333
+ 'qux',
334
+ 'qux/baz_100_1.py',
335
+ 'qux/baz_1_2.py',
336
+ 'qux_0_1.php',
337
+ 'qux_1000_1.php',
338
+ 'qux_1002_0.php',
339
+ 'qux_10_2.php',
340
+ 'qux_12_0.php',
341
+ 'qux_2_0.php',
342
+ )), $finder->in(self::$tmpDir)->getIterator());
343
+ }
344
+
345
+ public function testIgnoreVCS()
346
+ {
347
+ $finder = $this->buildFinder();
348
+ $this->assertSame($finder, $finder->ignoreVCS(false)->ignoreDotFiles(false));
349
+ $this->assertIterator($this->toAbsolute(array(
350
+ '.git',
351
+ 'foo',
352
+ 'foo/bar.tmp',
353
+ 'test.php',
354
+ 'test.py',
355
+ 'toto',
356
+ 'toto/.git',
357
+ '.bar',
358
+ '.foo',
359
+ '.foo/.bar',
360
+ '.foo/bar',
361
+ 'foo bar',
362
+ 'qux',
363
+ 'qux/baz_100_1.py',
364
+ 'qux/baz_1_2.py',
365
+ 'qux_0_1.php',
366
+ 'qux_1000_1.php',
367
+ 'qux_1002_0.php',
368
+ 'qux_10_2.php',
369
+ 'qux_12_0.php',
370
+ 'qux_2_0.php',
371
+ )), $finder->in(self::$tmpDir)->getIterator());
372
+
373
+ $finder = $this->buildFinder();
374
+ $finder->ignoreVCS(false)->ignoreVCS(false)->ignoreDotFiles(false);
375
+ $this->assertIterator($this->toAbsolute(array(
376
+ '.git',
377
+ 'foo',
378
+ 'foo/bar.tmp',
379
+ 'test.php',
380
+ 'test.py',
381
+ 'toto',
382
+ 'toto/.git',
383
+ '.bar',
384
+ '.foo',
385
+ '.foo/.bar',
386
+ '.foo/bar',
387
+ 'foo bar',
388
+ 'qux',
389
+ 'qux/baz_100_1.py',
390
+ 'qux/baz_1_2.py',
391
+ 'qux_0_1.php',
392
+ 'qux_1000_1.php',
393
+ 'qux_1002_0.php',
394
+ 'qux_10_2.php',
395
+ 'qux_12_0.php',
396
+ 'qux_2_0.php',
397
+ )), $finder->in(self::$tmpDir)->getIterator());
398
+
399
+ $finder = $this->buildFinder();
400
+ $this->assertSame($finder, $finder->ignoreVCS(true)->ignoreDotFiles(false));
401
+ $this->assertIterator($this->toAbsolute(array(
402
+ 'foo',
403
+ 'foo/bar.tmp',
404
+ 'test.php',
405
+ 'test.py',
406
+ 'toto',
407
+ '.bar',
408
+ '.foo',
409
+ '.foo/.bar',
410
+ '.foo/bar',
411
+ 'foo bar',
412
+ 'qux',
413
+ 'qux/baz_100_1.py',
414
+ 'qux/baz_1_2.py',
415
+ 'qux_0_1.php',
416
+ 'qux_1000_1.php',
417
+ 'qux_1002_0.php',
418
+ 'qux_10_2.php',
419
+ 'qux_12_0.php',
420
+ 'qux_2_0.php',
421
+ )), $finder->in(self::$tmpDir)->getIterator());
422
+ }
423
+
424
+ public function testIgnoreDotFiles()
425
+ {
426
+ $finder = $this->buildFinder();
427
+ $this->assertSame($finder, $finder->ignoreDotFiles(false)->ignoreVCS(false));
428
+ $this->assertIterator($this->toAbsolute(array(
429
+ '.git',
430
+ '.bar',
431
+ '.foo',
432
+ '.foo/.bar',
433
+ '.foo/bar',
434
+ 'foo',
435
+ 'foo/bar.tmp',
436
+ 'test.php',
437
+ 'test.py',
438
+ 'toto',
439
+ 'toto/.git',
440
+ 'foo bar',
441
+ 'qux',
442
+ 'qux/baz_100_1.py',
443
+ 'qux/baz_1_2.py',
444
+ 'qux_0_1.php',
445
+ 'qux_1000_1.php',
446
+ 'qux_1002_0.php',
447
+ 'qux_10_2.php',
448
+ 'qux_12_0.php',
449
+ 'qux_2_0.php',
450
+ )), $finder->in(self::$tmpDir)->getIterator());
451
+
452
+ $finder = $this->buildFinder();
453
+ $finder->ignoreDotFiles(false)->ignoreDotFiles(false)->ignoreVCS(false);
454
+ $this->assertIterator($this->toAbsolute(array(
455
+ '.git',
456
+ '.bar',
457
+ '.foo',
458
+ '.foo/.bar',
459
+ '.foo/bar',
460
+ 'foo',
461
+ 'foo/bar.tmp',
462
+ 'test.php',
463
+ 'test.py',
464
+ 'toto',
465
+ 'toto/.git',
466
+ 'foo bar',
467
+ 'qux',
468
+ 'qux/baz_100_1.py',
469
+ 'qux/baz_1_2.py',
470
+ 'qux_0_1.php',
471
+ 'qux_1000_1.php',
472
+ 'qux_1002_0.php',
473
+ 'qux_10_2.php',
474
+ 'qux_12_0.php',
475
+ 'qux_2_0.php',
476
+ )), $finder->in(self::$tmpDir)->getIterator());
477
+
478
+ $finder = $this->buildFinder();
479
+ $this->assertSame($finder, $finder->ignoreDotFiles(true)->ignoreVCS(false));
480
+ $this->assertIterator($this->toAbsolute(array(
481
+ 'foo',
482
+ 'foo/bar.tmp',
483
+ 'test.php',
484
+ 'test.py',
485
+ 'toto',
486
+ 'foo bar',
487
+ 'qux',
488
+ 'qux/baz_100_1.py',
489
+ 'qux/baz_1_2.py',
490
+ 'qux_0_1.php',
491
+ 'qux_1000_1.php',
492
+ 'qux_1002_0.php',
493
+ 'qux_10_2.php',
494
+ 'qux_12_0.php',
495
+ 'qux_2_0.php',
496
+ )), $finder->in(self::$tmpDir)->getIterator());
497
+ }
498
+
499
+ public function testSortByName()
500
+ {
501
+ $finder = $this->buildFinder();
502
+ $this->assertSame($finder, $finder->sortByName());
503
+ $this->assertIterator($this->toAbsolute(array(
504
+ 'foo',
505
+ 'foo bar',
506
+ 'foo/bar.tmp',
507
+ 'qux',
508
+ 'qux/baz_100_1.py',
509
+ 'qux/baz_1_2.py',
510
+ 'qux_0_1.php',
511
+ 'qux_1000_1.php',
512
+ 'qux_1002_0.php',
513
+ 'qux_10_2.php',
514
+ 'qux_12_0.php',
515
+ 'qux_2_0.php',
516
+ 'test.php',
517
+ 'test.py',
518
+ 'toto',
519
+ )), $finder->in(self::$tmpDir)->getIterator());
520
+ }
521
+
522
+ public function testSortByType()
523
+ {
524
+ $finder = $this->buildFinder();
525
+ $this->assertSame($finder, $finder->sortByType());
526
+ $this->assertIterator($this->toAbsolute(array(
527
+ 'foo',
528
+ 'foo bar',
529
+ 'toto',
530
+ 'foo/bar.tmp',
531
+ 'test.php',
532
+ 'test.py',
533
+ 'qux',
534
+ 'qux/baz_100_1.py',
535
+ 'qux/baz_1_2.py',
536
+ 'qux_0_1.php',
537
+ 'qux_1000_1.php',
538
+ 'qux_1002_0.php',
539
+ 'qux_10_2.php',
540
+ 'qux_12_0.php',
541
+ 'qux_2_0.php',
542
+ )), $finder->in(self::$tmpDir)->getIterator());
543
+ }
544
+
545
+ public function testSortByAccessedTime()
546
+ {
547
+ $finder = $this->buildFinder();
548
+ $this->assertSame($finder, $finder->sortByAccessedTime());
549
+ $this->assertIterator($this->toAbsolute(array(
550
+ 'foo/bar.tmp',
551
+ 'test.php',
552
+ 'toto',
553
+ 'test.py',
554
+ 'foo',
555
+ 'foo bar',
556
+ 'qux',
557
+ 'qux/baz_100_1.py',
558
+ 'qux/baz_1_2.py',
559
+ 'qux_0_1.php',
560
+ 'qux_1000_1.php',
561
+ 'qux_1002_0.php',
562
+ 'qux_10_2.php',
563
+ 'qux_12_0.php',
564
+ 'qux_2_0.php',
565
+ )), $finder->in(self::$tmpDir)->getIterator());
566
+ }
567
+
568
+ public function testSortByChangedTime()
569
+ {
570
+ $finder = $this->buildFinder();
571
+ $this->assertSame($finder, $finder->sortByChangedTime());
572
+ $this->assertIterator($this->toAbsolute(array(
573
+ 'toto',
574
+ 'test.py',
575
+ 'test.php',
576
+ 'foo/bar.tmp',
577
+ 'foo',
578
+ 'foo bar',
579
+ 'qux',
580
+ 'qux/baz_100_1.py',
581
+ 'qux/baz_1_2.py',
582
+ 'qux_0_1.php',
583
+ 'qux_1000_1.php',
584
+ 'qux_1002_0.php',
585
+ 'qux_10_2.php',
586
+ 'qux_12_0.php',
587
+ 'qux_2_0.php',
588
+ )), $finder->in(self::$tmpDir)->getIterator());
589
+ }
590
+
591
+ public function testSortByModifiedTime()
592
+ {
593
+ $finder = $this->buildFinder();
594
+ $this->assertSame($finder, $finder->sortByModifiedTime());
595
+ $this->assertIterator($this->toAbsolute(array(
596
+ 'foo/bar.tmp',
597
+ 'test.php',
598
+ 'toto',
599
+ 'test.py',
600
+ 'foo',
601
+ 'foo bar',
602
+ 'qux',
603
+ 'qux/baz_100_1.py',
604
+ 'qux/baz_1_2.py',
605
+ 'qux_0_1.php',
606
+ 'qux_1000_1.php',
607
+ 'qux_1002_0.php',
608
+ 'qux_10_2.php',
609
+ 'qux_12_0.php',
610
+ 'qux_2_0.php',
611
+ )), $finder->in(self::$tmpDir)->getIterator());
612
+ }
613
+
614
+ public function testReverseSorting()
615
+ {
616
+ $finder = $this->buildFinder();
617
+ $this->assertSame($finder, $finder->sortByName());
618
+ $this->assertSame($finder, $finder->reverseSorting());
619
+ $this->assertOrderedIteratorInForeach($this->toAbsolute(array(
620
+ 'toto',
621
+ 'test.py',
622
+ 'test.php',
623
+ 'qux_2_0.php',
624
+ 'qux_12_0.php',
625
+ 'qux_10_2.php',
626
+ 'qux_1002_0.php',
627
+ 'qux_1000_1.php',
628
+ 'qux_0_1.php',
629
+ 'qux/baz_1_2.py',
630
+ 'qux/baz_100_1.py',
631
+ 'qux',
632
+ 'foo/bar.tmp',
633
+ 'foo bar',
634
+ 'foo',
635
+ )), $finder->in(self::$tmpDir)->getIterator());
636
+ }
637
+
638
+ public function testSortByNameNatural()
639
+ {
640
+ $finder = $this->buildFinder();
641
+ $this->assertSame($finder, $finder->sortByName(true));
642
+ $this->assertIterator($this->toAbsolute(array(
643
+ 'foo',
644
+ 'foo bar',
645
+ 'foo/bar.tmp',
646
+ 'qux',
647
+ 'qux/baz_100_1.py',
648
+ 'qux/baz_1_2.py',
649
+ 'qux_0_1.php',
650
+ 'qux_1000_1.php',
651
+ 'qux_1002_0.php',
652
+ 'qux_10_2.php',
653
+ 'qux_12_0.php',
654
+ 'qux_2_0.php',
655
+ 'test.php',
656
+ 'test.py',
657
+ 'toto',
658
+ )), $finder->in(self::$tmpDir)->getIterator());
659
+
660
+ $finder = $this->buildFinder();
661
+ $this->assertSame($finder, $finder->sortByName(false));
662
+ $this->assertIterator($this->toAbsolute(array(
663
+ 'foo',
664
+ 'foo bar',
665
+ 'foo/bar.tmp',
666
+ 'qux',
667
+ 'qux/baz_100_1.py',
668
+ 'qux/baz_1_2.py',
669
+ 'qux_0_1.php',
670
+ 'qux_1000_1.php',
671
+ 'qux_1002_0.php',
672
+ 'qux_10_2.php',
673
+ 'qux_12_0.php',
674
+ 'qux_2_0.php',
675
+ 'test.php',
676
+ 'test.py',
677
+ 'toto',
678
+ )), $finder->in(self::$tmpDir)->getIterator());
679
+ }
680
+
681
+ public function testSort()
682
+ {
683
+ $finder = $this->buildFinder();
684
+ $this->assertSame($finder, $finder->sort(function (\SplFileInfo $a, \SplFileInfo $b) { return strcmp($a->getRealPath(), $b->getRealPath()); }));
685
+ $this->assertIterator($this->toAbsolute(array(
686
+ 'foo',
687
+ 'foo bar',
688
+ 'foo/bar.tmp',
689
+ 'test.php',
690
+ 'test.py',
691
+ 'toto',
692
+ 'qux',
693
+ 'qux/baz_100_1.py',
694
+ 'qux/baz_1_2.py',
695
+ 'qux_0_1.php',
696
+ 'qux_1000_1.php',
697
+ 'qux_1002_0.php',
698
+ 'qux_10_2.php',
699
+ 'qux_12_0.php',
700
+ 'qux_2_0.php',
701
+ )), $finder->in(self::$tmpDir)->getIterator());
702
+ }
703
+
704
+ public function testFilter()
705
+ {
706
+ $finder = $this->buildFinder();
707
+ $this->assertSame($finder, $finder->filter(function (\SplFileInfo $f) { return false !== strpos($f, 'test'); }));
708
+ $this->assertIterator($this->toAbsolute(array('test.php', 'test.py')), $finder->in(self::$tmpDir)->getIterator());
709
+ }
710
+
711
+ public function testFollowLinks()
712
+ {
713
+ if ('\\' == \DIRECTORY_SEPARATOR) {
714
+ $this->markTestSkipped('symlinks are not supported on Windows');
715
+ }
716
+
717
+ $finder = $this->buildFinder();
718
+ $this->assertSame($finder, $finder->followLinks());
719
+ $this->assertIterator($this->toAbsolute(array(
720
+ 'foo',
721
+ 'foo/bar.tmp',
722
+ 'test.php',
723
+ 'test.py',
724
+ 'toto',
725
+ 'foo bar',
726
+ 'qux',
727
+ 'qux/baz_100_1.py',
728
+ 'qux/baz_1_2.py',
729
+ 'qux_0_1.php',
730
+ 'qux_1000_1.php',
731
+ 'qux_1002_0.php',
732
+ 'qux_10_2.php',
733
+ 'qux_12_0.php',
734
+ 'qux_2_0.php',
735
+ )), $finder->in(self::$tmpDir)->getIterator());
736
+ }
737
+
738
+ public function testIn()
739
+ {
740
+ $finder = $this->buildFinder();
741
+ $iterator = $finder->files()->name('*.php')->depth('< 1')->in(array(self::$tmpDir, __DIR__))->getIterator();
742
+
743
+ $expected = array(
744
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'test.php',
745
+ __DIR__.\DIRECTORY_SEPARATOR.'FinderTest.php',
746
+ __DIR__.\DIRECTORY_SEPARATOR.'GlobTest.php',
747
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_0_1.php',
748
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_1000_1.php',
749
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_1002_0.php',
750
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_10_2.php',
751
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_12_0.php',
752
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_2_0.php',
753
+ );
754
+
755
+ $this->assertIterator($expected, $iterator);
756
+ }
757
+
758
+ /**
759
+ * @expectedException \InvalidArgumentException
760
+ */
761
+ public function testInWithNonExistentDirectory()
762
+ {
763
+ $finder = new Finder();
764
+ $finder->in('foobar');
765
+ }
766
+
767
+ public function testInWithGlob()
768
+ {
769
+ $finder = $this->buildFinder();
770
+ $finder->in(array(__DIR__.'/Fixtures/*/B/C/', __DIR__.'/Fixtures/*/*/B/C/'))->getIterator();
771
+
772
+ $this->assertIterator($this->toAbsoluteFixtures(array('A/B/C/abc.dat', 'copy/A/B/C/abc.dat.copy')), $finder);
773
+ }
774
+
775
+ /**
776
+ * @expectedException \InvalidArgumentException
777
+ */
778
+ public function testInWithNonDirectoryGlob()
779
+ {
780
+ $finder = new Finder();
781
+ $finder->in(__DIR__.'/Fixtures/A/a*');
782
+ }
783
+
784
+ public function testInWithGlobBrace()
785
+ {
786
+ $finder = $this->buildFinder();
787
+ $finder->in(array(__DIR__.'/Fixtures/{A,copy/A}/B/C'))->getIterator();
788
+
789
+ $this->assertIterator($this->toAbsoluteFixtures(array('A/B/C/abc.dat', 'copy/A/B/C/abc.dat.copy')), $finder);
790
+ }
791
+
792
+ /**
793
+ * @expectedException \LogicException
794
+ */
795
+ public function testGetIteratorWithoutIn()
796
+ {
797
+ $finder = Finder::create();
798
+ $finder->getIterator();
799
+ }
800
+
801
+ public function testGetIterator()
802
+ {
803
+ $finder = $this->buildFinder();
804
+ $dirs = array();
805
+ foreach ($finder->directories()->in(self::$tmpDir) as $dir) {
806
+ $dirs[] = (string) $dir;
807
+ }
808
+
809
+ $expected = $this->toAbsolute(array('foo', 'qux', 'toto'));
810
+
811
+ sort($dirs);
812
+ sort($expected);
813
+
814
+ $this->assertEquals($expected, $dirs, 'implements the \IteratorAggregate interface');
815
+
816
+ $finder = $this->buildFinder();
817
+ $this->assertEquals(3, iterator_count($finder->directories()->in(self::$tmpDir)), 'implements the \IteratorAggregate interface');
818
+
819
+ $finder = $this->buildFinder();
820
+ $a = iterator_to_array($finder->directories()->in(self::$tmpDir));
821
+ $a = array_values(array_map('strval', $a));
822
+ sort($a);
823
+ $this->assertEquals($expected, $a, 'implements the \IteratorAggregate interface');
824
+ }
825
+
826
+ public function testRelativePath()
827
+ {
828
+ $finder = $this->buildFinder()->in(self::$tmpDir);
829
+
830
+ $paths = array();
831
+
832
+ foreach ($finder as $file) {
833
+ $paths[] = $file->getRelativePath();
834
+ }
835
+
836
+ $ref = array('', '', '', '', '', '', '', '', '', '', '', 'foo', 'qux', 'qux', '');
837
+
838
+ sort($ref);
839
+ sort($paths);
840
+
841
+ $this->assertEquals($ref, $paths);
842
+ }
843
+
844
+ public function testRelativePathname()
845
+ {
846
+ $finder = $this->buildFinder()->in(self::$tmpDir)->sortByName();
847
+
848
+ $paths = array();
849
+
850
+ foreach ($finder as $file) {
851
+ $paths[] = $file->getRelativePathname();
852
+ }
853
+
854
+ $ref = array(
855
+ 'test.php',
856
+ 'toto',
857
+ 'test.py',
858
+ 'foo',
859
+ 'foo'.\DIRECTORY_SEPARATOR.'bar.tmp',
860
+ 'foo bar',
861
+ 'qux',
862
+ 'qux'.\DIRECTORY_SEPARATOR.'baz_100_1.py',
863
+ 'qux'.\DIRECTORY_SEPARATOR.'baz_1_2.py',
864
+ 'qux_0_1.php',
865
+ 'qux_1000_1.php',
866
+ 'qux_1002_0.php',
867
+ 'qux_10_2.php',
868
+ 'qux_12_0.php',
869
+ 'qux_2_0.php',
870
+ );
871
+
872
+ sort($paths);
873
+ sort($ref);
874
+
875
+ $this->assertEquals($ref, $paths);
876
+ }
877
+
878
+ public function testAppendWithAFinder()
879
+ {
880
+ $finder = $this->buildFinder();
881
+ $finder->files()->in(self::$tmpDir.\DIRECTORY_SEPARATOR.'foo');
882
+
883
+ $finder1 = $this->buildFinder();
884
+ $finder1->directories()->in(self::$tmpDir);
885
+
886
+ $finder = $finder->append($finder1);
887
+
888
+ $this->assertIterator($this->toAbsolute(array('foo', 'foo/bar.tmp', 'qux', 'toto')), $finder->getIterator());
889
+ }
890
+
891
+ public function testAppendWithAnArray()
892
+ {
893
+ $finder = $this->buildFinder();
894
+ $finder->files()->in(self::$tmpDir.\DIRECTORY_SEPARATOR.'foo');
895
+
896
+ $finder->append($this->toAbsolute(array('foo', 'toto')));
897
+
898
+ $this->assertIterator($this->toAbsolute(array('foo', 'foo/bar.tmp', 'toto')), $finder->getIterator());
899
+ }
900
+
901
+ public function testAppendReturnsAFinder()
902
+ {
903
+ $this->assertInstanceOf('Symfony\\Component\\Finder\\Finder', Finder::create()->append(array()));
904
+ }
905
+
906
+ public function testAppendDoesNotRequireIn()
907
+ {
908
+ $finder = $this->buildFinder();
909
+ $finder->in(self::$tmpDir.\DIRECTORY_SEPARATOR.'foo');
910
+
911
+ $finder1 = Finder::create()->append($finder);
912
+
913
+ $this->assertIterator(iterator_to_array($finder->getIterator()), $finder1->getIterator());
914
+ }
915
+
916
+ public function testCountDirectories()
917
+ {
918
+ $directory = Finder::create()->directories()->in(self::$tmpDir);
919
+ $i = 0;
920
+
921
+ foreach ($directory as $dir) {
922
+ ++$i;
923
+ }
924
+
925
+ $this->assertCount($i, $directory);
926
+ }
927
+
928
+ public function testCountFiles()
929
+ {
930
+ $files = Finder::create()->files()->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures');
931
+ $i = 0;
932
+
933
+ foreach ($files as $file) {
934
+ ++$i;
935
+ }
936
+
937
+ $this->assertCount($i, $files);
938
+ }
939
+
940
+ /**
941
+ * @expectedException \LogicException
942
+ */
943
+ public function testCountWithoutIn()
944
+ {
945
+ $finder = Finder::create()->files();
946
+ \count($finder);
947
+ }
948
+
949
+ public function testHasResults()
950
+ {
951
+ $finder = $this->buildFinder();
952
+ $finder->in(__DIR__);
953
+ $this->assertTrue($finder->hasResults());
954
+ }
955
+
956
+ public function testNoResults()
957
+ {
958
+ $finder = $this->buildFinder();
959
+ $finder->in(__DIR__)->name('DoesNotExist');
960
+ $this->assertFalse($finder->hasResults());
961
+ }
962
+
963
+ /**
964
+ * @dataProvider getContainsTestData
965
+ */
966
+ public function testContains($matchPatterns, $noMatchPatterns, $expected)
967
+ {
968
+ $finder = $this->buildFinder();
969
+ $finder->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures')
970
+ ->name('*.txt')->sortByName()
971
+ ->contains($matchPatterns)
972
+ ->notContains($noMatchPatterns);
973
+
974
+ $this->assertIterator($this->toAbsoluteFixtures($expected), $finder);
975
+ }
976
+
977
+ public function testContainsOnDirectory()
978
+ {
979
+ $finder = $this->buildFinder();
980
+ $finder->in(__DIR__)
981
+ ->directories()
982
+ ->name('Fixtures')
983
+ ->contains('abc');
984
+ $this->assertIterator(array(), $finder);
985
+ }
986
+
987
+ public function testNotContainsOnDirectory()
988
+ {
989
+ $finder = $this->buildFinder();
990
+ $finder->in(__DIR__)
991
+ ->directories()
992
+ ->name('Fixtures')
993
+ ->notContains('abc');
994
+ $this->assertIterator(array(), $finder);
995
+ }
996
+
997
+ /**
998
+ * Searching in multiple locations involves AppendIterator which does an unnecessary rewind which leaves FilterIterator
999
+ * with inner FilesystemIterator in an invalid state.
1000
+ *
1001
+ * @see https://bugs.php.net/68557
1002
+ */
1003
+ public function testMultipleLocations()
1004
+ {
1005
+ $locations = array(
1006
+ self::$tmpDir.'/',
1007
+ self::$tmpDir.'/toto/',
1008
+ );
1009
+
1010
+ // it is expected that there are test.py test.php in the tmpDir
1011
+ $finder = new Finder();
1012
+ $finder->in($locations)
1013
+ // the default flag IGNORE_DOT_FILES fixes the problem indirectly
1014
+ // so we set it to false for better isolation
1015
+ ->ignoreDotFiles(false)
1016
+ ->depth('< 1')->name('test.php');
1017
+
1018
+ $this->assertCount(1, $finder);
1019
+ }
1020
+
1021
+ /**
1022
+ * Searching in multiple locations with sub directories involves
1023
+ * AppendIterator which does an unnecessary rewind which leaves
1024
+ * FilterIterator with inner FilesystemIterator in an invalid state.
1025
+ *
1026
+ * @see https://bugs.php.net/68557
1027
+ */
1028
+ public function testMultipleLocationsWithSubDirectories()
1029
+ {
1030
+ $locations = array(
1031
+ __DIR__.'/Fixtures/one',
1032
+ self::$tmpDir.\DIRECTORY_SEPARATOR.'toto',
1033
+ );
1034
+
1035
+ $finder = $this->buildFinder();
1036
+ $finder->in($locations)->depth('< 10')->name('*.neon');
1037
+
1038
+ $expected = array(
1039
+ __DIR__.'/Fixtures/one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'c.neon',
1040
+ __DIR__.'/Fixtures/one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'d.neon',
1041
+ );
1042
+
1043
+ $this->assertIterator($expected, $finder);
1044
+ $this->assertIteratorInForeach($expected, $finder);
1045
+ }
1046
+
1047
+ /**
1048
+ * Iterator keys must be the file pathname.
1049
+ */
1050
+ public function testIteratorKeys()
1051
+ {
1052
+ $finder = $this->buildFinder()->in(self::$tmpDir);
1053
+ foreach ($finder as $key => $file) {
1054
+ $this->assertEquals($file->getPathname(), $key);
1055
+ }
1056
+ }
1057
+
1058
+ public function testRegexSpecialCharsLocationWithPathRestrictionContainingStartFlag()
1059
+ {
1060
+ $finder = $this->buildFinder();
1061
+ $finder->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures'.\DIRECTORY_SEPARATOR.'r+e.gex[c]a(r)s')
1062
+ ->path('/^dir/');
1063
+
1064
+ $expected = array('r+e.gex[c]a(r)s'.\DIRECTORY_SEPARATOR.'dir', 'r+e.gex[c]a(r)s'.\DIRECTORY_SEPARATOR.'dir'.\DIRECTORY_SEPARATOR.'bar.dat');
1065
+ $this->assertIterator($this->toAbsoluteFixtures($expected), $finder);
1066
+ }
1067
+
1068
+ public function getContainsTestData()
1069
+ {
1070
+ return array(
1071
+ array('', '', array()),
1072
+ array('foo', 'bar', array()),
1073
+ array('', 'foobar', array('dolor.txt', 'ipsum.txt', 'lorem.txt')),
1074
+ array('lorem ipsum dolor sit amet', 'foobar', array('lorem.txt')),
1075
+ array('sit', 'bar', array('dolor.txt', 'ipsum.txt', 'lorem.txt')),
1076
+ array('dolor sit amet', '@^L@m', array('dolor.txt', 'ipsum.txt')),
1077
+ array('/^lorem ipsum dolor sit amet$/m', 'foobar', array('lorem.txt')),
1078
+ array('lorem', 'foobar', array('lorem.txt')),
1079
+ array('', 'lorem', array('dolor.txt', 'ipsum.txt')),
1080
+ array('ipsum dolor sit amet', '/^IPSUM/m', array('lorem.txt')),
1081
+ array(array('lorem', 'dolor'), array(), array('lorem.txt', 'ipsum.txt', 'dolor.txt')),
1082
+ array('', array('lorem', 'ipsum'), array('dolor.txt')),
1083
+ );
1084
+ }
1085
+
1086
+ public function getRegexNameTestData()
1087
+ {
1088
+ return array(
1089
+ array('~.*t\\.p.+~i'),
1090
+ array('~t.*s~i'),
1091
+ );
1092
+ }
1093
+
1094
+ /**
1095
+ * @dataProvider getTestPathData
1096
+ */
1097
+ public function testPath($matchPatterns, $noMatchPatterns, array $expected)
1098
+ {
1099
+ $finder = $this->buildFinder();
1100
+ $finder->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures')
1101
+ ->path($matchPatterns)
1102
+ ->notPath($noMatchPatterns);
1103
+
1104
+ $this->assertIterator($this->toAbsoluteFixtures($expected), $finder);
1105
+ }
1106
+
1107
+ public function getTestPathData()
1108
+ {
1109
+ return array(
1110
+ array('', '', array()),
1111
+ array('/^A\/B\/C/', '/C$/',
1112
+ array('A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat'),
1113
+ ),
1114
+ array('/^A\/B/', 'foobar',
1115
+ array(
1116
+ 'A'.\DIRECTORY_SEPARATOR.'B',
1117
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
1118
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
1119
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
1120
+ ),
1121
+ ),
1122
+ array('A/B/C', 'foobar',
1123
+ array(
1124
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
1125
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
1126
+ 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
1127
+ 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat.copy',
1128
+ ),
1129
+ ),
1130
+ array('A/B', 'foobar',
1131
+ array(
1132
+ //dirs
1133
+ 'A'.\DIRECTORY_SEPARATOR.'B',
1134
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
1135
+ 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B',
1136
+ 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
1137
+ //files
1138
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
1139
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
1140
+ 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat.copy',
1141
+ 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat.copy',
1142
+ ),
1143
+ ),
1144
+ array('/^with space\//', 'foobar',
1145
+ array(
1146
+ 'with space'.\DIRECTORY_SEPARATOR.'foo.txt',
1147
+ ),
1148
+ ),
1149
+ array(
1150
+ '/^A/',
1151
+ array('a.dat', 'abc.dat'),
1152
+ array(
1153
+ 'A',
1154
+ 'A'.\DIRECTORY_SEPARATOR.'B',
1155
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
1156
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
1157
+ ),
1158
+ ),
1159
+ array(
1160
+ array('/^A/', 'one'),
1161
+ 'foobar',
1162
+ array(
1163
+ 'A',
1164
+ 'A'.\DIRECTORY_SEPARATOR.'B',
1165
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
1166
+ 'A'.\DIRECTORY_SEPARATOR.'a.dat',
1167
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
1168
+ 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
1169
+ 'one',
1170
+ 'one'.\DIRECTORY_SEPARATOR.'a',
1171
+ 'one'.\DIRECTORY_SEPARATOR.'b',
1172
+ 'one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'c.neon',
1173
+ 'one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'d.neon',
1174
+ ),
1175
+ ),
1176
+ );
1177
+ }
1178
+
1179
+ public function testAccessDeniedException()
1180
+ {
1181
+ if ('\\' === \DIRECTORY_SEPARATOR) {
1182
+ $this->markTestSkipped('chmod is not supported on Windows');
1183
+ }
1184
+
1185
+ $finder = $this->buildFinder();
1186
+ $finder->files()->in(self::$tmpDir);
1187
+
1188
+ // make 'foo' directory non-readable
1189
+ $testDir = self::$tmpDir.\DIRECTORY_SEPARATOR.'foo';
1190
+ chmod($testDir, 0333);
1191
+
1192
+ if (false === $couldRead = is_readable($testDir)) {
1193
+ try {
1194
+ $this->assertIterator($this->toAbsolute(array('foo bar', 'test.php', 'test.py')), $finder->getIterator());
1195
+ $this->fail('Finder should throw an exception when opening a non-readable directory.');
1196
+ } catch (\Exception $e) {
1197
+ $expectedExceptionClass = 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException';
1198
+ if ($e instanceof \PHPUnit_Framework_ExpectationFailedException) {
1199
+ $this->fail(sprintf("Expected exception:\n%s\nGot:\n%s\nWith comparison failure:\n%s", $expectedExceptionClass, 'PHPUnit_Framework_ExpectationFailedException', $e->getComparisonFailure()->getExpectedAsString()));
1200
+ }
1201
+
1202
+ if ($e instanceof \PHPUnit\Framework\ExpectationFailedException) {
1203
+ $this->fail(sprintf("Expected exception:\n%s\nGot:\n%s\nWith comparison failure:\n%s", $expectedExceptionClass, '\PHPUnit\Framework\ExpectationFailedException', $e->getComparisonFailure()->getExpectedAsString()));
1204
+ }
1205
+
1206
+ $this->assertInstanceOf($expectedExceptionClass, $e);
1207
+ }
1208
+ }
1209
+
1210
+ // restore original permissions
1211
+ chmod($testDir, 0777);
1212
+ clearstatcache(true, $testDir);
1213
+
1214
+ if ($couldRead) {
1215
+ $this->markTestSkipped('could read test files while test requires unreadable');
1216
+ }
1217
+ }
1218
+
1219
+ public function testIgnoredAccessDeniedException()
1220
+ {
1221
+ if ('\\' === \DIRECTORY_SEPARATOR) {
1222
+ $this->markTestSkipped('chmod is not supported on Windows');
1223
+ }
1224
+
1225
+ $finder = $this->buildFinder();
1226
+ $finder->files()->ignoreUnreadableDirs()->in(self::$tmpDir);
1227
+
1228
+ // make 'foo' directory non-readable
1229
+ $testDir = self::$tmpDir.\DIRECTORY_SEPARATOR.'foo';
1230
+ chmod($testDir, 0333);
1231
+
1232
+ if (false === ($couldRead = is_readable($testDir))) {
1233
+ $this->assertIterator($this->toAbsolute(array(
1234
+ 'foo bar',
1235
+ 'test.php',
1236
+ 'test.py',
1237
+ 'qux/baz_100_1.py',
1238
+ 'qux/baz_1_2.py',
1239
+ 'qux_0_1.php',
1240
+ 'qux_1000_1.php',
1241
+ 'qux_1002_0.php',
1242
+ 'qux_10_2.php',
1243
+ 'qux_12_0.php',
1244
+ 'qux_2_0.php',
1245
+ )
1246
+ ), $finder->getIterator());
1247
+ }
1248
+
1249
+ // restore original permissions
1250
+ chmod($testDir, 0777);
1251
+ clearstatcache(true, $testDir);
1252
+
1253
+ if ($couldRead) {
1254
+ $this->markTestSkipped('could read test files while test requires unreadable');
1255
+ }
1256
+ }
1257
+
1258
+ /**
1259
+ * @group legacy
1260
+ * @expectedDeprecation The "Symfony\Component\Finder\Finder::sortByName()" method will have a new "bool $useNaturalSort = false" argument in version 5.0, not defining it is deprecated since Symfony 4.2.
1261
+ */
1262
+ public function testInheritedClassCallSortByNameWithNoArguments()
1263
+ {
1264
+ $finderChild = new ClassThatInheritFinder();
1265
+ $finderChild->sortByName();
1266
+ }
1267
+
1268
+ protected function buildFinder()
1269
+ {
1270
+ return Finder::create();
1271
+ }
1272
+ }
1273
+
1274
+ class ClassThatInheritFinder extends Finder
1275
+ {
1276
+ public function sortByName()
1277
+ {
1278
+ parent::sortByName();
1279
+ }
1280
+ }