dependabot-composer 0.118.13 → 0.119.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/helpers/.php_cs.cache +1 -0
- data/helpers/vendor/autoload.php +7 -0
- data/helpers/vendor/bin/composer +1 -0
- data/helpers/vendor/bin/jsonlint +1 -0
- data/helpers/vendor/bin/php-cs-fixer +1 -0
- data/helpers/vendor/bin/phpstan +1 -0
- data/helpers/vendor/bin/phpstan.phar +1 -0
- data/helpers/vendor/bin/validate-json +1 -0
- data/helpers/vendor/composer/ClassLoader.php +445 -0
- data/helpers/vendor/composer/LICENSE +21 -0
- data/helpers/vendor/composer/autoload_classmap.php +66 -0
- data/helpers/vendor/composer/autoload_files.php +14 -0
- data/helpers/vendor/composer/autoload_namespaces.php +9 -0
- data/helpers/vendor/composer/autoload_psr4.php +34 -0
- data/helpers/vendor/composer/autoload_real.php +73 -0
- data/helpers/vendor/composer/autoload_static.php +232 -0
- data/helpers/vendor/composer/ca-bundle/LICENSE +19 -0
- data/helpers/vendor/composer/ca-bundle/README.md +85 -0
- data/helpers/vendor/composer/ca-bundle/composer.json +54 -0
- data/helpers/vendor/composer/ca-bundle/res/cacert.pem +3466 -0
- data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +325 -0
- data/helpers/vendor/composer/composer/.editorconfig +11 -0
- data/helpers/vendor/composer/composer/.gitattributes +17 -0
- data/helpers/vendor/composer/composer/.gitignore +11 -0
- data/helpers/vendor/composer/composer/CHANGELOG.md +952 -0
- data/helpers/vendor/composer/composer/LICENSE +19 -0
- data/helpers/vendor/composer/composer/PORTING_INFO +39 -0
- data/helpers/vendor/composer/composer/README.md +63 -0
- data/helpers/vendor/composer/composer/bin/compile +31 -0
- data/helpers/vendor/composer/composer/bin/composer +62 -0
- data/helpers/vendor/composer/composer/composer.json +86 -0
- data/helpers/vendor/composer/composer/composer.lock +1425 -0
- data/helpers/vendor/composer/composer/doc/00-intro.md +166 -0
- data/helpers/vendor/composer/composer/doc/01-basic-usage.md +273 -0
- data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
- data/helpers/vendor/composer/composer/doc/03-cli.md +957 -0
- data/helpers/vendor/composer/composer/doc/04-schema.md +958 -0
- data/helpers/vendor/composer/composer/doc/05-repositories.md +719 -0
- data/helpers/vendor/composer/composer/doc/06-config.md +310 -0
- data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
- data/helpers/vendor/composer/composer/doc/articles/aliases.md +111 -0
- data/helpers/vendor/composer/composer/doc/articles/autoloader-optimization.md +111 -0
- data/helpers/vendor/composer/composer/doc/articles/custom-installers.md +204 -0
- data/helpers/vendor/composer/composer/doc/articles/handling-private-packages-with-satis.md +356 -0
- data/helpers/vendor/composer/composer/doc/articles/http-basic-authentication.md +59 -0
- data/helpers/vendor/composer/composer/doc/articles/plugins.md +290 -0
- data/helpers/vendor/composer/composer/doc/articles/scripts.md +372 -0
- data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +322 -0
- data/helpers/vendor/composer/composer/doc/articles/vendor-binaries.md +110 -0
- data/helpers/vendor/composer/composer/doc/articles/versions.md +230 -0
- data/helpers/vendor/composer/composer/doc/dev/DefaultPolicy.md +55 -0
- data/helpers/vendor/composer/composer/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md +55 -0
- data/helpers/vendor/composer/composer/doc/faqs/how-to-install-composer-programmatically.md +42 -0
- data/helpers/vendor/composer/composer/doc/faqs/how-to-install-untrusted-packages-safely.md +19 -0
- data/helpers/vendor/composer/composer/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md +32 -0
- data/helpers/vendor/composer/composer/doc/faqs/which-version-numbering-system-does-composer-itself-use.md +4 -0
- data/helpers/vendor/composer/composer/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md +21 -0
- data/helpers/vendor/composer/composer/doc/faqs/why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md +21 -0
- data/helpers/vendor/composer/composer/doc/faqs/why-can't-composer-load-repositories-recursively.md +35 -0
- data/helpers/vendor/composer/composer/doc/fixtures/fixtures.md +22 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-plain/packages.json +158 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/bar/baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json +50 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/foo/bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json +77 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/gar/nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json +50 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json +16 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/qux/quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json +22 -0
- data/helpers/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/packages.json +9 -0
- data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
- data/helpers/vendor/composer/composer/res/composer-schema.json +880 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1070 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +312 -0
- data/helpers/vendor/composer/composer/src/Composer/Cache.php +257 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +48 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +172 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +259 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +166 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +76 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +803 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +423 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +57 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +747 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +90 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +108 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/FundCommand.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/GlobalCommand.php +111 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/HomeCommand.php +168 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/InitCommand.php +854 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/InstallCommand.php +124 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/LicensesCommand.php +165 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php +95 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php +57 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RemoveCommand.php +163 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RequireCommand.php +297 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +146 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SearchCommand.php +85 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +556 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1211 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +228 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +154 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/UpdateCommand.php +228 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ValidateCommand.php +178 -0
- data/helpers/vendor/composer/composer/src/Composer/Compiler.php +287 -0
- data/helpers/vendor/composer/composer/src/Composer/Composer.php +294 -0
- data/helpers/vendor/composer/composer/src/Composer/Config.php +483 -0
- data/helpers/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php +277 -0
- data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +519 -0
- data/helpers/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php +90 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php +211 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php +285 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php +67 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php +67 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php +42 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php +50 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php +83 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php +27 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php +387 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php +257 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Request.php +78 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php +268 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php +113 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSet.php +176 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php +394 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php +52 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php +144 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php +113 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Solver.php +872 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverBugException.php +27 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php +88 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Transaction.php +244 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/ArchiveDownloader.php +135 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/ChangeReportInterface.php +32 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloadManager.php +325 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/DownloaderInterface.php +64 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php +32 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/FileDownloader.php +322 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/FilesystemException.php +26 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/FossilDownloader.php +116 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/GitDownloader.php +528 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/GzipDownloader.php +84 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/HgDownloader.php +100 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PathDownloader.php +228 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PearPackageExtractor.php +266 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php +112 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PharDownloader.php +36 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/RarDownloader.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/SvnDownloader.php +225 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php +31 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/TransportException.php +53 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php +32 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/VcsDownloader.php +293 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/XzDownloader.php +60 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/ZipDownloader.php +230 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/Event.php +103 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php +571 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php +48 -0
- data/helpers/vendor/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php +20 -0
- data/helpers/vendor/composer/composer/src/Composer/Exception/NoSslException.php +20 -0
- data/helpers/vendor/composer/composer/src/Composer/Factory.php +653 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/BaseIO.php +284 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/BufferIO.php +86 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/ConsoleIO.php +346 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/IOInterface.php +207 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/NullIO.php +129 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer.php +1876 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php +214 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php +30 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallationManager.php +326 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvent.php +161 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerEvents.php +43 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/InstallerInterface.php +79 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/LibraryInstaller.php +232 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/MetapackageInstaller.php +100 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/NoopInstaller.php +88 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvent.php +65 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PackageEvents.php +75 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PearBinaryInstaller.php +144 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PearInstaller.php +84 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/PluginInstaller.php +84 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/ProjectInstaller.php +99 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php +151 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonFile.php +319 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonFormatter.php +134 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonManipulator.php +530 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonValidationException.php +34 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/AliasPackage.php +419 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php +44 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php +105 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php +183 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php +43 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php +148 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php +31 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php +79 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php +97 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php +86 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/BasePackage.php +251 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php +129 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackage.php +218 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +104 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +152 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Link.php +128 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php +294 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php +46 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php +45 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php +30 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php +264 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php +525 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +440 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Package.php +612 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/PackageInterface.php +389 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php +173 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/RootPackage.php +136 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php +142 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php +326 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php +81 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php +182 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php +23 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php +33 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/Capable.php +43 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php +88 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php +61 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php +39 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PluginManager.php +406 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php +68 -0
- data/helpers/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php +78 -0
- data/helpers/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php +218 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/BaseRepository.php +178 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +841 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/CompositeRepository.php +164 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php +23 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/FilesystemRepository.php +97 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PackageRepository.php +61 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PathRepository.php +224 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php +82 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php +67 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelReader.php +101 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php +164 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php +139 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php +60 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php +50 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php +317 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/PackageInfo.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php +50 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PearRepository.php +198 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php +349 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +177 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php +74 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php +189 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php +452 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php +243 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitDriver.php +235 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +567 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +579 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/HgDriver.php +236 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php +186 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php +397 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php +175 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php +117 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/VcsRepository.php +430 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/VersionCacheInterface.php +23 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/WritableArrayRepository.php +66 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php +54 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/CommandEvent.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/Event.php +133 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/PackageEvent.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Script/ScriptEvents.php +193 -0
- data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php +36 -0
- data/helpers/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php +82 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/AuthHelper.php +63 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Bitbucket.php +245 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ComposerMirror.php +57 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ConfigValidator.php +191 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ErrorHandler.php +82 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Filesystem.php +719 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +425 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/GitHub.php +180 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/GitLab.php +177 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Hg.php +94 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/IniHelper.php +64 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php +435 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/PackageSorter.php +92 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Perforce.php +579 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Platform.php +92 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php +201 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1147 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Silencer.php +78 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/SpdxLicense.php +24 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php +177 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Svn.php +381 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/TlsHelper.php +202 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Url.php +55 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Zip.php +107 -0
- data/helpers/vendor/composer/composer/src/Composer/XdebugHandler.php +31 -0
- data/helpers/vendor/composer/composer/src/bootstrap.php +24 -0
- data/helpers/vendor/composer/installed.json +1860 -0
- data/helpers/vendor/composer/semver/CHANGELOG.md +78 -0
- data/helpers/vendor/composer/semver/LICENSE +19 -0
- data/helpers/vendor/composer/semver/README.md +70 -0
- data/helpers/vendor/composer/semver/composer.json +57 -0
- data/helpers/vendor/composer/semver/src/Comparator.php +111 -0
- data/helpers/vendor/composer/semver/src/Constraint/AbstractConstraint.php +63 -0
- data/helpers/vendor/composer/semver/src/Constraint/Constraint.php +215 -0
- data/helpers/vendor/composer/semver/src/Constraint/ConstraintInterface.php +32 -0
- data/helpers/vendor/composer/semver/src/Constraint/EmptyConstraint.php +59 -0
- data/helpers/vendor/composer/semver/src/Constraint/MultiConstraint.php +120 -0
- data/helpers/vendor/composer/semver/src/Semver.php +127 -0
- data/helpers/vendor/composer/semver/src/VersionParser.php +545 -0
- data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +104 -0
- data/helpers/vendor/composer/spdx-licenses/LICENSE +19 -0
- data/helpers/vendor/composer/spdx-licenses/README.md +69 -0
- data/helpers/vendor/composer/spdx-licenses/composer.json +56 -0
- data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +125 -0
- data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +2112 -0
- data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
- data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +74 -0
- data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
- data/helpers/vendor/composer/xdebug-handler/README.md +289 -0
- data/helpers/vendor/composer/xdebug-handler/composer.json +40 -0
- data/helpers/vendor/composer/xdebug-handler/src/PhpConfig.php +73 -0
- data/helpers/vendor/composer/xdebug-handler/src/Process.php +181 -0
- data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
- data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +572 -0
- data/helpers/vendor/doctrine/annotations/.doctrine-project.json +40 -0
- data/helpers/vendor/doctrine/annotations/CHANGELOG.md +162 -0
- data/helpers/vendor/doctrine/annotations/LICENSE +19 -0
- data/helpers/vendor/doctrine/annotations/README.md +17 -0
- data/helpers/vendor/doctrine/annotations/composer.json +44 -0
- data/helpers/vendor/doctrine/annotations/docs/en/annotations.rst +271 -0
- data/helpers/vendor/doctrine/annotations/docs/en/custom.rst +353 -0
- data/helpers/vendor/doctrine/annotations/docs/en/index.rst +97 -0
- data/helpers/vendor/doctrine/annotations/docs/en/sidebar.rst +6 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php +79 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attribute.php +47 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php +37 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php +84 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php +54 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Required.php +33 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php +107 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php +197 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php +418 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php +180 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php +278 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php +147 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php +1221 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php +290 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php +119 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/PhpParser.php +91 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php +89 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php +127 -0
- data/helpers/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php +194 -0
- data/helpers/vendor/doctrine/annotations/phpbench.json.dist +4 -0
- data/helpers/vendor/doctrine/annotations/phpstan.neon +14 -0
- data/helpers/vendor/doctrine/lexer/.doctrine-project.json +17 -0
- data/helpers/vendor/doctrine/lexer/.github/FUNDING.yml +3 -0
- data/helpers/vendor/doctrine/lexer/.gitignore +2 -0
- data/helpers/vendor/doctrine/lexer/LICENSE +19 -0
- data/helpers/vendor/doctrine/lexer/README.md +7 -0
- data/helpers/vendor/doctrine/lexer/composer.json +36 -0
- data/helpers/vendor/doctrine/lexer/docs/en/dql-parser.rst +294 -0
- data/helpers/vendor/doctrine/lexer/docs/en/index.rst +53 -0
- data/helpers/vendor/doctrine/lexer/docs/en/sidebar.rst +6 -0
- data/helpers/vendor/doctrine/lexer/docs/en/simple-parser-example.rst +102 -0
- data/helpers/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php +332 -0
- data/helpers/vendor/doctrine/lexer/phpunit.xml.dist +26 -0
- data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/AbstractLexerTest.php +268 -0
- data/helpers/vendor/doctrine/lexer/tests/Doctrine/Common/Lexer/ConcreteLexer.php +49 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/CHANGELOG.md +3249 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md +43 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/LICENSE +20 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/README.rst +2203 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/UPGRADE.md +184 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/ci-integration.sh +8 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/composer.json +83 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/COOKBOOK-FIXERS.md +530 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/checkstyle.xsd +44 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/junit-10.xsd +135 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/schema.json +47 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/doc/xml.xsd +83 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/php-cs-fixer +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractAlignFixerHelper.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php +221 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php +227 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php +127 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractLinesBeforeNamespaceFixer.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php +207 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php +135 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/AbstractPsrAutoloadingFixer.php +87 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php +138 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php +35 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php +33 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php +30 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Config.php +280 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php +194 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php +40 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php +54 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Application.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php +415 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php +270 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php +58 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php +637 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/ReadmeCommand.php +279 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php +177 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php +941 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php +154 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/NullOutput.php +23 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutput.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/Output/ProcessOutputInterface.php +21 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClient.php +52 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/GithubClientInterface.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionChecker.php +114 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/SelfUpdate/NewVersionCheckerInterface.php +46 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Console/WarningsDetector.php +74 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DiffConsoleFormatter.php +102 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/DifferInterface.php +31 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/FullDiffer.php +48 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/NullDiffer.php +27 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannDiffer.php +39 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/SebastianBergmannShortDiffer.php +39 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Differ/UnifiedDiffer.php +43 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Annotation.php +323 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/DocBlock.php +269 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Line.php +144 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/ShortDescription.php +65 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/Tag.php +111 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/DocBlock/TagComparator.php +57 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Token.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Doctrine/Annotation/Tokens.php +377 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/Error.php +118 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Error/ErrorsManager.php +79 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Event/Event.php +29 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileReader.php +87 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FileRemoval.php +80 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Finder.php +35 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/BacktickToShellExecFixer.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/EregToPregFixer.php +184 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/MbStrFunctionsFixer.php +130 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoAliasFunctionsFixer.php +227 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/NoMixedEchoPrintFixer.php +162 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/PowToExponentiationFixer.php +211 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/RandomApiMigrationFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Alias/SetTypeToCastFixer.php +249 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/ArraySyntaxFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoMultilineWhitespaceAroundDoubleArrowFixer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoTrailingCommaInSinglelineArrayFixer.php +89 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NoWhitespaceBeforeCommaInArrayFixer.php +152 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/NormalizeIndexBraceFixer.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrailingCommaInMultilineArrayFixer.php +147 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/TrimArraySpacesFixer.php +103 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ArrayNotation/WhitespaceAfterCommaInArrayFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/BracesFixer.php +1070 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/EncodingFixer.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/NonPrintableCharacterFixer.php +180 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr0Fixer.php +171 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Basic/Psr4Fixer.php +100 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/ConstantCaseFixer.php +146 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseConstantsFixer.php +60 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseKeywordsFixer.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/LowercaseStaticReferenceFixer.php +105 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicConstantCasingFixer.php +98 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/MagicMethodCasingFixer.php +228 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionCasingFixer.php +117 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Casing/NativeFunctionTypeDeclarationCasingFixer.php +177 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/CastSpacesFixer.php +129 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/LowercaseCastFixer.php +95 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ModernizeTypesCastingFixer.php +159 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoShortBoolCastFixer.php +106 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/NoUnsetCastFixer.php +90 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/CastNotation/ShortScalarCastFixer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassAttributesSeparationFixer.php +392 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ClassDefinitionFixer.php +436 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalClassFixer.php +60 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalInternalClassFixer.php +214 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalPublicMethodForAbstractClassFixer.php +168 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/FinalStaticAccessFixer.php +154 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/MethodSeparationFixer.php +84 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoBlankLinesAfterClassOpeningFixer.php +101 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoNullPropertyInitializationFixer.php +98 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoPhp4ConstructorFixer.php +390 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/NoUnneededFinalMethodFixer.php +143 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedClassElementsFixer.php +500 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/OrderedInterfacesFixer.php +231 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/ProtectedToPrivateFixer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfAccessorFixer.php +191 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SelfStaticAccessorFixer.php +206 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleClassElementPerStatementFixer.php +242 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/SingleTraitInsertPerStatementFixer.php +119 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassNotation/VisibilityRequiredFixer.php +202 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ClassUsage/DateTimeImmutableFixer.php +162 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/CommentToPhpdocFixer.php +232 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HashToSlashCommentFixer.php +58 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/HeaderCommentFixer.php +452 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/MultilineCommentOpeningClosingFixer.php +95 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoEmptyCommentFixer.php +173 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/NoTrailingWhitespaceInCommentFixer.php +85 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Comment/SingleLineCommentStyleFixer.php +168 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurableFixerInterface.php +51 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConfigurationDefinitionFixerInterface.php +28 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ConstantNotation/NativeConstantInvocationFixer.php +284 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/ElseifFixer.php +102 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/IncludeFixer.php +153 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoAlternativeSyntaxFixer.php +227 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoBreakCommentFixer.php +369 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoSuperfluousElseifFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoTrailingCommaInListCallFixer.php +74 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededControlParenthesesFixer.php +189 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUnneededCurlyBracesFixer.php +177 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/NoUselessElseFixer.php +127 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSemicolonToColonFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/SwitchCaseSpaceFixer.php +92 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ControlStructure/YodaStyleFixer.php +750 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DefinedFixerInterface.php +29 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DeprecatedFixerInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationArrayAssignmentFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationBracesFixer.php +123 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationIndentationFixer.php +199 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/DoctrineAnnotation/DoctrineAnnotationSpacesFixer.php +349 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FixerInterface.php +77 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/CombineNestedDirnameFixer.php +234 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagOrderFixer.php +130 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FopenFlagsFixer.php +114 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionDeclarationFixer.php +217 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/FunctionTypehintSpaceFixer.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ImplodeCallFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/MethodArgumentSpaceFixer.php +511 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NativeFunctionInvocationFixer.php +424 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoSpacesAfterFunctionNameFixer.php +184 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NoUnreachableDefaultArgumentValueFixer.php +218 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/NullableTypeDeclarationForDefaultNullValueFixer.php +151 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToParamTypeFixer.php +420 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/PhpdocToReturnTypeFixer.php +378 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/ReturnTypeDeclarationFixer.php +133 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/SingleLineThrowFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/StaticLambdaFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/FunctionNotation/VoidReturnFixer.php +259 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/FullyQualifiedStrictTypesFixer.php +178 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/GlobalNamespaceImportFixer.php +751 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoLeadingImportSlashFixer.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/NoUnusedImportsFixer.php +277 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/OrderedImportsFixer.php +534 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleImportPerStatementFixer.php +252 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Import/SingleLineAfterImportsFixer.php +158 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ClassKeywordRemoveFixer.php +248 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveIssetsFixer.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/CombineConsecutiveUnsetsFixer.php +191 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DeclareEqualNormalizeFixer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/DirConstantFixer.php +131 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ErrorSuppressionFixer.php +175 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/ExplicitIndirectVariableFixer.php +91 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/FunctionToConstantFixer.php +320 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/IsNullFixer.php +203 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/NoUnsetOnPropertyFixer.php +231 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/LanguageConstruct/SilencedDeprecationErrorFixer.php +55 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ListNotation/ListSyntaxFixer.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/BlankLineAfterNamespaceFixer.php +144 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoBlankLinesBeforeNamespaceFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/NoLeadingNamespaceWhitespaceFixer.php +101 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/NamespaceNotation/SingleBlankLineBeforeNamespaceFixer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Naming/NoHomoglyphNamesFixer.php +244 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignDoubleArrowFixerHelper.php +151 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/AlignEqualsFixerHelper.php +78 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/BinaryOperatorSpacesFixer.php +833 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ConcatSpaceFixer.php +161 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/IncrementStyleFixer.php +217 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/LogicalOperatorsFixer.php +76 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NewWithBracesFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSpaceFixer.php +81 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/NotOperatorWithSuccessorSpaceFixer.php +79 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/ObjectOperatorWithoutWhitespaceFixer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/PreIncrementFixer.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeIncrementFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/StandardizeNotEqualsFixer.php +66 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryOperatorSpacesFixer.php +121 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/TernaryToNullCoalescingFixer.php +215 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Operator/UnaryOperatorSpacesFixer.php +78 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/BlankLineAfterOpeningTagFixer.php +98 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/FullOpeningTagFixer.php +131 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/LinebreakAfterOpeningTagFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoClosingTagFixer.php +69 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpTag/NoShortEchoTagFixer.php +80 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitConstructFixer.php +218 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertFixer.php +443 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitDedicateAssertInternalTypeFixer.php +200 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitExpectationFixer.php +282 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitFqcnAnnotationFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitInternalClassFixer.php +234 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMethodCasingFixer.php +278 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitMockShortWillReturnFixer.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNamespacedFixer.php +225 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitNoExpectationAnnotationFixer.php +302 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitOrderedCoversFixer.php +107 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSetUpTearDownVisibilityFixer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitSizeClassFixer.php +270 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitStrictFixer.php +154 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTargetVersion.php +61 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestAnnotationFixer.php +533 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestCaseStaticMethodCallsFixer.php +474 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/PhpUnit/PhpUnitTestClassRequiresCoversFixer.php +150 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/AlignMultilineCommentFixer.php +171 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/GeneralPhpdocAnnotationRemoveFixer.php +130 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoBlankLinesAfterPhpdocFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoEmptyPhpdocFixer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/NoSuperfluousPhpdocTagsFixer.php +506 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAddMissingParamAnnotationFixer.php +278 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAlignFixer.php +434 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocAnnotationWithoutDotFixer.php +132 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocIndentFixer.php +139 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocInlineTagFixer.php +107 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocLineSpanFixer.php +168 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAccessFixer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoAliasTagFixer.php +178 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoEmptyReturnFixer.php +123 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoPackageFixer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocNoUselessInheritdocFixer.php +190 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocOrderFixer.php +171 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocReturnSelfReferenceFixer.php +228 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocScalarFixer.php +125 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSeparationFixer.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSingleLineVarSpacingFixer.php +108 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocSummaryFixer.php +104 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocToCommentFixer.php +97 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimConsecutiveBlankLineSeparationFixer.php +217 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTrimFixer.php +129 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesFixer.php +163 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocTypesOrderFixer.php +223 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarAnnotationCorrectOrderFixer.php +78 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Phpdoc/PhpdocVarWithoutNameFixer.php +151 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/BlankLineBeforeReturnFixer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/NoUselessReturnFixer.php +112 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/ReturnAssignmentFixer.php +374 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/ReturnNotation/SimplifiedNullReturnFixer.php +170 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/MultilineWhitespaceBeforeSemicolonsFixer.php +304 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoEmptyStatementFixer.php +162 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoMultilineWhitespaceBeforeSemicolonsFixer.php +68 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/NoSinglelineWhitespaceBeforeSemicolonsFixer.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SemicolonAfterInstructionFixer.php +63 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Semicolon/SpaceAfterSemicolonFixer.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/DeclareStrictTypesFixer.php +152 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictComparisonFixer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Strict/StrictParamFixer.php +164 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/EscapeImplicitBackslashesFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/ExplicitStringVariableFixer.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/HeredocToNowdocFixer.php +115 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/NoBinaryStringFixer.php +65 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SimpleToComplexStringVariableFixer.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/SingleQuoteFixer.php +116 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/StringNotation/StringLineEndingFixer.php +85 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/ArrayIndentationFixer.php +400 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/BlankLineBeforeStatementFixer.php +367 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/CompactNullableTypehintFixer.php +79 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/HeredocIndentationFixer.php +167 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/IndentationTypeFixer.php +163 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/LineEndingFixer.php +102 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/MethodChainingIndentationFixer.php +202 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraBlankLinesFixer.php +484 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoExtraConsecutiveBlankLinesFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesAroundOffsetFixer.php +107 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoSpacesInsideParenthesisFixer.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoTrailingWhitespaceFixer.php +114 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/NoWhitespaceInBlankLineFixer.php +103 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/Whitespace/SingleBlankLineAtEofFixer.php +73 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Fixer/WhitespacesAwareFixerInterface.php +23 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOption.php +103 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AliasedFixerOptionBuilder.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/AllowedValueSubset.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOption.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/DeprecatedFixerOptionInterface.php +21 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolver.php +128 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverInterface.php +28 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerConfigurationResolverRootless.php +99 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOption.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionBuilder.php +145 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/FixerOptionInterface.php +53 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerConfiguration/InvalidOptionsForEnvException.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSample.php +54 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/CodeSampleInterface.php +29 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSample.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FileSpecificCodeSampleInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinition.php +93 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/FixerDefinitionInterface.php +55 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSample.php +65 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificCodeSampleInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecification.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerDefinition/VersionSpecificationInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFactory.php +254 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerFileProcessedEvent.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/FixerNameValidator.php +36 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Indicator/PhpUnitTestCaseIndicator.php +75 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/CachingLinter.php +72 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/Linter.php +64 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LinterInterface.php +44 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingException.php +20 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/LintingResultInterface.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinter.php +149 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLinterProcessBuilder.php +50 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/ProcessLintingResult.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLinter.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/TokenizerLintingResult.php +45 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Linter/UnavailableLinterException.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharChecker.php +39 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/PharCheckerInterface.php +26 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Preg.php +233 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/PregException.php +24 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/CheckstyleReporter.php +74 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/GitlabReporter.php +60 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JsonReporter.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/JunitReporter.php +141 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReportSummary.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterFactory.php +100 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/ReporterInterface.php +31 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/TextReporter.php +108 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Report/XmlReporter.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSet.php +534 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/RuleSetInterface.php +59 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileCachingLintingIterator.php +80 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileFilterIterator.php +122 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/FileLintingIterator.php +68 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Runner/Runner.php +307 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/StdinFileInfo.php +172 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractFixerTestCase.php +36 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AbstractIntegrationTestCase.php +36 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/AccessibleObject.php +93 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Test/IntegrationCase.php +136 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/AbstractTransformer.php +42 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/ArgumentAnalysis.php +108 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceAnalysis.php +127 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/NamespaceUseAnalysis.php +147 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/StartEndTokenAwareAnalysis.php +30 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/Analysis/TypeAnalysis.php +125 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ArgumentsAnalyzer.php +140 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/BlocksAnalyzer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/ClassyAnalyzer.php +82 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/CommentsAnalyzer.php +314 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/FunctionsAnalyzer.php +262 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespaceUsesAnalyzer.php +105 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Analyzer/NamespacesAnalyzer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CT.php +95 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/CodeHasher.php +38 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Generator/NamespacedStringTokenGenerator.php +43 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Resolver/TypeShortNameResolver.php +94 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Token.php +618 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Tokens.php +1453 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TokensAnalyzer.php +743 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ArrayTypehintTransformer.php +61 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/BraceClassInstantiationTransformer.php +88 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ClassConstantTransformer.php +64 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/CurlyBraceTransformer.php +221 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ImportTransformer.php +67 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NamespaceOperatorTransformer.php +61 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/NullableTypeTransformer.php +70 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/ReturnRefTransformer.php +62 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/SquareBraceTransformer.php +196 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeAlternationTransformer.php +86 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/TypeColonTransformer.php +88 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/UseTransformer.php +110 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformer/WhitespacyCommentTransformer.php +71 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/TransformerInterface.php +72 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/Transformers.php +113 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfo.php +111 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/ToolInfoInterface.php +31 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/Utils.php +185 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/WhitespacesFixerConfig.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/src/WordMatcher.php +57 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractFixerTestCase.php +259 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationCaseFactory.php +254 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/AbstractIntegrationTestCase.php +402 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/Assert/AssertTokensTrait.php +48 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCase.php +153 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactory.php +22 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IntegrationCaseFactoryInterface.php +28 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/InternalIntegrationCaseFactory.php +35 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/Test/IsIdenticalConstraint.php +56 -0
- data/helpers/vendor/friendsofphp/php-cs-fixer/tests/TestCase.php +49 -0
- data/helpers/vendor/justinrainbow/json-schema/.php_cs.dist +33 -0
- data/helpers/vendor/justinrainbow/json-schema/LICENSE +21 -0
- data/helpers/vendor/justinrainbow/json-schema/README.md +206 -0
- data/helpers/vendor/justinrainbow/json-schema/bin/validate-json +251 -0
- data/helpers/vendor/justinrainbow/json-schema/composer.json +76 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/README.md +14 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/data.json +3 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/demo.php +18 -0
- data/helpers/vendor/justinrainbow/json-schema/demo/schema.json +3 -0
- data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json +174 -0
- data/helpers/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json +150 -0
- data/helpers/vendor/justinrainbow/json-schema/phpunit.xml.dist +26 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php +148 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php +121 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php +213 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php +65 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php +54 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php +220 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php +214 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php +81 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php +192 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php +94 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php +60 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php +68 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php +40 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php +18 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php +261 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php +419 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php +161 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php +7 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php +40 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php +19 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php +17 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php +14 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php +149 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php +30 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php +169 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php +41 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php +34 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php +83 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php +93 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php +56 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php +36 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php +175 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php +349 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php +26 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php +26 -0
- data/helpers/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php +88 -0
- data/helpers/vendor/paragonie/random_compat/LICENSE +22 -0
- data/helpers/vendor/paragonie/random_compat/build-phar.sh +5 -0
- data/helpers/vendor/paragonie/random_compat/composer.json +34 -0
- data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey +5 -0
- data/helpers/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc +11 -0
- data/helpers/vendor/paragonie/random_compat/lib/random.php +32 -0
- data/helpers/vendor/paragonie/random_compat/other/build_phar.php +57 -0
- data/helpers/vendor/paragonie/random_compat/psalm-autoload.php +9 -0
- data/helpers/vendor/paragonie/random_compat/psalm.xml +19 -0
- data/helpers/vendor/php-cs-fixer/diff/ChangeLog.md +7 -0
- data/helpers/vendor/php-cs-fixer/diff/LICENSE +5 -0
- data/helpers/vendor/php-cs-fixer/diff/LICENSE_DIFF +31 -0
- data/helpers/vendor/php-cs-fixer/diff/LICENSE_GECKO +19 -0
- data/helpers/vendor/php-cs-fixer/diff/README.md +13 -0
- data/helpers/vendor/php-cs-fixer/diff/composer.json +41 -0
- data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/ConfigurationException.php +36 -0
- data/helpers/vendor/php-cs-fixer/diff/src/GeckoPackages/DiffOutputBuilder/UnifiedDiffOutputBuilder.php +295 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Chunk.php +103 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Diff.php +73 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Differ.php +399 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/LongestCommonSubsequence.php +27 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php +95 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php +74 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Line.php +54 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v1_4/Parser.php +110 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Chunk.php +78 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Diff.php +67 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Differ.php +321 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/Exception.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Exception/InvalidArgumentException.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Line.php +44 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/LongestCommonSubsequenceCalculator.php +24 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/AbstractChunkOutputBuilder.php +56 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOnlyOutputBuilder.php +63 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/DiffOutputBuilderInterface.php +19 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Output/UnifiedDiffOutputBuilder.php +165 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/Parser.php +106 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v2_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Chunk.php +78 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Diff.php +67 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Differ.php +329 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/ConfigurationException.php +40 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/Exception.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Exception/InvalidArgumentException.php +15 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Line.php +44 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/LongestCommonSubsequenceCalculator.php +24 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/MemoryEfficientLongestCommonSubsequenceCalculator.php +81 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/AbstractChunkOutputBuilder.php +56 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOnlyOutputBuilder.php +66 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/DiffOutputBuilderInterface.php +20 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/StrictUnifiedDiffOutputBuilder.php +315 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Output/UnifiedDiffOutputBuilder.php +259 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/Parser.php +106 -0
- data/helpers/vendor/php-cs-fixer/diff/src/v3_0/TimeEfficientLongestCommonSubsequenceCalculator.php +66 -0
- data/helpers/vendor/phpstan/phpstan/.gitattributes +10 -0
- data/helpers/vendor/phpstan/phpstan/.gitignore +9 -0
- data/helpers/vendor/phpstan/phpstan/LICENSE +21 -0
- data/helpers/vendor/phpstan/phpstan/README.md +64 -0
- data/helpers/vendor/phpstan/phpstan/bootstrap.php +43 -0
- data/helpers/vendor/phpstan/phpstan/composer.json +23 -0
- data/helpers/vendor/phpstan/phpstan/conf/bleedingEdge.neon +2 -0
- data/helpers/vendor/phpstan/phpstan/phpstan +0 -0
- data/helpers/vendor/phpstan/phpstan/phpstan.phar +0 -0
- data/helpers/vendor/phpstan/phpstan/phpstan.phar.asc +17 -0
- data/helpers/vendor/psr/log/LICENSE +19 -0
- data/helpers/vendor/psr/log/Psr/Log/AbstractLogger.php +128 -0
- data/helpers/vendor/psr/log/Psr/Log/InvalidArgumentException.php +7 -0
- data/helpers/vendor/psr/log/Psr/Log/LogLevel.php +18 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +18 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +26 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerInterface.php +125 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +142 -0
- data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +30 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/DummyTest.php +18 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +138 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +147 -0
- data/helpers/vendor/psr/log/README.md +58 -0
- data/helpers/vendor/psr/log/composer.json +26 -0
- data/helpers/vendor/seld/jsonlint/.github/FUNDING.yml +2 -0
- data/helpers/vendor/seld/jsonlint/.github/SECURITY.md +6 -0
- data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
- data/helpers/vendor/seld/jsonlint/.travis.yml +31 -0
- data/helpers/vendor/seld/jsonlint/CHANGELOG.md +76 -0
- data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
- data/helpers/vendor/seld/jsonlint/README.md +94 -0
- data/helpers/vendor/seld/jsonlint/bin/jsonlint +117 -0
- data/helpers/vendor/seld/jsonlint/composer.json +24 -0
- data/helpers/vendor/seld/jsonlint/phpunit.xml.dist +25 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php +26 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php +502 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php +231 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php +28 -0
- data/helpers/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php +16 -0
- data/helpers/vendor/seld/jsonlint/tests/JsonParserTest.php +272 -0
- data/helpers/vendor/seld/jsonlint/tests/bom.json +6 -0
- data/helpers/vendor/seld/jsonlint/tests/bootstrap.php +13 -0
- data/helpers/vendor/seld/phar-utils/.gitignore +1 -0
- data/helpers/vendor/seld/phar-utils/LICENSE +19 -0
- data/helpers/vendor/seld/phar-utils/README.md +45 -0
- data/helpers/vendor/seld/phar-utils/composer.json +26 -0
- data/helpers/vendor/seld/phar-utils/composer.lock +19 -0
- data/helpers/vendor/seld/phar-utils/src/Linter.php +110 -0
- data/helpers/vendor/seld/phar-utils/src/Timestamps.php +192 -0
- data/helpers/vendor/symfony/console/.gitignore +3 -0
- data/helpers/vendor/symfony/console/Application.php +1271 -0
- data/helpers/vendor/symfony/console/CHANGELOG.md +112 -0
- data/helpers/vendor/symfony/console/Command/Command.php +668 -0
- data/helpers/vendor/symfony/console/Command/HelpCommand.php +81 -0
- data/helpers/vendor/symfony/console/Command/ListCommand.php +90 -0
- data/helpers/vendor/symfony/console/Command/LockableTrait.php +72 -0
- data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +46 -0
- data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +64 -0
- data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
- data/helpers/vendor/symfony/console/ConsoleEvents.php +60 -0
- data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +106 -0
- data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +157 -0
- data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
- data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +29 -0
- data/helpers/vendor/symfony/console/Descriptor/JsonDescriptor.php +168 -0
- data/helpers/vendor/symfony/console/Descriptor/MarkdownDescriptor.php +182 -0
- data/helpers/vendor/symfony/console/Descriptor/TextDescriptor.php +342 -0
- data/helpers/vendor/symfony/console/Descriptor/XmlDescriptor.php +248 -0
- data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
- data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +83 -0
- data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
- data/helpers/vendor/symfony/console/Event/ConsoleExceptionEvent.php +71 -0
- data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +58 -0
- data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +95 -0
- data/helpers/vendor/symfony/console/Exception/CommandNotFoundException.php +43 -0
- data/helpers/vendor/symfony/console/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/console/Exception/InvalidArgumentException.php +19 -0
- data/helpers/vendor/symfony/console/Exception/InvalidOptionException.php +21 -0
- data/helpers/vendor/symfony/console/Exception/LogicException.php +19 -0
- data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +243 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +183 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +109 -0
- data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
- data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +91 -0
- data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +102 -0
- data/helpers/vendor/symfony/console/Helper/Helper.php +138 -0
- data/helpers/vendor/symfony/console/Helper/HelperInterface.php +39 -0
- data/helpers/vendor/symfony/console/Helper/HelperSet.php +108 -0
- data/helpers/vendor/symfony/console/Helper/InputAwareHelper.php +33 -0
- data/helpers/vendor/symfony/console/Helper/ProcessHelper.php +145 -0
- data/helpers/vendor/symfony/console/Helper/ProgressBar.php +614 -0
- data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +270 -0
- data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +513 -0
- data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +124 -0
- data/helpers/vendor/symfony/console/Helper/Table.php +698 -0
- data/helpers/vendor/symfony/console/Helper/TableCell.php +75 -0
- data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
- data/helpers/vendor/symfony/console/Helper/TableStyle.php +258 -0
- data/helpers/vendor/symfony/console/Input/ArgvInput.php +372 -0
- data/helpers/vendor/symfony/console/Input/ArrayInput.php +208 -0
- data/helpers/vendor/symfony/console/Input/Input.php +203 -0
- data/helpers/vendor/symfony/console/Input/InputArgument.php +129 -0
- data/helpers/vendor/symfony/console/Input/InputAwareInterface.php +26 -0
- data/helpers/vendor/symfony/console/Input/InputDefinition.php +404 -0
- data/helpers/vendor/symfony/console/Input/InputInterface.php +163 -0
- data/helpers/vendor/symfony/console/Input/InputOption.php +208 -0
- data/helpers/vendor/symfony/console/Input/StreamableInputInterface.php +37 -0
- data/helpers/vendor/symfony/console/Input/StringInput.php +72 -0
- data/helpers/vendor/symfony/console/LICENSE +19 -0
- data/helpers/vendor/symfony/console/Logger/ConsoleLogger.php +128 -0
- data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
- data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +152 -0
- data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +30 -0
- data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
- data/helpers/vendor/symfony/console/Output/Output.php +175 -0
- data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
- data/helpers/vendor/symfony/console/Output/StreamOutput.php +120 -0
- data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +187 -0
- data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
- data/helpers/vendor/symfony/console/Question/Question.php +242 -0
- data/helpers/vendor/symfony/console/README.md +20 -0
- data/helpers/vendor/symfony/console/Resources/bin/hiddeninput.exe +0 -0
- data/helpers/vendor/symfony/console/Style/OutputStyle.php +155 -0
- data/helpers/vendor/symfony/console/Style/StyleInterface.php +153 -0
- data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +431 -0
- data/helpers/vendor/symfony/console/Terminal.php +176 -0
- data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +176 -0
- data/helpers/vendor/symfony/console/Tester/CommandTester.php +162 -0
- data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1772 -0
- data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +430 -0
- data/helpers/vendor/symfony/console/Tests/Command/HelpCommandTest.php +71 -0
- data/helpers/vendor/symfony/console/Tests/Command/ListCommandTest.php +113 -0
- data/helpers/vendor/symfony/console/Tests/Command/LockableTraitTest.php +67 -0
- data/helpers/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +59 -0
- data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +58 -0
- data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +256 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/ApplicationDescriptionTest.php +53 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php +35 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php +45 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php +82 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php +53 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +27 -0
- data/helpers/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php +156 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php +24 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php +27 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php +32 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php +27 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php +25 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php +32 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/DummyOutput.php +36 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo1Command.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo2Command.php +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo3Command.php +29 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo4Command.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo5Command.php +10 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Foo6Command.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooCommand.php +33 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooHiddenCommand.php +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php +28 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php +27 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php +36 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php +25 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php +15 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php +34 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php +37 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php +15 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php +19 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt +3 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt +4 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt +32 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering.php +22 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestAmbiguousCommandRegistering2.php +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestCommand.php +28 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.json +156 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.md +172 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.txt +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_1.xml +104 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.json +509 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.md +431 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.txt +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_2.xml +254 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.md +269 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt +19 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt +18 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt +11 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run1.txt +17 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run2.txt +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +26 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run4.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.json +15 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.md +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.txt +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_1.xml +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.json +33 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.md +29 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.txt +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_2.xml +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.md +29 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt +13 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.md +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.json +4 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.md +0 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt +0 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.json +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.md +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml +10 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.json +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.json +22 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.md +16 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml +14 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.md +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_1.xml +4 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_2.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_3.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_4.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.md +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.txt +2 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_5.xml +6 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_6.xml +5 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json +9 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml +7 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json +12 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt +1 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml +8 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/stream_output_file.txt +0 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php +69 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +344 -0
- data/helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php +34 -0
- data/helpers/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php +129 -0
- data/helpers/vendor/symfony/console/Tests/Helper/HelperSetTest.php +127 -0
- data/helpers/vendor/symfony/console/Tests/Helper/HelperTest.php +55 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php +118 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +805 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +175 -0
- data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +1115 -0
- data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +214 -0
- data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +26 -0
- data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +868 -0
- data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +462 -0
- data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +173 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +109 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +389 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +194 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +137 -0
- data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
- data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +213 -0
- data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
- data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
- data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +176 -0
- data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +67 -0
- data/helpers/vendor/symfony/console/Tests/Question/ChoiceQuestionTest.php +64 -0
- data/helpers/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php +62 -0
- data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +118 -0
- data/helpers/vendor/symfony/console/Tests/TerminalTest.php +97 -0
- data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +70 -0
- data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +212 -0
- data/helpers/vendor/symfony/console/composer.json +56 -0
- data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
- data/helpers/vendor/symfony/debug/.gitignore +3 -0
- data/helpers/vendor/symfony/debug/BufferingLogger.php +37 -0
- data/helpers/vendor/symfony/debug/CHANGELOG.md +64 -0
- data/helpers/vendor/symfony/debug/Debug.php +60 -0
- data/helpers/vendor/symfony/debug/DebugClassLoader.php +455 -0
- data/helpers/vendor/symfony/debug/ErrorHandler.php +787 -0
- data/helpers/vendor/symfony/debug/Exception/ClassNotFoundException.php +36 -0
- data/helpers/vendor/symfony/debug/Exception/ContextErrorException.php +40 -0
- data/helpers/vendor/symfony/debug/Exception/FatalErrorException.php +82 -0
- data/helpers/vendor/symfony/debug/Exception/FatalThrowableError.php +45 -0
- data/helpers/vendor/symfony/debug/Exception/FlattenException.php +263 -0
- data/helpers/vendor/symfony/debug/Exception/OutOfMemoryException.php +21 -0
- data/helpers/vendor/symfony/debug/Exception/SilencedErrorContext.php +67 -0
- data/helpers/vendor/symfony/debug/Exception/UndefinedFunctionException.php +36 -0
- data/helpers/vendor/symfony/debug/Exception/UndefinedMethodException.php +36 -0
- data/helpers/vendor/symfony/debug/ExceptionHandler.php +444 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +214 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +32 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +84 -0
- data/helpers/vendor/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +66 -0
- data/helpers/vendor/symfony/debug/LICENSE +19 -0
- data/helpers/vendor/symfony/debug/README.md +25 -0
- data/helpers/vendor/symfony/debug/Resources/ext/README.md +134 -0
- data/helpers/vendor/symfony/debug/Resources/ext/config.m4 +63 -0
- data/helpers/vendor/symfony/debug/Resources/ext/config.w32 +13 -0
- data/helpers/vendor/symfony/debug/Resources/ext/php_symfony_debug.h +60 -0
- data/helpers/vendor/symfony/debug/Resources/ext/symfony_debug.c +283 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/001.phpt +155 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/002.phpt +65 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/002_1.phpt +48 -0
- data/helpers/vendor/symfony/debug/Resources/ext/tests/003.phpt +87 -0
- data/helpers/vendor/symfony/debug/Tests/DebugClassLoaderTest.php +448 -0
- data/helpers/vendor/symfony/debug/Tests/ErrorHandlerTest.php +660 -0
- data/helpers/vendor/symfony/debug/Tests/Exception/FlattenExceptionTest.php +314 -0
- data/helpers/vendor/symfony/debug/Tests/ExceptionHandlerTest.php +163 -0
- data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php +184 -0
- data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php +81 -0
- data/helpers/vendor/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +76 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/AnnotatedClass.php +13 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php +3 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/DefinitionInEvaluatedCode.php +11 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php +12 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +12 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ErrorHandlerThatUsesThePreviousOne.php +22 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +19 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalClasses.php +85 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php +26 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/FinalMethod2Trait.php +10 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalClass.php +15 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalInterface.php +10 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait.php +10 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php +23 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/LoggerThatSetAnErrorHandler.php +15 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/PEARClass.php +5 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/Throwing.php +3 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/ToStringThrower.php +24 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/TraitWithInternalMethod.php +13 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/casemismatch.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures/reallyNotPsr0.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php +7 -0
- data/helpers/vendor/symfony/debug/Tests/HeaderMock.php +38 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/debug_class_loader.phpt +27 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +47 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/exception_rethrown.phpt +35 -0
- data/helpers/vendor/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt +42 -0
- data/helpers/vendor/symfony/debug/composer.json +40 -0
- data/helpers/vendor/symfony/debug/phpunit.xml.dist +33 -0
- data/helpers/vendor/symfony/event-dispatcher/.gitignore +3 -0
- data/helpers/vendor/symfony/event-dispatcher/CHANGELOG.md +42 -0
- data/helpers/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php +198 -0
- data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php +332 -0
- data/helpers/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php +36 -0
- data/helpers/vendor/symfony/event-dispatcher/Debug/WrappedListener.php +125 -0
- data/helpers/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php +137 -0
- data/helpers/vendor/symfony/event-dispatcher/Event.php +58 -0
- data/helpers/vendor/symfony/event-dispatcher/EventDispatcher.php +238 -0
- data/helpers/vendor/symfony/event-dispatcher/EventDispatcherInterface.php +93 -0
- data/helpers/vendor/symfony/event-dispatcher/EventSubscriberInterface.php +49 -0
- data/helpers/vendor/symfony/event-dispatcher/GenericEvent.php +175 -0
- data/helpers/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php +91 -0
- data/helpers/vendor/symfony/event-dispatcher/LICENSE +19 -0
- data/helpers/vendor/symfony/event-dispatcher/README.md +15 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php +442 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php +210 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php +269 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php +64 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php +143 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php +22 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/EventTest.php +55 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php +134 -0
- data/helpers/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php +100 -0
- data/helpers/vendor/symfony/event-dispatcher/composer.json +47 -0
- data/helpers/vendor/symfony/event-dispatcher/phpunit.xml.dist +31 -0
- data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
- data/helpers/vendor/symfony/filesystem/CHANGELOG.md +53 -0
- data/helpers/vendor/symfony/filesystem/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/filesystem/Exception/FileNotFoundException.php +34 -0
- data/helpers/vendor/symfony/filesystem/Exception/IOException.php +39 -0
- data/helpers/vendor/symfony/filesystem/Exception/IOExceptionInterface.php +27 -0
- data/helpers/vendor/symfony/filesystem/Filesystem.php +774 -0
- data/helpers/vendor/symfony/filesystem/LICENSE +19 -0
- data/helpers/vendor/symfony/filesystem/LockHandler.php +121 -0
- data/helpers/vendor/symfony/filesystem/README.md +13 -0
- data/helpers/vendor/symfony/filesystem/Tests/ExceptionTest.php +47 -0
- data/helpers/vendor/symfony/filesystem/Tests/FilesystemTest.php +1660 -0
- data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +165 -0
- data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -0
- data/helpers/vendor/symfony/filesystem/Tests/LockHandlerTest.php +144 -0
- data/helpers/vendor/symfony/filesystem/composer.json +34 -0
- data/helpers/vendor/symfony/filesystem/phpunit.xml.dist +30 -0
- data/helpers/vendor/symfony/finder/.gitignore +3 -0
- data/helpers/vendor/symfony/finder/CHANGELOG.md +55 -0
- data/helpers/vendor/symfony/finder/Comparator/Comparator.php +98 -0
- data/helpers/vendor/symfony/finder/Comparator/DateComparator.php +51 -0
- data/helpers/vendor/symfony/finder/Comparator/NumberComparator.php +79 -0
- data/helpers/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
- data/helpers/vendor/symfony/finder/Exception/ExceptionInterface.php +25 -0
- data/helpers/vendor/symfony/finder/Finder.php +759 -0
- data/helpers/vendor/symfony/finder/Glob.php +116 -0
- data/helpers/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
- data/helpers/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
- data/helpers/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +45 -0
- data/helpers/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +84 -0
- data/helpers/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +53 -0
- data/helpers/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
- data/helpers/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +47 -0
- data/helpers/vendor/symfony/finder/Iterator/FilterIterator.php +60 -0
- data/helpers/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +112 -0
- data/helpers/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
- data/helpers/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +158 -0
- data/helpers/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
- data/helpers/vendor/symfony/finder/Iterator/SortableIterator.php +80 -0
- data/helpers/vendor/symfony/finder/LICENSE +19 -0
- data/helpers/vendor/symfony/finder/README.md +14 -0
- data/helpers/vendor/symfony/finder/SplFileInfo.php +78 -0
- data/helpers/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php +65 -0
- data/helpers/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php +64 -0
- data/helpers/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php +108 -0
- data/helpers/vendor/symfony/finder/Tests/FinderTest.php +752 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/a +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/A/a.dat +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/dolor.txt +2 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/ipsum.txt +2 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/lorem.txt +2 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/.dot +1 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/a +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon +0 -0
- data/helpers/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat +0 -0
- 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
- data/helpers/vendor/symfony/finder/Tests/GlobTest.php +95 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php +44 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php +74 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php +83 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php +80 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php +73 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php +86 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php +54 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FilterIteratorTest.php +53 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/Iterator.php +55 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php +93 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php +21 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php +132 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php +71 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php +82 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php +119 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php +59 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php +69 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php +179 -0
- data/helpers/vendor/symfony/finder/composer.json +33 -0
- data/helpers/vendor/symfony/finder/phpunit.xml.dist +30 -0
- data/helpers/vendor/symfony/options-resolver/.gitignore +3 -0
- data/helpers/vendor/symfony/options-resolver/CHANGELOG.md +52 -0
- data/helpers/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +102 -0
- data/helpers/vendor/symfony/options-resolver/Exception/AccessException.php +22 -0
- data/helpers/vendor/symfony/options-resolver/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/options-resolver/Exception/InvalidArgumentException.php +21 -0
- data/helpers/vendor/symfony/options-resolver/Exception/InvalidOptionsException.php +23 -0
- data/helpers/vendor/symfony/options-resolver/Exception/MissingOptionsException.php +23 -0
- data/helpers/vendor/symfony/options-resolver/Exception/NoConfigurationException.php +26 -0
- data/helpers/vendor/symfony/options-resolver/Exception/NoSuchOptionException.php +26 -0
- data/helpers/vendor/symfony/options-resolver/Exception/OptionDefinitionException.php +21 -0
- data/helpers/vendor/symfony/options-resolver/Exception/UndefinedOptionsException.php +24 -0
- data/helpers/vendor/symfony/options-resolver/LICENSE +19 -0
- data/helpers/vendor/symfony/options-resolver/Options.php +22 -0
- data/helpers/vendor/symfony/options-resolver/OptionsResolver.php +1085 -0
- data/helpers/vendor/symfony/options-resolver/README.md +15 -0
- data/helpers/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php +183 -0
- data/helpers/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php +1626 -0
- data/helpers/vendor/symfony/options-resolver/composer.json +33 -0
- data/helpers/vendor/symfony/options-resolver/phpunit.xml.dist +31 -0
- data/helpers/vendor/symfony/polyfill-ctype/Ctype.php +227 -0
- data/helpers/vendor/symfony/polyfill-ctype/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-ctype/README.md +12 -0
- data/helpers/vendor/symfony/polyfill-ctype/bootstrap.php +46 -0
- data/helpers/vendor/symfony/polyfill-ctype/composer.json +38 -0
- data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +847 -0
- data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1414 -0
- data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +141 -0
- data/helpers/vendor/symfony/polyfill-mbstring/composer.json +38 -0
- data/helpers/vendor/symfony/polyfill-php70/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-php70/Php70.php +74 -0
- data/helpers/vendor/symfony/polyfill-php70/README.md +28 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/Error.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php +23 -0
- data/helpers/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php +5 -0
- data/helpers/vendor/symfony/polyfill-php70/bootstrap.php +30 -0
- data/helpers/vendor/symfony/polyfill-php70/composer.json +37 -0
- data/helpers/vendor/symfony/polyfill-php72/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-php72/Php72.php +217 -0
- data/helpers/vendor/symfony/polyfill-php72/README.md +28 -0
- data/helpers/vendor/symfony/polyfill-php72/bootstrap.php +57 -0
- data/helpers/vendor/symfony/polyfill-php72/composer.json +35 -0
- data/helpers/vendor/symfony/process/.gitignore +3 -0
- data/helpers/vendor/symfony/process/CHANGELOG.md +57 -0
- data/helpers/vendor/symfony/process/Exception/ExceptionInterface.php +21 -0
- data/helpers/vendor/symfony/process/Exception/InvalidArgumentException.php +21 -0
- data/helpers/vendor/symfony/process/Exception/LogicException.php +21 -0
- data/helpers/vendor/symfony/process/Exception/ProcessFailedException.php +54 -0
- data/helpers/vendor/symfony/process/Exception/ProcessTimedOutException.php +69 -0
- data/helpers/vendor/symfony/process/Exception/RuntimeException.php +21 -0
- data/helpers/vendor/symfony/process/ExecutableFinder.php +88 -0
- data/helpers/vendor/symfony/process/InputStream.php +92 -0
- data/helpers/vendor/symfony/process/LICENSE +19 -0
- data/helpers/vendor/symfony/process/PhpExecutableFinder.php +94 -0
- data/helpers/vendor/symfony/process/PhpProcess.php +76 -0
- data/helpers/vendor/symfony/process/Pipes/AbstractPipes.php +182 -0
- data/helpers/vendor/symfony/process/Pipes/PipesInterface.php +67 -0
- data/helpers/vendor/symfony/process/Pipes/UnixPipes.php +153 -0
- data/helpers/vendor/symfony/process/Pipes/WindowsPipes.php +191 -0
- data/helpers/vendor/symfony/process/Process.php +1746 -0
- data/helpers/vendor/symfony/process/ProcessBuilder.php +280 -0
- data/helpers/vendor/symfony/process/ProcessUtils.php +123 -0
- data/helpers/vendor/symfony/process/README.md +13 -0
- data/helpers/vendor/symfony/process/Tests/ErrorProcessInitiator.php +36 -0
- data/helpers/vendor/symfony/process/Tests/ExecutableFinderTest.php +175 -0
- data/helpers/vendor/symfony/process/Tests/NonStopableProcess.php +47 -0
- data/helpers/vendor/symfony/process/Tests/PhpExecutableFinderTest.php +72 -0
- data/helpers/vendor/symfony/process/Tests/PhpProcessTest.php +48 -0
- data/helpers/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php +72 -0
- data/helpers/vendor/symfony/process/Tests/ProcessBuilderTest.php +220 -0
- data/helpers/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php +133 -0
- data/helpers/vendor/symfony/process/Tests/ProcessTest.php +1596 -0
- data/helpers/vendor/symfony/process/Tests/ProcessUtilsTest.php +53 -0
- data/helpers/vendor/symfony/process/Tests/SignalListener.php +21 -0
- data/helpers/vendor/symfony/process/composer.json +33 -0
- data/helpers/vendor/symfony/process/phpunit.xml.dist +30 -0
- data/helpers/vendor/symfony/stopwatch/.gitignore +3 -0
- data/helpers/vendor/symfony/stopwatch/CHANGELOG.md +9 -0
- data/helpers/vendor/symfony/stopwatch/LICENSE +19 -0
- data/helpers/vendor/symfony/stopwatch/README.md +13 -0
- data/helpers/vendor/symfony/stopwatch/Section.php +200 -0
- data/helpers/vendor/symfony/stopwatch/Stopwatch.php +176 -0
- data/helpers/vendor/symfony/stopwatch/StopwatchEvent.php +254 -0
- data/helpers/vendor/symfony/stopwatch/StopwatchPeriod.php +76 -0
- data/helpers/vendor/symfony/stopwatch/Tests/StopwatchEventTest.php +210 -0
- data/helpers/vendor/symfony/stopwatch/Tests/StopwatchPeriodTest.php +67 -0
- data/helpers/vendor/symfony/stopwatch/Tests/StopwatchTest.php +182 -0
- data/helpers/vendor/symfony/stopwatch/composer.json +33 -0
- data/helpers/vendor/symfony/stopwatch/phpunit.xml.dist +30 -0
- metadata +1564 -8
@@ -0,0 +1,175 @@
|
|
1
|
+
<?php
|
2
|
+
|
3
|
+
namespace Symfony\Component\Console\Tests\Helper;
|
4
|
+
|
5
|
+
use PHPUnit\Framework\TestCase;
|
6
|
+
use Symfony\Component\Console\Helper\ProgressIndicator;
|
7
|
+
use Symfony\Component\Console\Output\StreamOutput;
|
8
|
+
|
9
|
+
/**
|
10
|
+
* @group time-sensitive
|
11
|
+
*/
|
12
|
+
class ProgressIndicatorTest extends TestCase
|
13
|
+
{
|
14
|
+
public function testDefaultIndicator()
|
15
|
+
{
|
16
|
+
$bar = new ProgressIndicator($output = $this->getOutputStream());
|
17
|
+
$bar->start('Starting...');
|
18
|
+
usleep(101000);
|
19
|
+
$bar->advance();
|
20
|
+
usleep(101000);
|
21
|
+
$bar->advance();
|
22
|
+
usleep(101000);
|
23
|
+
$bar->advance();
|
24
|
+
usleep(101000);
|
25
|
+
$bar->advance();
|
26
|
+
usleep(101000);
|
27
|
+
$bar->advance();
|
28
|
+
usleep(101000);
|
29
|
+
$bar->setMessage('Advancing...');
|
30
|
+
$bar->advance();
|
31
|
+
$bar->finish('Done...');
|
32
|
+
$bar->start('Starting Again...');
|
33
|
+
usleep(101000);
|
34
|
+
$bar->advance();
|
35
|
+
$bar->finish('Done Again...');
|
36
|
+
|
37
|
+
rewind($output->getStream());
|
38
|
+
|
39
|
+
$this->assertEquals(
|
40
|
+
$this->generateOutput(' - Starting...').
|
41
|
+
$this->generateOutput(' \\ Starting...').
|
42
|
+
$this->generateOutput(' | Starting...').
|
43
|
+
$this->generateOutput(' / Starting...').
|
44
|
+
$this->generateOutput(' - Starting...').
|
45
|
+
$this->generateOutput(' \\ Starting...').
|
46
|
+
$this->generateOutput(' \\ Advancing...').
|
47
|
+
$this->generateOutput(' | Advancing...').
|
48
|
+
$this->generateOutput(' | Done...').
|
49
|
+
PHP_EOL.
|
50
|
+
$this->generateOutput(' - Starting Again...').
|
51
|
+
$this->generateOutput(' \\ Starting Again...').
|
52
|
+
$this->generateOutput(' \\ Done Again...').
|
53
|
+
PHP_EOL,
|
54
|
+
stream_get_contents($output->getStream())
|
55
|
+
);
|
56
|
+
}
|
57
|
+
|
58
|
+
public function testNonDecoratedOutput()
|
59
|
+
{
|
60
|
+
$bar = new ProgressIndicator($output = $this->getOutputStream(false));
|
61
|
+
|
62
|
+
$bar->start('Starting...');
|
63
|
+
$bar->advance();
|
64
|
+
$bar->advance();
|
65
|
+
$bar->setMessage('Midway...');
|
66
|
+
$bar->advance();
|
67
|
+
$bar->advance();
|
68
|
+
$bar->finish('Done...');
|
69
|
+
|
70
|
+
rewind($output->getStream());
|
71
|
+
|
72
|
+
$this->assertEquals(
|
73
|
+
' Starting...'.PHP_EOL.
|
74
|
+
' Midway...'.PHP_EOL.
|
75
|
+
' Done...'.PHP_EOL.PHP_EOL,
|
76
|
+
stream_get_contents($output->getStream())
|
77
|
+
);
|
78
|
+
}
|
79
|
+
|
80
|
+
public function testCustomIndicatorValues()
|
81
|
+
{
|
82
|
+
$bar = new ProgressIndicator($output = $this->getOutputStream(), null, 100, ['a', 'b', 'c']);
|
83
|
+
|
84
|
+
$bar->start('Starting...');
|
85
|
+
usleep(101000);
|
86
|
+
$bar->advance();
|
87
|
+
usleep(101000);
|
88
|
+
$bar->advance();
|
89
|
+
usleep(101000);
|
90
|
+
$bar->advance();
|
91
|
+
|
92
|
+
rewind($output->getStream());
|
93
|
+
|
94
|
+
$this->assertEquals(
|
95
|
+
$this->generateOutput(' a Starting...').
|
96
|
+
$this->generateOutput(' b Starting...').
|
97
|
+
$this->generateOutput(' c Starting...').
|
98
|
+
$this->generateOutput(' a Starting...'),
|
99
|
+
stream_get_contents($output->getStream())
|
100
|
+
);
|
101
|
+
}
|
102
|
+
|
103
|
+
public function testCannotSetInvalidIndicatorCharacters()
|
104
|
+
{
|
105
|
+
$this->expectException('InvalidArgumentException');
|
106
|
+
$this->expectExceptionMessage('Must have at least 2 indicator value characters.');
|
107
|
+
new ProgressIndicator($this->getOutputStream(), null, 100, ['1']);
|
108
|
+
}
|
109
|
+
|
110
|
+
public function testCannotStartAlreadyStartedIndicator()
|
111
|
+
{
|
112
|
+
$this->expectException('LogicException');
|
113
|
+
$this->expectExceptionMessage('Progress indicator already started.');
|
114
|
+
$bar = new ProgressIndicator($this->getOutputStream());
|
115
|
+
$bar->start('Starting...');
|
116
|
+
$bar->start('Starting Again.');
|
117
|
+
}
|
118
|
+
|
119
|
+
public function testCannotAdvanceUnstartedIndicator()
|
120
|
+
{
|
121
|
+
$this->expectException('LogicException');
|
122
|
+
$this->expectExceptionMessage('Progress indicator has not yet been started.');
|
123
|
+
$bar = new ProgressIndicator($this->getOutputStream());
|
124
|
+
$bar->advance();
|
125
|
+
}
|
126
|
+
|
127
|
+
public function testCannotFinishUnstartedIndicator()
|
128
|
+
{
|
129
|
+
$this->expectException('LogicException');
|
130
|
+
$this->expectExceptionMessage('Progress indicator has not yet been started.');
|
131
|
+
$bar = new ProgressIndicator($this->getOutputStream());
|
132
|
+
$bar->finish('Finished');
|
133
|
+
}
|
134
|
+
|
135
|
+
/**
|
136
|
+
* @dataProvider provideFormat
|
137
|
+
*/
|
138
|
+
public function testFormats($format)
|
139
|
+
{
|
140
|
+
$bar = new ProgressIndicator($output = $this->getOutputStream(), $format);
|
141
|
+
$bar->start('Starting...');
|
142
|
+
$bar->advance();
|
143
|
+
|
144
|
+
rewind($output->getStream());
|
145
|
+
|
146
|
+
$this->assertNotEmpty(stream_get_contents($output->getStream()));
|
147
|
+
}
|
148
|
+
|
149
|
+
/**
|
150
|
+
* Provides each defined format.
|
151
|
+
*
|
152
|
+
* @return array
|
153
|
+
*/
|
154
|
+
public function provideFormat()
|
155
|
+
{
|
156
|
+
return [
|
157
|
+
['normal'],
|
158
|
+
['verbose'],
|
159
|
+
['very_verbose'],
|
160
|
+
['debug'],
|
161
|
+
];
|
162
|
+
}
|
163
|
+
|
164
|
+
protected function getOutputStream($decorated = true, $verbosity = StreamOutput::VERBOSITY_NORMAL)
|
165
|
+
{
|
166
|
+
return new StreamOutput(fopen('php://memory', 'r+', false), $verbosity, $decorated);
|
167
|
+
}
|
168
|
+
|
169
|
+
protected function generateOutput($expected)
|
170
|
+
{
|
171
|
+
$count = substr_count($expected, "\n");
|
172
|
+
|
173
|
+
return "\x0D\x1B[2K".($count ? sprintf("\033[%dA", $count) : '').$expected;
|
174
|
+
}
|
175
|
+
}
|
@@ -0,0 +1,1115 @@
|
|
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\Console\Tests\Helper;
|
13
|
+
|
14
|
+
use Symfony\Component\Console\Exception\InvalidArgumentException;
|
15
|
+
use Symfony\Component\Console\Formatter\OutputFormatter;
|
16
|
+
use Symfony\Component\Console\Helper\FormatterHelper;
|
17
|
+
use Symfony\Component\Console\Helper\HelperSet;
|
18
|
+
use Symfony\Component\Console\Helper\QuestionHelper;
|
19
|
+
use Symfony\Component\Console\Output\StreamOutput;
|
20
|
+
use Symfony\Component\Console\Question\ChoiceQuestion;
|
21
|
+
use Symfony\Component\Console\Question\ConfirmationQuestion;
|
22
|
+
use Symfony\Component\Console\Question\Question;
|
23
|
+
use Symfony\Component\Console\Terminal;
|
24
|
+
|
25
|
+
/**
|
26
|
+
* @group tty
|
27
|
+
*/
|
28
|
+
class QuestionHelperTest extends AbstractQuestionHelperTest
|
29
|
+
{
|
30
|
+
public function testAskChoice()
|
31
|
+
{
|
32
|
+
$questionHelper = new QuestionHelper();
|
33
|
+
|
34
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
35
|
+
$questionHelper->setHelperSet($helperSet);
|
36
|
+
|
37
|
+
$heroes = ['Superman', 'Batman', 'Spiderman'];
|
38
|
+
|
39
|
+
$inputStream = $this->getInputStream("\n1\n 1 \nFabien\n1\nFabien\n1\n0,2\n 0 , 2 \n\n\n");
|
40
|
+
|
41
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '2');
|
42
|
+
$question->setMaxAttempts(1);
|
43
|
+
// first answer is an empty answer, we're supposed to receive the default value
|
44
|
+
$this->assertEquals('Spiderman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
45
|
+
|
46
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes);
|
47
|
+
$question->setMaxAttempts(1);
|
48
|
+
$this->assertEquals('Batman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
49
|
+
$this->assertEquals('Batman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
50
|
+
|
51
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes);
|
52
|
+
$question->setErrorMessage('Input "%s" is not a superhero!');
|
53
|
+
$question->setMaxAttempts(2);
|
54
|
+
$this->assertEquals('Batman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $output = $this->createOutputInterface(), $question));
|
55
|
+
|
56
|
+
rewind($output->getStream());
|
57
|
+
$stream = stream_get_contents($output->getStream());
|
58
|
+
$this->assertStringContainsString('Input "Fabien" is not a superhero!', $stream);
|
59
|
+
|
60
|
+
try {
|
61
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '1');
|
62
|
+
$question->setMaxAttempts(1);
|
63
|
+
$questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $output = $this->createOutputInterface(), $question);
|
64
|
+
$this->fail();
|
65
|
+
} catch (\InvalidArgumentException $e) {
|
66
|
+
$this->assertEquals('Value "Fabien" is invalid', $e->getMessage());
|
67
|
+
}
|
68
|
+
|
69
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, null);
|
70
|
+
$question->setMaxAttempts(1);
|
71
|
+
$question->setMultiselect(true);
|
72
|
+
|
73
|
+
$this->assertEquals(['Batman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
74
|
+
$this->assertEquals(['Superman', 'Spiderman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
75
|
+
$this->assertEquals(['Superman', 'Spiderman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
76
|
+
|
77
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '0,1');
|
78
|
+
$question->setMaxAttempts(1);
|
79
|
+
$question->setMultiselect(true);
|
80
|
+
|
81
|
+
$this->assertEquals(['Superman', 'Batman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
82
|
+
|
83
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, ' 0 , 1 ');
|
84
|
+
$question->setMaxAttempts(1);
|
85
|
+
$question->setMultiselect(true);
|
86
|
+
|
87
|
+
$this->assertEquals(['Superman', 'Batman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
88
|
+
|
89
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, 0);
|
90
|
+
// We are supposed to get the default value since we are not in interactive mode
|
91
|
+
$this->assertEquals('Superman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, true), $this->createOutputInterface(), $question));
|
92
|
+
}
|
93
|
+
|
94
|
+
public function testAskChoiceNonInteractive()
|
95
|
+
{
|
96
|
+
$questionHelper = new QuestionHelper();
|
97
|
+
|
98
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
99
|
+
$questionHelper->setHelperSet($helperSet);
|
100
|
+
$inputStream = $this->getInputStream("\n1\n 1 \nFabien\n1\nFabien\n1\n0,2\n 0 , 2 \n\n\n");
|
101
|
+
|
102
|
+
$heroes = ['Superman', 'Batman', 'Spiderman'];
|
103
|
+
|
104
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '0');
|
105
|
+
|
106
|
+
$this->assertSame('Superman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
107
|
+
|
108
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, 'Batman');
|
109
|
+
$this->assertSame('Batman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
110
|
+
|
111
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, null);
|
112
|
+
$this->assertNull($questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
113
|
+
|
114
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '0');
|
115
|
+
$question->setValidator(null);
|
116
|
+
$this->assertSame('Superman', $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
117
|
+
|
118
|
+
try {
|
119
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, null);
|
120
|
+
$questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question);
|
121
|
+
} catch (\InvalidArgumentException $e) {
|
122
|
+
$this->assertSame('Value "" is invalid', $e->getMessage());
|
123
|
+
}
|
124
|
+
|
125
|
+
$question = new ChoiceQuestion('Who are your favorite superheros?', $heroes, '0, 1');
|
126
|
+
$question->setMultiselect(true);
|
127
|
+
$this->assertSame(['Superman', 'Batman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
128
|
+
|
129
|
+
$question = new ChoiceQuestion('Who are your favorite superheros?', $heroes, '0, 1');
|
130
|
+
$question->setMultiselect(true);
|
131
|
+
$question->setValidator(null);
|
132
|
+
$this->assertSame(['Superman', 'Batman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
133
|
+
|
134
|
+
$question = new ChoiceQuestion('Who are your favorite superheros?', $heroes, '0, Batman');
|
135
|
+
$question->setMultiselect(true);
|
136
|
+
$this->assertSame(['Superman', 'Batman'], $questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
137
|
+
|
138
|
+
$question = new ChoiceQuestion('Who are your favorite superheros?', $heroes, null);
|
139
|
+
$question->setMultiselect(true);
|
140
|
+
$this->assertNull($questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question));
|
141
|
+
|
142
|
+
$question = new ChoiceQuestion('Who are your favorite superheros?', ['a' => 'Batman', 'b' => 'Superman'], 'a');
|
143
|
+
$this->assertSame('a', $questionHelper->ask($this->createStreamableInputInterfaceMock('', false), $this->createOutputInterface(), $question), 'ChoiceQuestion validator returns the key if it\'s a string');
|
144
|
+
|
145
|
+
try {
|
146
|
+
$question = new ChoiceQuestion('Who are your favorite superheros?', $heroes, '');
|
147
|
+
$question->setMultiselect(true);
|
148
|
+
$questionHelper->ask($this->createStreamableInputInterfaceMock($inputStream, false), $this->createOutputInterface(), $question);
|
149
|
+
} catch (\InvalidArgumentException $e) {
|
150
|
+
$this->assertSame('Value "" is invalid', $e->getMessage());
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
public function testAsk()
|
155
|
+
{
|
156
|
+
$dialog = new QuestionHelper();
|
157
|
+
|
158
|
+
$inputStream = $this->getInputStream("\n8AM\n");
|
159
|
+
|
160
|
+
$question = new Question('What time is it?', '2PM');
|
161
|
+
$this->assertEquals('2PM', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
162
|
+
|
163
|
+
$question = new Question('What time is it?', '2PM');
|
164
|
+
$this->assertEquals('8AM', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $output = $this->createOutputInterface(), $question));
|
165
|
+
|
166
|
+
rewind($output->getStream());
|
167
|
+
$this->assertEquals('What time is it?', stream_get_contents($output->getStream()));
|
168
|
+
}
|
169
|
+
|
170
|
+
public function testAskWithAutocomplete()
|
171
|
+
{
|
172
|
+
if (!Terminal::hasSttyAvailable()) {
|
173
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
174
|
+
}
|
175
|
+
|
176
|
+
// Acm<NEWLINE>
|
177
|
+
// Ac<BACKSPACE><BACKSPACE>s<TAB>Test<NEWLINE>
|
178
|
+
// <NEWLINE>
|
179
|
+
// <UP ARROW><UP ARROW><UP ARROW><NEWLINE>
|
180
|
+
// <UP ARROW><UP ARROW><UP ARROW><UP ARROW><UP ARROW><UP ARROW><UP ARROW><TAB>Test<NEWLINE>
|
181
|
+
// <DOWN ARROW><NEWLINE>
|
182
|
+
// S<BACKSPACE><BACKSPACE><DOWN ARROW><DOWN ARROW><NEWLINE>
|
183
|
+
// F00<BACKSPACE><BACKSPACE>oo<TAB><NEWLINE>
|
184
|
+
// F⭐<TAB><BACKSPACE><BACKSPACE>⭐<TAB><NEWLINE>
|
185
|
+
$inputStream = $this->getInputStream("Acm\nAc\177\177s\tTest\n\n\033[A\033[A\033[A\n\033[A\033[A\033[A\033[A\033[A\033[A\033[A\tTest\n\033[B\nS\177\177\033[B\033[B\nF00\177\177oo\t\nF⭐\t\177\177⭐\t\n");
|
186
|
+
|
187
|
+
$dialog = new QuestionHelper();
|
188
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
189
|
+
$dialog->setHelperSet($helperSet);
|
190
|
+
|
191
|
+
$question = new Question('Please select a bundle', 'FrameworkBundle');
|
192
|
+
$question->setAutocompleterValues(['AcmeDemoBundle', 'AsseticBundle', 'SecurityBundle', 'FooBundle', 'F⭐Y']);
|
193
|
+
|
194
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
195
|
+
$this->assertEquals('AsseticBundleTest', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
196
|
+
$this->assertEquals('FrameworkBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
197
|
+
$this->assertEquals('SecurityBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
198
|
+
$this->assertEquals('FooBundleTest', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
199
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
200
|
+
$this->assertEquals('AsseticBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
201
|
+
$this->assertEquals('FooBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
202
|
+
$this->assertEquals('F⭐Y', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
203
|
+
}
|
204
|
+
|
205
|
+
public function testAskWithAutocompleteWithNonSequentialKeys()
|
206
|
+
{
|
207
|
+
if (!Terminal::hasSttyAvailable()) {
|
208
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
209
|
+
}
|
210
|
+
|
211
|
+
// <UP ARROW><UP ARROW><NEWLINE><DOWN ARROW><DOWN ARROW><NEWLINE>
|
212
|
+
$inputStream = $this->getInputStream("\033[A\033[A\n\033[B\033[B\n");
|
213
|
+
|
214
|
+
$dialog = new QuestionHelper();
|
215
|
+
$dialog->setHelperSet(new HelperSet([new FormatterHelper()]));
|
216
|
+
|
217
|
+
$question = new ChoiceQuestion('Please select a bundle', [1 => 'AcmeDemoBundle', 4 => 'AsseticBundle']);
|
218
|
+
$question->setMaxAttempts(1);
|
219
|
+
|
220
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
221
|
+
$this->assertEquals('AsseticBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
222
|
+
}
|
223
|
+
|
224
|
+
public function testAskWithAutocompleteWithExactMatch()
|
225
|
+
{
|
226
|
+
if (!Terminal::hasSttyAvailable()) {
|
227
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
228
|
+
}
|
229
|
+
|
230
|
+
$inputStream = $this->getInputStream("b\n");
|
231
|
+
|
232
|
+
$possibleChoices = [
|
233
|
+
'a' => 'berlin',
|
234
|
+
'b' => 'copenhagen',
|
235
|
+
'c' => 'amsterdam',
|
236
|
+
];
|
237
|
+
|
238
|
+
$dialog = new QuestionHelper();
|
239
|
+
$dialog->setHelperSet(new HelperSet([new FormatterHelper()]));
|
240
|
+
|
241
|
+
$question = new ChoiceQuestion('Please select a city', $possibleChoices);
|
242
|
+
$question->setMaxAttempts(1);
|
243
|
+
|
244
|
+
$this->assertSame('b', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
245
|
+
}
|
246
|
+
|
247
|
+
public function getInputs()
|
248
|
+
{
|
249
|
+
return [
|
250
|
+
['$'], // 1 byte character
|
251
|
+
['¢'], // 2 bytes character
|
252
|
+
['€'], // 3 bytes character
|
253
|
+
['𐍈'], // 4 bytes character
|
254
|
+
];
|
255
|
+
}
|
256
|
+
|
257
|
+
/**
|
258
|
+
* @dataProvider getInputs
|
259
|
+
*/
|
260
|
+
public function testAskWithAutocompleteWithMultiByteCharacter($character)
|
261
|
+
{
|
262
|
+
if (!Terminal::hasSttyAvailable()) {
|
263
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
264
|
+
}
|
265
|
+
|
266
|
+
$inputStream = $this->getInputStream("$character\n");
|
267
|
+
|
268
|
+
$possibleChoices = [
|
269
|
+
'$' => '1 byte character',
|
270
|
+
'¢' => '2 bytes character',
|
271
|
+
'€' => '3 bytes character',
|
272
|
+
'𐍈' => '4 bytes character',
|
273
|
+
];
|
274
|
+
|
275
|
+
$dialog = new QuestionHelper();
|
276
|
+
$dialog->setHelperSet(new HelperSet([new FormatterHelper()]));
|
277
|
+
|
278
|
+
$question = new ChoiceQuestion('Please select a character', $possibleChoices);
|
279
|
+
$question->setMaxAttempts(1);
|
280
|
+
|
281
|
+
$this->assertSame($character, $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
282
|
+
}
|
283
|
+
|
284
|
+
public function testAutocompleteWithTrailingBackslash()
|
285
|
+
{
|
286
|
+
if (!Terminal::hasSttyAvailable()) {
|
287
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
288
|
+
}
|
289
|
+
|
290
|
+
$inputStream = $this->getInputStream('E');
|
291
|
+
|
292
|
+
$dialog = new QuestionHelper();
|
293
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
294
|
+
$dialog->setHelperSet($helperSet);
|
295
|
+
|
296
|
+
$question = new Question('');
|
297
|
+
$expectedCompletion = 'ExampleNamespace\\';
|
298
|
+
$question->setAutocompleterValues([$expectedCompletion]);
|
299
|
+
|
300
|
+
$output = $this->createOutputInterface();
|
301
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $output, $question);
|
302
|
+
|
303
|
+
$outputStream = $output->getStream();
|
304
|
+
rewind($outputStream);
|
305
|
+
$actualOutput = stream_get_contents($outputStream);
|
306
|
+
|
307
|
+
// Shell control (esc) sequences are not so important: we only care that
|
308
|
+
// <hl> tag is interpreted correctly and replaced
|
309
|
+
$irrelevantEscSequences = [
|
310
|
+
"\0337" => '', // Save cursor position
|
311
|
+
"\0338" => '', // Restore cursor position
|
312
|
+
"\033[K" => '', // Clear line from cursor till the end
|
313
|
+
];
|
314
|
+
|
315
|
+
$importantActualOutput = strtr($actualOutput, $irrelevantEscSequences);
|
316
|
+
|
317
|
+
// Remove colors (e.g. "\033[30m", "\033[31;41m")
|
318
|
+
$importantActualOutput = preg_replace('/\033\[\d+(;\d+)?m/', '', $importantActualOutput);
|
319
|
+
|
320
|
+
$this->assertEquals($expectedCompletion, $importantActualOutput);
|
321
|
+
}
|
322
|
+
|
323
|
+
public function testAskHiddenResponse()
|
324
|
+
{
|
325
|
+
if ('\\' === \DIRECTORY_SEPARATOR) {
|
326
|
+
$this->markTestSkipped('This test is not supported on Windows');
|
327
|
+
}
|
328
|
+
|
329
|
+
$dialog = new QuestionHelper();
|
330
|
+
|
331
|
+
$question = new Question('What time is it?');
|
332
|
+
$question->setHidden(true);
|
333
|
+
|
334
|
+
$this->assertEquals('8AM', $dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream("8AM\n")), $this->createOutputInterface(), $question));
|
335
|
+
}
|
336
|
+
|
337
|
+
/**
|
338
|
+
* @dataProvider getAskConfirmationData
|
339
|
+
*/
|
340
|
+
public function testAskConfirmation($question, $expected, $default = true)
|
341
|
+
{
|
342
|
+
$dialog = new QuestionHelper();
|
343
|
+
|
344
|
+
$inputStream = $this->getInputStream($question."\n");
|
345
|
+
$question = new ConfirmationQuestion('Do you like French fries?', $default);
|
346
|
+
$this->assertEquals($expected, $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question), 'confirmation question should '.($expected ? 'pass' : 'cancel'));
|
347
|
+
}
|
348
|
+
|
349
|
+
public function getAskConfirmationData()
|
350
|
+
{
|
351
|
+
return [
|
352
|
+
['', true],
|
353
|
+
['', false, false],
|
354
|
+
['y', true],
|
355
|
+
['yes', true],
|
356
|
+
['n', false],
|
357
|
+
['no', false],
|
358
|
+
];
|
359
|
+
}
|
360
|
+
|
361
|
+
public function testAskConfirmationWithCustomTrueAnswer()
|
362
|
+
{
|
363
|
+
$dialog = new QuestionHelper();
|
364
|
+
|
365
|
+
$inputStream = $this->getInputStream("j\ny\n");
|
366
|
+
$question = new ConfirmationQuestion('Do you like French fries?', false, '/^(j|y)/i');
|
367
|
+
$this->assertTrue($dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
368
|
+
$question = new ConfirmationQuestion('Do you like French fries?', false, '/^(j|y)/i');
|
369
|
+
$this->assertTrue($dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
370
|
+
}
|
371
|
+
|
372
|
+
public function testAskAndValidate()
|
373
|
+
{
|
374
|
+
$dialog = new QuestionHelper();
|
375
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
376
|
+
$dialog->setHelperSet($helperSet);
|
377
|
+
|
378
|
+
$error = 'This is not a color!';
|
379
|
+
$validator = function ($color) use ($error) {
|
380
|
+
if (!\in_array($color, ['white', 'black'])) {
|
381
|
+
throw new \InvalidArgumentException($error);
|
382
|
+
}
|
383
|
+
|
384
|
+
return $color;
|
385
|
+
};
|
386
|
+
|
387
|
+
$question = new Question('What color was the white horse of Henry IV?', 'white');
|
388
|
+
$question->setValidator($validator);
|
389
|
+
$question->setMaxAttempts(2);
|
390
|
+
|
391
|
+
$inputStream = $this->getInputStream("\nblack\n");
|
392
|
+
$this->assertEquals('white', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
393
|
+
$this->assertEquals('black', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
394
|
+
|
395
|
+
try {
|
396
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream("green\nyellow\norange\n")), $this->createOutputInterface(), $question);
|
397
|
+
$this->fail();
|
398
|
+
} catch (\InvalidArgumentException $e) {
|
399
|
+
$this->assertEquals($error, $e->getMessage());
|
400
|
+
}
|
401
|
+
}
|
402
|
+
|
403
|
+
/**
|
404
|
+
* @dataProvider simpleAnswerProvider
|
405
|
+
*/
|
406
|
+
public function testSelectChoiceFromSimpleChoices($providedAnswer, $expectedValue)
|
407
|
+
{
|
408
|
+
$possibleChoices = [
|
409
|
+
'My environment 1',
|
410
|
+
'My environment 2',
|
411
|
+
'My environment 3',
|
412
|
+
];
|
413
|
+
|
414
|
+
$dialog = new QuestionHelper();
|
415
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
416
|
+
$dialog->setHelperSet($helperSet);
|
417
|
+
|
418
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
419
|
+
$question->setMaxAttempts(1);
|
420
|
+
$answer = $dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream($providedAnswer."\n")), $this->createOutputInterface(), $question);
|
421
|
+
|
422
|
+
$this->assertSame($expectedValue, $answer);
|
423
|
+
}
|
424
|
+
|
425
|
+
public function simpleAnswerProvider()
|
426
|
+
{
|
427
|
+
return [
|
428
|
+
[0, 'My environment 1'],
|
429
|
+
[1, 'My environment 2'],
|
430
|
+
[2, 'My environment 3'],
|
431
|
+
['My environment 1', 'My environment 1'],
|
432
|
+
['My environment 2', 'My environment 2'],
|
433
|
+
['My environment 3', 'My environment 3'],
|
434
|
+
];
|
435
|
+
}
|
436
|
+
|
437
|
+
/**
|
438
|
+
* @dataProvider specialCharacterInMultipleChoice
|
439
|
+
*/
|
440
|
+
public function testSpecialCharacterChoiceFromMultipleChoiceList($providedAnswer, $expectedValue)
|
441
|
+
{
|
442
|
+
$possibleChoices = [
|
443
|
+
'.',
|
444
|
+
'src',
|
445
|
+
];
|
446
|
+
|
447
|
+
$dialog = new QuestionHelper();
|
448
|
+
$inputStream = $this->getInputStream($providedAnswer."\n");
|
449
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
450
|
+
$dialog->setHelperSet($helperSet);
|
451
|
+
|
452
|
+
$question = new ChoiceQuestion('Please select the directory', $possibleChoices);
|
453
|
+
$question->setMaxAttempts(1);
|
454
|
+
$question->setMultiselect(true);
|
455
|
+
$answer = $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question);
|
456
|
+
|
457
|
+
$this->assertSame($expectedValue, $answer);
|
458
|
+
}
|
459
|
+
|
460
|
+
public function specialCharacterInMultipleChoice()
|
461
|
+
{
|
462
|
+
return [
|
463
|
+
['.', ['.']],
|
464
|
+
['., src', ['.', 'src']],
|
465
|
+
];
|
466
|
+
}
|
467
|
+
|
468
|
+
/**
|
469
|
+
* @dataProvider mixedKeysChoiceListAnswerProvider
|
470
|
+
*/
|
471
|
+
public function testChoiceFromChoicelistWithMixedKeys($providedAnswer, $expectedValue)
|
472
|
+
{
|
473
|
+
$possibleChoices = [
|
474
|
+
'0' => 'No environment',
|
475
|
+
'1' => 'My environment 1',
|
476
|
+
'env_2' => 'My environment 2',
|
477
|
+
3 => 'My environment 3',
|
478
|
+
];
|
479
|
+
|
480
|
+
$dialog = new QuestionHelper();
|
481
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
482
|
+
$dialog->setHelperSet($helperSet);
|
483
|
+
|
484
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
485
|
+
$question->setMaxAttempts(1);
|
486
|
+
$answer = $dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream($providedAnswer."\n")), $this->createOutputInterface(), $question);
|
487
|
+
|
488
|
+
$this->assertSame($expectedValue, $answer);
|
489
|
+
}
|
490
|
+
|
491
|
+
public function mixedKeysChoiceListAnswerProvider()
|
492
|
+
{
|
493
|
+
return [
|
494
|
+
['0', '0'],
|
495
|
+
['No environment', '0'],
|
496
|
+
['1', '1'],
|
497
|
+
['env_2', 'env_2'],
|
498
|
+
[3, '3'],
|
499
|
+
['My environment 1', '1'],
|
500
|
+
];
|
501
|
+
}
|
502
|
+
|
503
|
+
/**
|
504
|
+
* @dataProvider answerProvider
|
505
|
+
*/
|
506
|
+
public function testSelectChoiceFromChoiceList($providedAnswer, $expectedValue)
|
507
|
+
{
|
508
|
+
$possibleChoices = [
|
509
|
+
'env_1' => 'My environment 1',
|
510
|
+
'env_2' => 'My environment',
|
511
|
+
'env_3' => 'My environment',
|
512
|
+
];
|
513
|
+
|
514
|
+
$dialog = new QuestionHelper();
|
515
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
516
|
+
$dialog->setHelperSet($helperSet);
|
517
|
+
|
518
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
519
|
+
$question->setMaxAttempts(1);
|
520
|
+
$answer = $dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream($providedAnswer."\n")), $this->createOutputInterface(), $question);
|
521
|
+
|
522
|
+
$this->assertSame($expectedValue, $answer);
|
523
|
+
}
|
524
|
+
|
525
|
+
public function testAmbiguousChoiceFromChoicelist()
|
526
|
+
{
|
527
|
+
$this->expectException('InvalidArgumentException');
|
528
|
+
$this->expectExceptionMessage('The provided answer is ambiguous. Value should be one of "env_2" or "env_3".');
|
529
|
+
$possibleChoices = [
|
530
|
+
'env_1' => 'My first environment',
|
531
|
+
'env_2' => 'My environment',
|
532
|
+
'env_3' => 'My environment',
|
533
|
+
];
|
534
|
+
|
535
|
+
$dialog = new QuestionHelper();
|
536
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
537
|
+
$dialog->setHelperSet($helperSet);
|
538
|
+
|
539
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
540
|
+
$question->setMaxAttempts(1);
|
541
|
+
|
542
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream("My environment\n")), $this->createOutputInterface(), $question);
|
543
|
+
}
|
544
|
+
|
545
|
+
public function answerProvider()
|
546
|
+
{
|
547
|
+
return [
|
548
|
+
['env_1', 'env_1'],
|
549
|
+
['env_2', 'env_2'],
|
550
|
+
['env_3', 'env_3'],
|
551
|
+
['My environment 1', 'env_1'],
|
552
|
+
];
|
553
|
+
}
|
554
|
+
|
555
|
+
public function testNoInteraction()
|
556
|
+
{
|
557
|
+
$dialog = new QuestionHelper();
|
558
|
+
$question = new Question('Do you have a job?', 'not yet');
|
559
|
+
$this->assertEquals('not yet', $dialog->ask($this->createStreamableInputInterfaceMock(null, false), $this->createOutputInterface(), $question));
|
560
|
+
}
|
561
|
+
|
562
|
+
/**
|
563
|
+
* @requires function mb_strwidth
|
564
|
+
*/
|
565
|
+
public function testChoiceOutputFormattingQuestionForUtf8Keys()
|
566
|
+
{
|
567
|
+
$question = 'Lorem ipsum?';
|
568
|
+
$possibleChoices = [
|
569
|
+
'foo' => 'foo',
|
570
|
+
'żółw' => 'bar',
|
571
|
+
'łabądź' => 'baz',
|
572
|
+
];
|
573
|
+
$outputShown = [
|
574
|
+
$question,
|
575
|
+
' [<info>foo </info>] foo',
|
576
|
+
' [<info>żółw </info>] bar',
|
577
|
+
' [<info>łabądź</info>] baz',
|
578
|
+
];
|
579
|
+
$output = $this->getMockBuilder('\Symfony\Component\Console\Output\OutputInterface')->getMock();
|
580
|
+
$output->method('getFormatter')->willReturn(new OutputFormatter());
|
581
|
+
|
582
|
+
$dialog = new QuestionHelper();
|
583
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
584
|
+
$dialog->setHelperSet($helperSet);
|
585
|
+
|
586
|
+
$output->expects($this->once())->method('writeln')->with($this->equalTo($outputShown));
|
587
|
+
|
588
|
+
$question = new ChoiceQuestion($question, $possibleChoices, 'foo');
|
589
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream("\n")), $output, $question);
|
590
|
+
}
|
591
|
+
|
592
|
+
/**
|
593
|
+
* @group legacy
|
594
|
+
*/
|
595
|
+
public function testLegacyAskChoice()
|
596
|
+
{
|
597
|
+
$questionHelper = new QuestionHelper();
|
598
|
+
|
599
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
600
|
+
$questionHelper->setHelperSet($helperSet);
|
601
|
+
|
602
|
+
$heroes = ['Superman', 'Batman', 'Spiderman'];
|
603
|
+
|
604
|
+
$questionHelper->setInputStream($this->getInputStream("\n1\n 1 \nFabien\n1\nFabien\n1\n0,2\n 0 , 2 \n\n\n"));
|
605
|
+
|
606
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '2');
|
607
|
+
$question->setMaxAttempts(1);
|
608
|
+
// first answer is an empty answer, we're supposed to receive the default value
|
609
|
+
$this->assertEquals('Spiderman', $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
610
|
+
|
611
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes);
|
612
|
+
$question->setMaxAttempts(1);
|
613
|
+
$this->assertEquals('Batman', $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
614
|
+
$this->assertEquals('Batman', $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
615
|
+
|
616
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes);
|
617
|
+
$question->setErrorMessage('Input "%s" is not a superhero!');
|
618
|
+
$question->setMaxAttempts(2);
|
619
|
+
$this->assertEquals('Batman', $questionHelper->ask($this->createInputInterfaceMock(), $output = $this->createOutputInterface(), $question));
|
620
|
+
|
621
|
+
rewind($output->getStream());
|
622
|
+
$stream = stream_get_contents($output->getStream());
|
623
|
+
$this->assertStringContainsString('Input "Fabien" is not a superhero!', $stream);
|
624
|
+
|
625
|
+
try {
|
626
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '1');
|
627
|
+
$question->setMaxAttempts(1);
|
628
|
+
$questionHelper->ask($this->createInputInterfaceMock(), $output = $this->createOutputInterface(), $question);
|
629
|
+
$this->fail();
|
630
|
+
} catch (\InvalidArgumentException $e) {
|
631
|
+
$this->assertEquals('Value "Fabien" is invalid', $e->getMessage());
|
632
|
+
}
|
633
|
+
|
634
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, null);
|
635
|
+
$question->setMaxAttempts(1);
|
636
|
+
$question->setMultiselect(true);
|
637
|
+
|
638
|
+
$this->assertEquals(['Batman'], $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
639
|
+
$this->assertEquals(['Superman', 'Spiderman'], $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
640
|
+
$this->assertEquals(['Superman', 'Spiderman'], $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
641
|
+
|
642
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, '0,1');
|
643
|
+
$question->setMaxAttempts(1);
|
644
|
+
$question->setMultiselect(true);
|
645
|
+
|
646
|
+
$this->assertEquals(['Superman', 'Batman'], $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
647
|
+
|
648
|
+
$question = new ChoiceQuestion('What is your favorite superhero?', $heroes, ' 0 , 1 ');
|
649
|
+
$question->setMaxAttempts(1);
|
650
|
+
$question->setMultiselect(true);
|
651
|
+
|
652
|
+
$this->assertEquals(['Superman', 'Batman'], $questionHelper->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
653
|
+
}
|
654
|
+
|
655
|
+
/**
|
656
|
+
* @group legacy
|
657
|
+
*/
|
658
|
+
public function testLegacyAsk()
|
659
|
+
{
|
660
|
+
$dialog = new QuestionHelper();
|
661
|
+
|
662
|
+
$dialog->setInputStream($this->getInputStream("\n8AM\n"));
|
663
|
+
|
664
|
+
$question = new Question('What time is it?', '2PM');
|
665
|
+
$this->assertEquals('2PM', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
666
|
+
|
667
|
+
$question = new Question('What time is it?', '2PM');
|
668
|
+
$this->assertEquals('8AM', $dialog->ask($this->createInputInterfaceMock(), $output = $this->createOutputInterface(), $question));
|
669
|
+
|
670
|
+
rewind($output->getStream());
|
671
|
+
$this->assertEquals('What time is it?', stream_get_contents($output->getStream()));
|
672
|
+
}
|
673
|
+
|
674
|
+
/**
|
675
|
+
* @group legacy
|
676
|
+
*/
|
677
|
+
public function testLegacyAskWithAutocomplete()
|
678
|
+
{
|
679
|
+
if (!Terminal::hasSttyAvailable()) {
|
680
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
681
|
+
}
|
682
|
+
|
683
|
+
// Acm<NEWLINE>
|
684
|
+
// Ac<BACKSPACE><BACKSPACE>s<TAB>Test<NEWLINE>
|
685
|
+
// <NEWLINE>
|
686
|
+
// <UP ARROW><UP ARROW><UP ARROW><NEWLINE>
|
687
|
+
// <UP ARROW><UP ARROW><UP ARROW><UP ARROW><UP ARROW><UP ARROW><UP ARROW><TAB>Test<NEWLINE>
|
688
|
+
// <DOWN ARROW><NEWLINE>
|
689
|
+
// S<BACKSPACE><BACKSPACE><DOWN ARROW><DOWN ARROW><NEWLINE>
|
690
|
+
// F00<BACKSPACE><BACKSPACE>oo<TAB><NEWLINE>
|
691
|
+
// F⭐<TAB><BACKSPACE><BACKSPACE>⭐<TAB><NEWLINE>
|
692
|
+
$inputStream = $this->getInputStream("Acm\nAc\177\177s\tTest\n\n\033[A\033[A\033[A\n\033[A\033[A\033[A\033[A\033[A\033[A\033[A\tTest\n\033[B\nS\177\177\033[B\033[B\nF00\177\177oo\t\nF⭐\t⭐\t\n");
|
693
|
+
|
694
|
+
$dialog = new QuestionHelper();
|
695
|
+
$dialog->setInputStream($inputStream);
|
696
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
697
|
+
$dialog->setHelperSet($helperSet);
|
698
|
+
|
699
|
+
$question = new Question('Please select a bundle', 'FrameworkBundle');
|
700
|
+
$question->setAutocompleterValues(['AcmeDemoBundle', 'AsseticBundle', 'SecurityBundle', 'FooBundle', 'F⭐Y']);
|
701
|
+
|
702
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
703
|
+
$this->assertEquals('AsseticBundleTest', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
704
|
+
$this->assertEquals('FrameworkBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
705
|
+
$this->assertEquals('SecurityBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
706
|
+
$this->assertEquals('FooBundleTest', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
707
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
708
|
+
$this->assertEquals('AsseticBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
709
|
+
$this->assertEquals('FooBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
710
|
+
$this->assertEquals('F⭐Y', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
711
|
+
}
|
712
|
+
|
713
|
+
/**
|
714
|
+
* @group legacy
|
715
|
+
*/
|
716
|
+
public function testLegacyAskWithAutocompleteWithNonSequentialKeys()
|
717
|
+
{
|
718
|
+
if (!Terminal::hasSttyAvailable()) {
|
719
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
720
|
+
}
|
721
|
+
|
722
|
+
// <UP ARROW><UP ARROW><NEWLINE><DOWN ARROW><DOWN ARROW><NEWLINE>
|
723
|
+
$inputStream = $this->getInputStream("\033[A\033[A\n\033[B\033[B\n");
|
724
|
+
|
725
|
+
$dialog = new QuestionHelper();
|
726
|
+
$dialog->setInputStream($inputStream);
|
727
|
+
$dialog->setHelperSet(new HelperSet([new FormatterHelper()]));
|
728
|
+
|
729
|
+
$question = new ChoiceQuestion('Please select a bundle', [1 => 'AcmeDemoBundle', 4 => 'AsseticBundle']);
|
730
|
+
$question->setMaxAttempts(1);
|
731
|
+
|
732
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
733
|
+
$this->assertEquals('AsseticBundle', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
734
|
+
}
|
735
|
+
|
736
|
+
/**
|
737
|
+
* @group legacy
|
738
|
+
*/
|
739
|
+
public function testLegacyAskHiddenResponse()
|
740
|
+
{
|
741
|
+
if ('\\' === \DIRECTORY_SEPARATOR) {
|
742
|
+
$this->markTestSkipped('This test is not supported on Windows');
|
743
|
+
}
|
744
|
+
|
745
|
+
$dialog = new QuestionHelper();
|
746
|
+
$dialog->setInputStream($this->getInputStream("8AM\n"));
|
747
|
+
|
748
|
+
$question = new Question('What time is it?');
|
749
|
+
$question->setHidden(true);
|
750
|
+
|
751
|
+
$this->assertEquals('8AM', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
752
|
+
}
|
753
|
+
|
754
|
+
/**
|
755
|
+
* @group legacy
|
756
|
+
* @dataProvider getAskConfirmationData
|
757
|
+
*/
|
758
|
+
public function testLegacyAskConfirmation($question, $expected, $default = true)
|
759
|
+
{
|
760
|
+
$dialog = new QuestionHelper();
|
761
|
+
|
762
|
+
$dialog->setInputStream($this->getInputStream($question."\n"));
|
763
|
+
$question = new ConfirmationQuestion('Do you like French fries?', $default);
|
764
|
+
$this->assertEquals($expected, $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question), 'confirmation question should '.($expected ? 'pass' : 'cancel'));
|
765
|
+
}
|
766
|
+
|
767
|
+
/**
|
768
|
+
* @group legacy
|
769
|
+
*/
|
770
|
+
public function testLegacyAskConfirmationWithCustomTrueAnswer()
|
771
|
+
{
|
772
|
+
$dialog = new QuestionHelper();
|
773
|
+
|
774
|
+
$dialog->setInputStream($this->getInputStream("j\ny\n"));
|
775
|
+
$question = new ConfirmationQuestion('Do you like French fries?', false, '/^(j|y)/i');
|
776
|
+
$this->assertTrue($dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
777
|
+
$question = new ConfirmationQuestion('Do you like French fries?', false, '/^(j|y)/i');
|
778
|
+
$this->assertTrue($dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
779
|
+
}
|
780
|
+
|
781
|
+
/**
|
782
|
+
* @group legacy
|
783
|
+
*/
|
784
|
+
public function testLegacyAskAndValidate()
|
785
|
+
{
|
786
|
+
$dialog = new QuestionHelper();
|
787
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
788
|
+
$dialog->setHelperSet($helperSet);
|
789
|
+
|
790
|
+
$error = 'This is not a color!';
|
791
|
+
$validator = function ($color) use ($error) {
|
792
|
+
if (!\in_array($color, ['white', 'black'])) {
|
793
|
+
throw new \InvalidArgumentException($error);
|
794
|
+
}
|
795
|
+
|
796
|
+
return $color;
|
797
|
+
};
|
798
|
+
|
799
|
+
$question = new Question('What color was the white horse of Henry IV?', 'white');
|
800
|
+
$question->setValidator($validator);
|
801
|
+
$question->setMaxAttempts(2);
|
802
|
+
|
803
|
+
$dialog->setInputStream($this->getInputStream("\nblack\n"));
|
804
|
+
$this->assertEquals('white', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
805
|
+
$this->assertEquals('black', $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question));
|
806
|
+
|
807
|
+
$dialog->setInputStream($this->getInputStream("green\nyellow\norange\n"));
|
808
|
+
try {
|
809
|
+
$dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question);
|
810
|
+
$this->fail();
|
811
|
+
} catch (\InvalidArgumentException $e) {
|
812
|
+
$this->assertEquals($error, $e->getMessage());
|
813
|
+
}
|
814
|
+
}
|
815
|
+
|
816
|
+
/**
|
817
|
+
* @group legacy
|
818
|
+
* @dataProvider simpleAnswerProvider
|
819
|
+
*/
|
820
|
+
public function testLegacySelectChoiceFromSimpleChoices($providedAnswer, $expectedValue)
|
821
|
+
{
|
822
|
+
$possibleChoices = [
|
823
|
+
'My environment 1',
|
824
|
+
'My environment 2',
|
825
|
+
'My environment 3',
|
826
|
+
];
|
827
|
+
|
828
|
+
$dialog = new QuestionHelper();
|
829
|
+
$dialog->setInputStream($this->getInputStream($providedAnswer."\n"));
|
830
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
831
|
+
$dialog->setHelperSet($helperSet);
|
832
|
+
|
833
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
834
|
+
$question->setMaxAttempts(1);
|
835
|
+
$answer = $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question);
|
836
|
+
|
837
|
+
$this->assertSame($expectedValue, $answer);
|
838
|
+
}
|
839
|
+
|
840
|
+
/**
|
841
|
+
* @group legacy
|
842
|
+
* @dataProvider mixedKeysChoiceListAnswerProvider
|
843
|
+
*/
|
844
|
+
public function testLegacyChoiceFromChoicelistWithMixedKeys($providedAnswer, $expectedValue)
|
845
|
+
{
|
846
|
+
$possibleChoices = [
|
847
|
+
'0' => 'No environment',
|
848
|
+
'1' => 'My environment 1',
|
849
|
+
'env_2' => 'My environment 2',
|
850
|
+
3 => 'My environment 3',
|
851
|
+
];
|
852
|
+
|
853
|
+
$dialog = new QuestionHelper();
|
854
|
+
$dialog->setInputStream($this->getInputStream($providedAnswer."\n"));
|
855
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
856
|
+
$dialog->setHelperSet($helperSet);
|
857
|
+
|
858
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
859
|
+
$question->setMaxAttempts(1);
|
860
|
+
$answer = $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question);
|
861
|
+
|
862
|
+
$this->assertSame($expectedValue, $answer);
|
863
|
+
}
|
864
|
+
|
865
|
+
/**
|
866
|
+
* @group legacy
|
867
|
+
* @dataProvider answerProvider
|
868
|
+
*/
|
869
|
+
public function testLegacySelectChoiceFromChoiceList($providedAnswer, $expectedValue)
|
870
|
+
{
|
871
|
+
$possibleChoices = [
|
872
|
+
'env_1' => 'My environment 1',
|
873
|
+
'env_2' => 'My environment',
|
874
|
+
'env_3' => 'My environment',
|
875
|
+
];
|
876
|
+
|
877
|
+
$dialog = new QuestionHelper();
|
878
|
+
$dialog->setInputStream($this->getInputStream($providedAnswer."\n"));
|
879
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
880
|
+
$dialog->setHelperSet($helperSet);
|
881
|
+
|
882
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
883
|
+
$question->setMaxAttempts(1);
|
884
|
+
$answer = $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question);
|
885
|
+
|
886
|
+
$this->assertSame($expectedValue, $answer);
|
887
|
+
}
|
888
|
+
|
889
|
+
/**
|
890
|
+
* @group legacy
|
891
|
+
*/
|
892
|
+
public function testLegacyAmbiguousChoiceFromChoicelist()
|
893
|
+
{
|
894
|
+
$this->expectException('InvalidArgumentException');
|
895
|
+
$this->expectExceptionMessage('The provided answer is ambiguous. Value should be one of "env_2" or "env_3".');
|
896
|
+
$possibleChoices = [
|
897
|
+
'env_1' => 'My first environment',
|
898
|
+
'env_2' => 'My environment',
|
899
|
+
'env_3' => 'My environment',
|
900
|
+
];
|
901
|
+
|
902
|
+
$dialog = new QuestionHelper();
|
903
|
+
$dialog->setInputStream($this->getInputStream("My environment\n"));
|
904
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
905
|
+
$dialog->setHelperSet($helperSet);
|
906
|
+
|
907
|
+
$question = new ChoiceQuestion('Please select the environment to load', $possibleChoices);
|
908
|
+
$question->setMaxAttempts(1);
|
909
|
+
|
910
|
+
$dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question);
|
911
|
+
}
|
912
|
+
|
913
|
+
/**
|
914
|
+
* @requires function mb_strwidth
|
915
|
+
* @group legacy
|
916
|
+
*/
|
917
|
+
public function testLegacyChoiceOutputFormattingQuestionForUtf8Keys()
|
918
|
+
{
|
919
|
+
$question = 'Lorem ipsum?';
|
920
|
+
$possibleChoices = [
|
921
|
+
'foo' => 'foo',
|
922
|
+
'żółw' => 'bar',
|
923
|
+
'łabądź' => 'baz',
|
924
|
+
];
|
925
|
+
$outputShown = [
|
926
|
+
$question,
|
927
|
+
' [<info>foo </info>] foo',
|
928
|
+
' [<info>żółw </info>] bar',
|
929
|
+
' [<info>łabądź</info>] baz',
|
930
|
+
];
|
931
|
+
$output = $this->getMockBuilder('\Symfony\Component\Console\Output\OutputInterface')->getMock();
|
932
|
+
$output->method('getFormatter')->willReturn(new OutputFormatter());
|
933
|
+
|
934
|
+
$dialog = new QuestionHelper();
|
935
|
+
$dialog->setInputStream($this->getInputStream("\n"));
|
936
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
937
|
+
$dialog->setHelperSet($helperSet);
|
938
|
+
|
939
|
+
$output->expects($this->once())->method('writeln')->with($this->equalTo($outputShown));
|
940
|
+
|
941
|
+
$question = new ChoiceQuestion($question, $possibleChoices, 'foo');
|
942
|
+
$dialog->ask($this->createInputInterfaceMock(), $output, $question);
|
943
|
+
}
|
944
|
+
|
945
|
+
public function testAskThrowsExceptionOnMissingInput()
|
946
|
+
{
|
947
|
+
$this->expectException('Symfony\Component\Console\Exception\RuntimeException');
|
948
|
+
$this->expectExceptionMessage('Aborted.');
|
949
|
+
$dialog = new QuestionHelper();
|
950
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream('')), $this->createOutputInterface(), new Question('What\'s your name?'));
|
951
|
+
}
|
952
|
+
|
953
|
+
public function testAskThrowsExceptionOnMissingInputForChoiceQuestion()
|
954
|
+
{
|
955
|
+
$this->expectException('Symfony\Component\Console\Exception\RuntimeException');
|
956
|
+
$this->expectExceptionMessage('Aborted.');
|
957
|
+
$dialog = new QuestionHelper();
|
958
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream('')), $this->createOutputInterface(), new ChoiceQuestion('Choice', ['a', 'b']));
|
959
|
+
}
|
960
|
+
|
961
|
+
public function testAskThrowsExceptionOnMissingInputWithValidator()
|
962
|
+
{
|
963
|
+
$this->expectException('Symfony\Component\Console\Exception\RuntimeException');
|
964
|
+
$this->expectExceptionMessage('Aborted.');
|
965
|
+
$dialog = new QuestionHelper();
|
966
|
+
|
967
|
+
$question = new Question('What\'s your name?');
|
968
|
+
$question->setValidator(function ($value) {
|
969
|
+
if (!$value) {
|
970
|
+
throw new \Exception('A value is required.');
|
971
|
+
}
|
972
|
+
});
|
973
|
+
|
974
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($this->getInputStream('')), $this->createOutputInterface(), $question);
|
975
|
+
}
|
976
|
+
|
977
|
+
public function testEmptyChoices()
|
978
|
+
{
|
979
|
+
$this->expectException('LogicException');
|
980
|
+
$this->expectExceptionMessage('Choice question must have at least 1 choice available.');
|
981
|
+
new ChoiceQuestion('Question', [], 'irrelevant');
|
982
|
+
}
|
983
|
+
|
984
|
+
public function testTraversableAutocomplete()
|
985
|
+
{
|
986
|
+
if (!Terminal::hasSttyAvailable()) {
|
987
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
988
|
+
}
|
989
|
+
|
990
|
+
// Acm<NEWLINE>
|
991
|
+
// Ac<BACKSPACE><BACKSPACE>s<TAB>Test<NEWLINE>
|
992
|
+
// <NEWLINE>
|
993
|
+
// <UP ARROW><UP ARROW><NEWLINE>
|
994
|
+
// <UP ARROW><UP ARROW><UP ARROW><UP ARROW><UP ARROW><TAB>Test<NEWLINE>
|
995
|
+
// <DOWN ARROW><NEWLINE>
|
996
|
+
// S<BACKSPACE><BACKSPACE><DOWN ARROW><DOWN ARROW><NEWLINE>
|
997
|
+
// F00<BACKSPACE><BACKSPACE>oo<TAB><NEWLINE>
|
998
|
+
$inputStream = $this->getInputStream("Acm\nAc\177\177s\tTest\n\n\033[A\033[A\n\033[A\033[A\033[A\033[A\033[A\tTest\n\033[B\nS\177\177\033[B\033[B\nF00\177\177oo\t\n");
|
999
|
+
|
1000
|
+
$dialog = new QuestionHelper();
|
1001
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
1002
|
+
$dialog->setHelperSet($helperSet);
|
1003
|
+
|
1004
|
+
$question = new Question('Please select a bundle', 'FrameworkBundle');
|
1005
|
+
$question->setAutocompleterValues(new AutocompleteValues(['irrelevant' => 'AcmeDemoBundle', 'AsseticBundle', 'SecurityBundle', 'FooBundle']));
|
1006
|
+
|
1007
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1008
|
+
$this->assertEquals('AsseticBundleTest', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1009
|
+
$this->assertEquals('FrameworkBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1010
|
+
$this->assertEquals('SecurityBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1011
|
+
$this->assertEquals('FooBundleTest', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1012
|
+
$this->assertEquals('AcmeDemoBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1013
|
+
$this->assertEquals('AsseticBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1014
|
+
$this->assertEquals('FooBundle', $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
public function testDisableSttby()
|
1018
|
+
{
|
1019
|
+
if (!Terminal::hasSttyAvailable()) {
|
1020
|
+
$this->markTestSkipped('`stty` is required to test autocomplete functionality');
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
$this->expectException(InvalidArgumentException::class);
|
1024
|
+
$this->expectExceptionMessage('invalid');
|
1025
|
+
|
1026
|
+
QuestionHelper::disableStty();
|
1027
|
+
$dialog = new QuestionHelper();
|
1028
|
+
$dialog->setHelperSet(new HelperSet([new FormatterHelper()]));
|
1029
|
+
|
1030
|
+
$question = new ChoiceQuestion('Please select a bundle', [1 => 'AcmeDemoBundle', 4 => 'AsseticBundle']);
|
1031
|
+
$question->setMaxAttempts(1);
|
1032
|
+
|
1033
|
+
// <UP ARROW><UP ARROW><NEWLINE><DOWN ARROW><DOWN ARROW><NEWLINE>
|
1034
|
+
// Gives `AcmeDemoBundle` with stty
|
1035
|
+
$inputStream = $this->getInputStream("\033[A\033[A\n\033[B\033[B\n");
|
1036
|
+
|
1037
|
+
try {
|
1038
|
+
$dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question);
|
1039
|
+
} finally {
|
1040
|
+
$reflection = new \ReflectionProperty(QuestionHelper::class, 'stty');
|
1041
|
+
$reflection->setAccessible(true);
|
1042
|
+
$reflection->setValue(null, true);
|
1043
|
+
}
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
public function testTraversableMultiselectAutocomplete()
|
1047
|
+
{
|
1048
|
+
// <NEWLINE>
|
1049
|
+
// F<TAB><NEWLINE>
|
1050
|
+
// A<3x UP ARROW><TAB>,F<TAB><NEWLINE>
|
1051
|
+
// F00<BACKSPACE><BACKSPACE>o<TAB>,A<DOWN ARROW>,<SPACE>SecurityBundle<NEWLINE>
|
1052
|
+
// Acme<TAB>,<SPACE>As<TAB><29x BACKSPACE>S<TAB><NEWLINE>
|
1053
|
+
// Ac<TAB>,As<TAB><3x BACKSPACE>d<TAB><NEWLINE>
|
1054
|
+
$inputStream = $this->getInputStream("\nF\t\nA\033[A\033[A\033[A\t,F\t\nF00\177\177o\t,A\033[B\t, SecurityBundle\nAcme\t, As\t\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177S\t\nAc\t,As\t\177\177\177d\t\n");
|
1055
|
+
|
1056
|
+
$dialog = new QuestionHelper();
|
1057
|
+
$helperSet = new HelperSet([new FormatterHelper()]);
|
1058
|
+
$dialog->setHelperSet($helperSet);
|
1059
|
+
|
1060
|
+
$question = new ChoiceQuestion(
|
1061
|
+
'Please select a bundle (defaults to AcmeDemoBundle and AsseticBundle)',
|
1062
|
+
['AcmeDemoBundle', 'AsseticBundle', 'SecurityBundle', 'FooBundle'],
|
1063
|
+
'0,1'
|
1064
|
+
);
|
1065
|
+
|
1066
|
+
// This tests that autocomplete works for all multiselect choices entered by the user
|
1067
|
+
$question->setMultiselect(true);
|
1068
|
+
|
1069
|
+
$this->assertEquals(['AcmeDemoBundle', 'AsseticBundle'], $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1070
|
+
$this->assertEquals(['FooBundle'], $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1071
|
+
$this->assertEquals(['AsseticBundle', 'FooBundle'], $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1072
|
+
$this->assertEquals(['FooBundle', 'AsseticBundle', 'SecurityBundle'], $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1073
|
+
$this->assertEquals(['SecurityBundle'], $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1074
|
+
$this->assertEquals(['AcmeDemoBundle', 'AsseticBundle'], $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question));
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
protected function getInputStream($input)
|
1078
|
+
{
|
1079
|
+
$stream = fopen('php://memory', 'r+', false);
|
1080
|
+
fwrite($stream, $input);
|
1081
|
+
rewind($stream);
|
1082
|
+
|
1083
|
+
return $stream;
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
protected function createOutputInterface()
|
1087
|
+
{
|
1088
|
+
return new StreamOutput(fopen('php://memory', 'r+', false));
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
protected function createInputInterfaceMock($interactive = true)
|
1092
|
+
{
|
1093
|
+
$mock = $this->getMockBuilder('Symfony\Component\Console\Input\InputInterface')->getMock();
|
1094
|
+
$mock->expects($this->any())
|
1095
|
+
->method('isInteractive')
|
1096
|
+
->willReturn($interactive);
|
1097
|
+
|
1098
|
+
return $mock;
|
1099
|
+
}
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
class AutocompleteValues implements \IteratorAggregate
|
1103
|
+
{
|
1104
|
+
private $values;
|
1105
|
+
|
1106
|
+
public function __construct(array $values)
|
1107
|
+
{
|
1108
|
+
$this->values = $values;
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
public function getIterator()
|
1112
|
+
{
|
1113
|
+
return new \ArrayIterator($this->values);
|
1114
|
+
}
|
1115
|
+
}
|