dependabot-composer 0.89.5 → 0.90.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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/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 +9 -0
- data/helpers/vendor/composer/autoload_files.php +11 -0
- data/helpers/vendor/composer/autoload_namespaces.php +9 -0
- data/helpers/vendor/composer/autoload_psr4.php +26 -0
- data/helpers/vendor/composer/autoload_real.php +70 -0
- data/helpers/vendor/composer/autoload_static.php +128 -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 +3240 -0
- data/helpers/vendor/composer/ca-bundle/src/CaBundle.php +308 -0
- data/helpers/vendor/composer/composer/.gitattributes +12 -0
- data/helpers/vendor/composer/composer/.github/CONTRIBUTING.md +59 -0
- data/helpers/vendor/composer/composer/.github/ISSUE_TEMPLATE.md +25 -0
- data/helpers/vendor/composer/composer/.gitignore +11 -0
- data/helpers/vendor/composer/composer/.php_cs +58 -0
- data/helpers/vendor/composer/composer/.travis.yml +76 -0
- data/helpers/vendor/composer/composer/CHANGELOG.md +767 -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 +62 -0
- data/helpers/vendor/composer/composer/appveyor.yml +33 -0
- data/helpers/vendor/composer/composer/bin/compile +31 -0
- data/helpers/vendor/composer/composer/bin/composer +57 -0
- data/helpers/vendor/composer/composer/composer.json +81 -0
- data/helpers/vendor/composer/composer/composer.lock +1800 -0
- data/helpers/vendor/composer/composer/doc/00-intro.md +156 -0
- data/helpers/vendor/composer/composer/doc/01-basic-usage.md +266 -0
- data/helpers/vendor/composer/composer/doc/02-libraries.md +153 -0
- data/helpers/vendor/composer/composer/doc/03-cli.md +931 -0
- data/helpers/vendor/composer/composer/doc/04-schema.md +924 -0
- data/helpers/vendor/composer/composer/doc/05-repositories.md +713 -0
- data/helpers/vendor/composer/composer/doc/06-config.md +277 -0
- data/helpers/vendor/composer/composer/doc/07-community.md +35 -0
- data/helpers/vendor/composer/composer/doc/articles/aliases.md +105 -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 +343 -0
- data/helpers/vendor/composer/composer/doc/articles/http-basic-authentication.md +59 -0
- data/helpers/vendor/composer/composer/doc/articles/plugins.md +285 -0
- data/helpers/vendor/composer/composer/doc/articles/scripts.md +304 -0
- data/helpers/vendor/composer/composer/doc/articles/troubleshooting.md +309 -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 +50 -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/phpunit.xml.dist +35 -0
- data/helpers/vendor/composer/composer/res/composer-repository-schema.json +110 -0
- data/helpers/vendor/composer/composer/res/composer-schema.json +843 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php +1057 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php +445 -0
- data/helpers/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php +222 -0
- data/helpers/vendor/composer/composer/src/Composer/Cache.php +251 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/AboutCommand.php +46 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php +165 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/BaseCommand.php +181 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php +255 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php +156 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php +72 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ConfigCommand.php +704 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php +384 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DependsCommand.php +56 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php +728 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php +86 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ExecCommand.php +90 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/GlobalCommand.php +110 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/HomeCommand.php +166 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/InitCommand.php +795 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/InstallCommand.php +123 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/LicensesCommand.php +158 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php +95 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php +56 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RemoveCommand.php +162 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RequireCommand.php +243 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php +139 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php +64 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SearchCommand.php +82 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php +404 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ShowCommand.php +1014 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/StatusCommand.php +213 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php +151 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/UpdateCommand.php +227 -0
- data/helpers/vendor/composer/composer/src/Composer/Command/ValidateCommand.php +171 -0
- data/helpers/vendor/composer/composer/src/Composer/Compiler.php +283 -0
- data/helpers/vendor/composer/composer/src/Composer/Composer.php +246 -0
- data/helpers/vendor/composer/composer/src/Composer/Config.php +455 -0
- data/helpers/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php +91 -0
- data/helpers/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php +267 -0
- data/helpers/vendor/composer/composer/src/Composer/Console/Application.php +481 -0
- data/helpers/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php +90 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php +199 -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 +80 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php +27 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php +378 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php +253 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Request.php +78 -0
- data/helpers/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php +263 -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 +372 -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 +868 -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 +516 -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 +175 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PearPackageExtractor.php +266 -0
- data/helpers/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php +114 -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 +536 -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 +255 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/BufferIO.php +59 -0
- data/helpers/vendor/composer/composer/src/Composer/IO/ConsoleIO.php +322 -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 +1793 -0
- data/helpers/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php +210 -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 +81 -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 +301 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonFormatter.php +134 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonManipulator.php +521 -0
- data/helpers/vendor/composer/composer/src/Composer/Json/JsonValidationException.php +34 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/AliasPackage.php +404 -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 +178 -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 +74 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/BasePackage.php +250 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php +129 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackage.php +199 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php +95 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php +145 -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 +290 -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 +241 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php +461 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Locker.php +438 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/Package.php +612 -0
- data/helpers/vendor/composer/composer/src/Composer/Package/PackageInterface.php +361 -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 +302 -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 +176 -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 +403 -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 +208 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php +167 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/BaseRepository.php +157 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php +838 -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 +92 -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 +190 -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 +315 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php +166 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php +74 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php +177 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php +22 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php +443 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php +238 -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 +222 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php +472 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php +511 -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 +230 -0
- data/helpers/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php +181 -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 +377 -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 +89 -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 +75 -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 +79 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Filesystem.php +700 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Git.php +347 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/GitHub.php +180 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/GitLab.php +163 -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 +147 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Perforce.php +575 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Platform.php +92 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php +186 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php +1093 -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 +204 -0
- data/helpers/vendor/composer/composer/src/Composer/Util/Url.php +55 -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 +945 -0
- data/helpers/vendor/composer/semver/CHANGELOG.md +66 -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 +58 -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 +219 -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 +548 -0
- data/helpers/vendor/composer/spdx-licenses/.php_cs.dist +59 -0
- data/helpers/vendor/composer/spdx-licenses/CHANGELOG.md +84 -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 +57 -0
- data/helpers/vendor/composer/spdx-licenses/res/spdx-exceptions.json +101 -0
- data/helpers/vendor/composer/spdx-licenses/res/spdx-licenses.json +1907 -0
- data/helpers/vendor/composer/spdx-licenses/src/SpdxLicenses.php +343 -0
- data/helpers/vendor/composer/xdebug-handler/CHANGELOG.md +51 -0
- data/helpers/vendor/composer/xdebug-handler/LICENSE +21 -0
- data/helpers/vendor/composer/xdebug-handler/README.md +280 -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 +160 -0
- data/helpers/vendor/composer/xdebug-handler/src/Status.php +163 -0
- data/helpers/vendor/composer/xdebug-handler/src/XdebugHandler.php +540 -0
- data/helpers/vendor/justinrainbow/json-schema/.gitattributes +5 -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 +65 -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 +147 -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 +86 -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 +36 -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 +413 -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 +330 -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 +90 -0
- data/helpers/vendor/psr/log/.gitignore +1 -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 +123 -0
- data/helpers/vendor/psr/log/Psr/Log/LoggerTrait.php +140 -0
- data/helpers/vendor/psr/log/Psr/Log/NullLogger.php +28 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +144 -0
- data/helpers/vendor/psr/log/Psr/Log/Test/TestLogger.php +146 -0
- data/helpers/vendor/psr/log/README.md +52 -0
- data/helpers/vendor/psr/log/composer.json +26 -0
- data/helpers/vendor/seld/jsonlint/.gitignore +3 -0
- data/helpers/vendor/seld/jsonlint/.travis.yml +25 -0
- data/helpers/vendor/seld/jsonlint/CHANGELOG.md +66 -0
- data/helpers/vendor/seld/jsonlint/LICENSE +19 -0
- data/helpers/vendor/seld/jsonlint/README.md +89 -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 +217 -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 +230 -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 +39 -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/Timestamps.php +192 -0
- data/helpers/vendor/symfony/console/.gitignore +3 -0
- data/helpers/vendor/symfony/console/Application.php +1174 -0
- data/helpers/vendor/symfony/console/CHANGELOG.md +140 -0
- data/helpers/vendor/symfony/console/Command/Command.php +654 -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 +71 -0
- data/helpers/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php +37 -0
- data/helpers/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php +55 -0
- data/helpers/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php +62 -0
- data/helpers/vendor/symfony/console/ConsoleEvents.php +47 -0
- data/helpers/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php +98 -0
- data/helpers/vendor/symfony/console/Descriptor/ApplicationDescription.php +144 -0
- data/helpers/vendor/symfony/console/Descriptor/Descriptor.php +107 -0
- data/helpers/vendor/symfony/console/Descriptor/DescriptorInterface.php +31 -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 +245 -0
- data/helpers/vendor/symfony/console/Event/ConsoleCommandEvent.php +60 -0
- data/helpers/vendor/symfony/console/Event/ConsoleErrorEvent.php +58 -0
- data/helpers/vendor/symfony/console/Event/ConsoleEvent.php +67 -0
- data/helpers/vendor/symfony/console/Event/ConsoleTerminateEvent.php +53 -0
- data/helpers/vendor/symfony/console/EventListener/ErrorListener.php +91 -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/NamespaceNotFoundException.php +21 -0
- data/helpers/vendor/symfony/console/Exception/RuntimeException.php +19 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatter.php +278 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterInterface.php +71 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyle.php +203 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php +62 -0
- data/helpers/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php +110 -0
- data/helpers/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php +25 -0
- data/helpers/vendor/symfony/console/Helper/DebugFormatterHelper.php +127 -0
- data/helpers/vendor/symfony/console/Helper/DescriptorHelper.php +94 -0
- data/helpers/vendor/symfony/console/Helper/FormatterHelper.php +106 -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 +156 -0
- data/helpers/vendor/symfony/console/Helper/ProgressBar.php +530 -0
- data/helpers/vendor/symfony/console/Helper/ProgressIndicator.php +269 -0
- data/helpers/vendor/symfony/console/Helper/QuestionHelper.php +434 -0
- data/helpers/vendor/symfony/console/Helper/SymfonyQuestionHelper.php +96 -0
- data/helpers/vendor/symfony/console/Helper/Table.php +808 -0
- data/helpers/vendor/symfony/console/Helper/TableCell.php +68 -0
- data/helpers/vendor/symfony/console/Helper/TableRows.php +32 -0
- data/helpers/vendor/symfony/console/Helper/TableSeparator.php +25 -0
- data/helpers/vendor/symfony/console/Helper/TableStyle.php +458 -0
- data/helpers/vendor/symfony/console/Input/ArgvInput.php +346 -0
- data/helpers/vendor/symfony/console/Input/ArrayInput.php +206 -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 +402 -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 +124 -0
- data/helpers/vendor/symfony/console/Output/BufferedOutput.php +45 -0
- data/helpers/vendor/symfony/console/Output/ConsoleOutput.php +161 -0
- data/helpers/vendor/symfony/console/Output/ConsoleOutputInterface.php +32 -0
- data/helpers/vendor/symfony/console/Output/ConsoleSectionOutput.php +141 -0
- data/helpers/vendor/symfony/console/Output/NullOutput.php +123 -0
- data/helpers/vendor/symfony/console/Output/Output.php +177 -0
- data/helpers/vendor/symfony/console/Output/OutputInterface.php +114 -0
- data/helpers/vendor/symfony/console/Output/StreamOutput.php +124 -0
- data/helpers/vendor/symfony/console/Question/ChoiceQuestion.php +184 -0
- data/helpers/vendor/symfony/console/Question/ConfirmationQuestion.php +59 -0
- data/helpers/vendor/symfony/console/Question/Question.php +246 -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 +154 -0
- data/helpers/vendor/symfony/console/Style/SymfonyStyle.php +438 -0
- data/helpers/vendor/symfony/console/Terminal.php +137 -0
- data/helpers/vendor/symfony/console/Tester/ApplicationTester.php +77 -0
- data/helpers/vendor/symfony/console/Tester/CommandTester.php +79 -0
- data/helpers/vendor/symfony/console/Tester/TesterTrait.php +173 -0
- data/helpers/vendor/symfony/console/Tests/ApplicationTest.php +1791 -0
- data/helpers/vendor/symfony/console/Tests/Command/CommandTest.php +436 -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 +61 -0
- data/helpers/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +60 -0
- data/helpers/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php +258 -0
- data/helpers/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php +107 -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/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/FooWithoutAliasCommand.php +21 -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_4_with_iterators.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_4_with_iterators.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/TestCommand.php +28 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestTiti.php +21 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/TestToto.php +22 -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 +29 -0
- data/helpers/vendor/symfony/console/Tests/Fixtures/application_run3.txt +29 -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 +10 -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 +16 -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 +16 -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/Formatter/OutputFormatterStyleStackTest.php +71 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php +100 -0
- data/helpers/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php +352 -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 +133 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProgressBarTest.php +899 -0
- data/helpers/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php +183 -0
- data/helpers/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php +665 -0
- data/helpers/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php +168 -0
- data/helpers/vendor/symfony/console/Tests/Helper/TableStyleTest.php +28 -0
- data/helpers/vendor/symfony/console/Tests/Helper/TableTest.php +1127 -0
- data/helpers/vendor/symfony/console/Tests/Input/ArgvInputTest.php +458 -0
- data/helpers/vendor/symfony/console/Tests/Input/ArrayInputTest.php +177 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputArgumentTest.php +103 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputDefinitionTest.php +407 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputOptionTest.php +196 -0
- data/helpers/vendor/symfony/console/Tests/Input/InputTest.php +149 -0
- data/helpers/vendor/symfony/console/Tests/Input/StringInputTest.php +87 -0
- data/helpers/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php +215 -0
- data/helpers/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php +42 -0
- data/helpers/vendor/symfony/console/Tests/Output/ConsoleSectionOutputTest.php +163 -0
- data/helpers/vendor/symfony/console/Tests/Output/NullOutputTest.php +88 -0
- data/helpers/vendor/symfony/console/Tests/Output/OutputTest.php +189 -0
- data/helpers/vendor/symfony/console/Tests/Output/StreamOutputTest.php +61 -0
- data/helpers/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php +116 -0
- data/helpers/vendor/symfony/console/Tests/TerminalTest.php +44 -0
- data/helpers/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php +113 -0
- data/helpers/vendor/symfony/console/Tests/Tester/CommandTesterTest.php +207 -0
- data/helpers/vendor/symfony/console/composer.json +53 -0
- data/helpers/vendor/symfony/console/phpunit.xml.dist +41 -0
- data/helpers/vendor/symfony/contracts/.gitignore +3 -0
- data/helpers/vendor/symfony/contracts/CHANGELOG.md +12 -0
- data/helpers/vendor/symfony/contracts/Cache/CacheInterface.php +57 -0
- data/helpers/vendor/symfony/contracts/Cache/CacheTrait.php +71 -0
- data/helpers/vendor/symfony/contracts/Cache/CallbackInterface.php +30 -0
- data/helpers/vendor/symfony/contracts/Cache/ItemInterface.php +60 -0
- data/helpers/vendor/symfony/contracts/Cache/TagAwareCacheInterface.php +38 -0
- data/helpers/vendor/symfony/contracts/LICENSE +19 -0
- data/helpers/vendor/symfony/contracts/README.md +70 -0
- data/helpers/vendor/symfony/contracts/Service/ResetInterface.php +30 -0
- data/helpers/vendor/symfony/contracts/Service/ServiceLocatorTrait.php +97 -0
- data/helpers/vendor/symfony/contracts/Service/ServiceSubscriberInterface.php +53 -0
- data/helpers/vendor/symfony/contracts/Service/ServiceSubscriberTrait.php +61 -0
- data/helpers/vendor/symfony/contracts/Tests/Cache/CacheTraitTest.php +165 -0
- data/helpers/vendor/symfony/contracts/Tests/Service/ServiceLocatorTest.php +94 -0
- data/helpers/vendor/symfony/contracts/Tests/Service/ServiceSubscriberTraitTest.php +65 -0
- data/helpers/vendor/symfony/contracts/Tests/Translation/TranslatorTest.php +353 -0
- data/helpers/vendor/symfony/contracts/Translation/LocaleAwareInterface.php +31 -0
- data/helpers/vendor/symfony/contracts/Translation/TranslatorInterface.php +65 -0
- data/helpers/vendor/symfony/contracts/Translation/TranslatorTrait.php +255 -0
- data/helpers/vendor/symfony/contracts/composer.json +44 -0
- data/helpers/vendor/symfony/contracts/phpunit.xml.dist +31 -0
- data/helpers/vendor/symfony/filesystem/.gitignore +3 -0
- data/helpers/vendor/symfony/filesystem/CHANGELOG.md +59 -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/Exception/InvalidArgumentException.php +19 -0
- data/helpers/vendor/symfony/filesystem/Filesystem.php +767 -0
- data/helpers/vendor/symfony/filesystem/LICENSE +19 -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 +1686 -0
- data/helpers/vendor/symfony/filesystem/Tests/FilesystemTestCase.php +166 -0
- data/helpers/vendor/symfony/filesystem/Tests/Fixtures/MockStream/MockStream.php +46 -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 +69 -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/Finder.php +780 -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/MultiplePcreFilterIterator.php +112 -0
- data/helpers/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
- data/helpers/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +140 -0
- data/helpers/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
- data/helpers/vendor/symfony/finder/Iterator/SortableIterator.php +98 -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 +1280 -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 +46 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php +92 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php +103 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php +107 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php +82 -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/Iterator.php +55 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php +100 -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 +128 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php +59 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php +70 -0
- data/helpers/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php +262 -0
- data/helpers/vendor/symfony/finder/composer.json +33 -0
- data/helpers/vendor/symfony/finder/phpunit.xml.dist +30 -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 +26 -0
- data/helpers/vendor/symfony/polyfill-ctype/composer.json +34 -0
- data/helpers/vendor/symfony/polyfill-mbstring/LICENSE +19 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Mbstring.php +800 -0
- data/helpers/vendor/symfony/polyfill-mbstring/README.md +13 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1096 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -0
- data/helpers/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1104 -0
- data/helpers/vendor/symfony/polyfill-mbstring/bootstrap.php +58 -0
- data/helpers/vendor/symfony/polyfill-mbstring/composer.json +34 -0
- data/helpers/vendor/symfony/process/.gitignore +3 -0
- data/helpers/vendor/symfony/process/CHANGELOG.md +90 -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/ProcessSignaledException.php +41 -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 +90 -0
- data/helpers/vendor/symfony/process/LICENSE +19 -0
- data/helpers/vendor/symfony/process/PhpExecutableFinder.php +101 -0
- data/helpers/vendor/symfony/process/PhpProcess.php +76 -0
- data/helpers/vendor/symfony/process/Pipes/AbstractPipes.php +178 -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 +1652 -0
- data/helpers/vendor/symfony/process/ProcessUtils.php +69 -0
- data/helpers/vendor/symfony/process/README.md +13 -0
- data/helpers/vendor/symfony/process/Tests/ExecutableFinderTest.php +178 -0
- data/helpers/vendor/symfony/process/Tests/KillableProcessWithOutput.php +25 -0
- data/helpers/vendor/symfony/process/Tests/NonStopableProcess.php +47 -0
- data/helpers/vendor/symfony/process/Tests/PhpExecutableFinderTest.php +49 -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/ProcessFailedExceptionTest.php +137 -0
- data/helpers/vendor/symfony/process/Tests/ProcessTest.php +1533 -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
- metadata +903 -5
@@ -0,0 +1,13 @@
|
|
1
|
+
<?php
|
2
|
+
|
3
|
+
/*
|
4
|
+
* This file is part of the JSON Lint package.
|
5
|
+
*
|
6
|
+
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
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
|
+
$loader = require __DIR__.'/../vendor/autoload.php';
|
13
|
+
$loader->add('Seld\JsonLint\Test', __DIR__);
|
@@ -0,0 +1 @@
|
|
1
|
+
/vendor/
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (c) 2015 Jordi Boggiano
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
5
|
+
in the Software without restriction, including without limitation the rights
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
copies of the Software, and to permit persons to whom the Software is furnished
|
8
|
+
to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE.
|
@@ -0,0 +1,39 @@
|
|
1
|
+
PHAR Utils
|
2
|
+
==========
|
3
|
+
|
4
|
+
PHAR file format utilities, for when PHP phars you up.
|
5
|
+
|
6
|
+
Installation
|
7
|
+
------------
|
8
|
+
|
9
|
+
`composer require seld/phar-utils`
|
10
|
+
|
11
|
+
API
|
12
|
+
---
|
13
|
+
|
14
|
+
### `Seld\PharUtils\Timestamps`
|
15
|
+
|
16
|
+
- `__construct($pharFile)`
|
17
|
+
|
18
|
+
> Load a phar file in memory.
|
19
|
+
|
20
|
+
- `updateTimestamps($timestamp = null)`
|
21
|
+
|
22
|
+
> Updates each file's unix timestamps in the PHAR so the PHAR signature
|
23
|
+
> can be produced in a reproducible manner.
|
24
|
+
|
25
|
+
- `save($path, $signatureAlgo = '')`
|
26
|
+
|
27
|
+
> Saves the updated phar file with an updated signature.
|
28
|
+
> Algo must be one of `Phar::MD5`, `Phar::SHA1`, `Phar::SHA256`
|
29
|
+
> or `Phar::SHA512`
|
30
|
+
|
31
|
+
Requirements
|
32
|
+
------------
|
33
|
+
|
34
|
+
PHP 5.3 and above
|
35
|
+
|
36
|
+
License
|
37
|
+
-------
|
38
|
+
|
39
|
+
PHAR Utils is licensed under the MIT License - see the LICENSE file for details
|
@@ -0,0 +1,26 @@
|
|
1
|
+
{
|
2
|
+
"name": "seld/phar-utils",
|
3
|
+
"description": "PHAR file format utilities, for when PHP phars you up",
|
4
|
+
"type": "library",
|
5
|
+
"keywords": ["phra"],
|
6
|
+
"license": "MIT",
|
7
|
+
"require": {
|
8
|
+
"php": ">=5.3"
|
9
|
+
},
|
10
|
+
"authors": [
|
11
|
+
{
|
12
|
+
"name": "Jordi Boggiano",
|
13
|
+
"email": "j.boggiano@seld.be"
|
14
|
+
}
|
15
|
+
],
|
16
|
+
"autoload": {
|
17
|
+
"psr-4": {
|
18
|
+
"Seld\\PharUtils\\": "src/"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"extra": {
|
22
|
+
"branch-alias": {
|
23
|
+
"dev-master": "1.x-dev"
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"_readme": [
|
3
|
+
"This file locks the dependencies of your project to a known state",
|
4
|
+
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
5
|
+
"This file is @generated automatically"
|
6
|
+
],
|
7
|
+
"hash": "e5afe72073d9266712c8e1ddc1648513",
|
8
|
+
"packages": [],
|
9
|
+
"packages-dev": [],
|
10
|
+
"aliases": [],
|
11
|
+
"minimum-stability": "stable",
|
12
|
+
"stability-flags": [],
|
13
|
+
"prefer-stable": false,
|
14
|
+
"prefer-lowest": false,
|
15
|
+
"platform": {
|
16
|
+
"php": ">=5.3"
|
17
|
+
},
|
18
|
+
"platform-dev": []
|
19
|
+
}
|
@@ -0,0 +1,192 @@
|
|
1
|
+
<?php
|
2
|
+
|
3
|
+
/*
|
4
|
+
* This file is part of PHAR Utils.
|
5
|
+
*
|
6
|
+
* (c) Jordi Boggiano <j.boggiano@seld.be>
|
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 Seld\PharUtils;
|
13
|
+
|
14
|
+
class Timestamps
|
15
|
+
{
|
16
|
+
private $contents;
|
17
|
+
|
18
|
+
/**
|
19
|
+
* @param string $file path to the phar file to use
|
20
|
+
*/
|
21
|
+
public function __construct($file)
|
22
|
+
{
|
23
|
+
$this->contents = file_get_contents($file);
|
24
|
+
}
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Updates each file's unix timestamps in the PHAR
|
28
|
+
*
|
29
|
+
* The PHAR signature can then be produced in a reproducible manner.
|
30
|
+
*
|
31
|
+
* @param int|DateTime|string $timestamp Date string or DateTime or unix timestamp to use
|
32
|
+
*/
|
33
|
+
public function updateTimestamps($timestamp = null)
|
34
|
+
{
|
35
|
+
if ($timestamp instanceof \DateTime) {
|
36
|
+
$timestamp = $timestamp->getTimestamp();
|
37
|
+
} elseif (is_string($timestamp)) {
|
38
|
+
$timestamp = strtotime($timestamp);
|
39
|
+
} elseif (!is_int($timestamp)) {
|
40
|
+
$timestamp = strtotime('1984-12-24T00:00:00Z');
|
41
|
+
}
|
42
|
+
|
43
|
+
// detect manifest offset / end of stub
|
44
|
+
if (!preg_match('{__HALT_COMPILER\(\);(?: +\?>)?\r?\n}', $this->contents, $match, PREG_OFFSET_CAPTURE)) {
|
45
|
+
throw new \RuntimeException('Could not detect the stub\'s end in the phar');
|
46
|
+
}
|
47
|
+
|
48
|
+
// set starting position and skip past manifest length
|
49
|
+
$pos = $match[0][1] + strlen($match[0][0]);
|
50
|
+
$stubEnd = $pos + $this->readUint($pos, 4);
|
51
|
+
$pos += 4;
|
52
|
+
|
53
|
+
$numFiles = $this->readUint($pos, 4);
|
54
|
+
$pos += 4;
|
55
|
+
|
56
|
+
// skip API version (YOLO)
|
57
|
+
$pos += 2;
|
58
|
+
|
59
|
+
// skip PHAR flags
|
60
|
+
$pos += 4;
|
61
|
+
|
62
|
+
$aliasLength = $this->readUint($pos, 4);
|
63
|
+
$pos += 4 + $aliasLength;
|
64
|
+
|
65
|
+
$metadataLength = $this->readUint($pos, 4);
|
66
|
+
$pos += 4 + $metadataLength;
|
67
|
+
|
68
|
+
while ($pos < $stubEnd) {
|
69
|
+
$filenameLength = $this->readUint($pos, 4);
|
70
|
+
$pos += 4 + $filenameLength;
|
71
|
+
|
72
|
+
// skip filesize
|
73
|
+
$pos += 4;
|
74
|
+
|
75
|
+
// update timestamp to a fixed value
|
76
|
+
$this->contents = substr_replace($this->contents, pack('L', $timestamp), $pos, 4);
|
77
|
+
|
78
|
+
// skip timestamp, compressed file size, crc32 checksum and file flags
|
79
|
+
$pos += 4*4;
|
80
|
+
|
81
|
+
$metadataLength = $this->readUint($pos, 4);
|
82
|
+
$pos += 4 + $metadataLength;
|
83
|
+
|
84
|
+
$numFiles--;
|
85
|
+
}
|
86
|
+
|
87
|
+
if ($numFiles !== 0) {
|
88
|
+
throw new \LogicException('All files were not processed, something must have gone wrong');
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
/**
|
93
|
+
* Saves the updated phar file, optionally with an updated signature.
|
94
|
+
*
|
95
|
+
* @param string $path
|
96
|
+
* @param int $signatureAlgo One of Phar::MD5, Phar::SHA1, Phar::SHA256 or Phar::SHA512
|
97
|
+
* @return bool
|
98
|
+
*/
|
99
|
+
public function save($path, $signatureAlgo)
|
100
|
+
{
|
101
|
+
$pos = $this->determineSignatureBegin();
|
102
|
+
|
103
|
+
$algos = array(
|
104
|
+
\Phar::MD5 => 'md5',
|
105
|
+
\Phar::SHA1 => 'sha1',
|
106
|
+
\Phar::SHA256 => 'sha256',
|
107
|
+
\Phar::SHA512 => 'sha512',
|
108
|
+
);
|
109
|
+
|
110
|
+
if (!isset($algos[$signatureAlgo])) {
|
111
|
+
throw new \UnexpectedValueException('Invalid hash algorithm given: '.$signatureAlgo.' expected one of Phar::MD5, Phar::SHA1, Phar::SHA256 or Phar::SHA512');
|
112
|
+
}
|
113
|
+
$algo = $algos[$signatureAlgo];
|
114
|
+
|
115
|
+
// re-sign phar
|
116
|
+
// signature
|
117
|
+
$signature = hash($algo, substr($this->contents, 0, $pos), true)
|
118
|
+
// sig type
|
119
|
+
. pack('L', $signatureAlgo)
|
120
|
+
// ohai Greg & Marcus
|
121
|
+
. 'GBMB';
|
122
|
+
|
123
|
+
$this->contents = substr($this->contents, 0, $pos) . $signature;
|
124
|
+
|
125
|
+
return file_put_contents($path, $this->contents);
|
126
|
+
}
|
127
|
+
|
128
|
+
private function readUint($pos, $bytes)
|
129
|
+
{
|
130
|
+
$res = unpack("L", substr($this->contents, $pos, $bytes));
|
131
|
+
|
132
|
+
return $res[1];
|
133
|
+
}
|
134
|
+
|
135
|
+
/**
|
136
|
+
* Determine the beginning of the signature.
|
137
|
+
*
|
138
|
+
* @return int
|
139
|
+
*/
|
140
|
+
private function determineSignatureBegin()
|
141
|
+
{
|
142
|
+
// detect signature position
|
143
|
+
if (!preg_match('{__HALT_COMPILER\(\);(?: +\?>)?\r?\n}', $this->contents, $match, PREG_OFFSET_CAPTURE)) {
|
144
|
+
throw new \RuntimeException('Could not detect the stub\'s end in the phar');
|
145
|
+
}
|
146
|
+
|
147
|
+
// set starting position and skip past manifest length
|
148
|
+
$pos = $match[0][1] + strlen($match[0][0]);
|
149
|
+
$stubEnd = $pos + $this->readUint($pos, 4);
|
150
|
+
|
151
|
+
$pos += 4;
|
152
|
+
$numFiles = $this->readUint($pos, 4);
|
153
|
+
|
154
|
+
$pos += 4;
|
155
|
+
|
156
|
+
// skip API version (YOLO)
|
157
|
+
$pos += 2;
|
158
|
+
|
159
|
+
// skip PHAR flags
|
160
|
+
$pos += 4;
|
161
|
+
|
162
|
+
$aliasLength = $this->readUint($pos, 4);
|
163
|
+
$pos += 4 + $aliasLength;
|
164
|
+
|
165
|
+
$metadataLength = $this->readUint($pos, 4);
|
166
|
+
$pos += 4 + $metadataLength;
|
167
|
+
|
168
|
+
$compressedSizes = 0;
|
169
|
+
while ($pos < $stubEnd) {
|
170
|
+
$filenameLength = $this->readUint($pos, 4);
|
171
|
+
$pos += 4 + $filenameLength;
|
172
|
+
|
173
|
+
// skip filesize and timestamp
|
174
|
+
$pos += 2*4;
|
175
|
+
|
176
|
+
$compressedSizes += $this->readUint($pos, 4);
|
177
|
+
// skip compressed file size, crc32 checksum and file flags
|
178
|
+
$pos += 3*4;
|
179
|
+
|
180
|
+
$metadataLength = $this->readUint($pos, 4);
|
181
|
+
$pos += 4 + $metadataLength;
|
182
|
+
|
183
|
+
$numFiles--;
|
184
|
+
}
|
185
|
+
|
186
|
+
if ($numFiles !== 0) {
|
187
|
+
throw new \LogicException('All files were not processed, something must have gone wrong');
|
188
|
+
}
|
189
|
+
|
190
|
+
return $pos + $compressedSizes;
|
191
|
+
}
|
192
|
+
}
|
@@ -0,0 +1,1174 @@
|
|
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;
|
13
|
+
|
14
|
+
use Symfony\Component\Console\Command\Command;
|
15
|
+
use Symfony\Component\Console\Command\HelpCommand;
|
16
|
+
use Symfony\Component\Console\Command\ListCommand;
|
17
|
+
use Symfony\Component\Console\CommandLoader\CommandLoaderInterface;
|
18
|
+
use Symfony\Component\Console\Event\ConsoleCommandEvent;
|
19
|
+
use Symfony\Component\Console\Event\ConsoleErrorEvent;
|
20
|
+
use Symfony\Component\Console\Event\ConsoleTerminateEvent;
|
21
|
+
use Symfony\Component\Console\Exception\CommandNotFoundException;
|
22
|
+
use Symfony\Component\Console\Exception\ExceptionInterface;
|
23
|
+
use Symfony\Component\Console\Exception\LogicException;
|
24
|
+
use Symfony\Component\Console\Exception\NamespaceNotFoundException;
|
25
|
+
use Symfony\Component\Console\Formatter\OutputFormatter;
|
26
|
+
use Symfony\Component\Console\Helper\DebugFormatterHelper;
|
27
|
+
use Symfony\Component\Console\Helper\FormatterHelper;
|
28
|
+
use Symfony\Component\Console\Helper\Helper;
|
29
|
+
use Symfony\Component\Console\Helper\HelperSet;
|
30
|
+
use Symfony\Component\Console\Helper\ProcessHelper;
|
31
|
+
use Symfony\Component\Console\Helper\QuestionHelper;
|
32
|
+
use Symfony\Component\Console\Input\ArgvInput;
|
33
|
+
use Symfony\Component\Console\Input\ArrayInput;
|
34
|
+
use Symfony\Component\Console\Input\InputArgument;
|
35
|
+
use Symfony\Component\Console\Input\InputAwareInterface;
|
36
|
+
use Symfony\Component\Console\Input\InputDefinition;
|
37
|
+
use Symfony\Component\Console\Input\InputInterface;
|
38
|
+
use Symfony\Component\Console\Input\InputOption;
|
39
|
+
use Symfony\Component\Console\Input\StreamableInputInterface;
|
40
|
+
use Symfony\Component\Console\Output\ConsoleOutput;
|
41
|
+
use Symfony\Component\Console\Output\ConsoleOutputInterface;
|
42
|
+
use Symfony\Component\Console\Output\OutputInterface;
|
43
|
+
use Symfony\Component\Console\Style\SymfonyStyle;
|
44
|
+
use Symfony\Component\Debug\ErrorHandler;
|
45
|
+
use Symfony\Component\Debug\Exception\FatalThrowableError;
|
46
|
+
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
47
|
+
|
48
|
+
/**
|
49
|
+
* An Application is the container for a collection of commands.
|
50
|
+
*
|
51
|
+
* It is the main entry point of a Console application.
|
52
|
+
*
|
53
|
+
* This class is optimized for a standard CLI environment.
|
54
|
+
*
|
55
|
+
* Usage:
|
56
|
+
*
|
57
|
+
* $app = new Application('myapp', '1.0 (stable)');
|
58
|
+
* $app->add(new SimpleCommand());
|
59
|
+
* $app->run();
|
60
|
+
*
|
61
|
+
* @author Fabien Potencier <fabien@symfony.com>
|
62
|
+
*/
|
63
|
+
class Application
|
64
|
+
{
|
65
|
+
private $commands = array();
|
66
|
+
private $wantHelps = false;
|
67
|
+
private $runningCommand;
|
68
|
+
private $name;
|
69
|
+
private $version;
|
70
|
+
private $commandLoader;
|
71
|
+
private $catchExceptions = true;
|
72
|
+
private $autoExit = true;
|
73
|
+
private $definition;
|
74
|
+
private $helperSet;
|
75
|
+
private $dispatcher;
|
76
|
+
private $terminal;
|
77
|
+
private $defaultCommand;
|
78
|
+
private $singleCommand = false;
|
79
|
+
private $initialized;
|
80
|
+
|
81
|
+
/**
|
82
|
+
* @param string $name The name of the application
|
83
|
+
* @param string $version The version of the application
|
84
|
+
*/
|
85
|
+
public function __construct(string $name = 'UNKNOWN', string $version = 'UNKNOWN')
|
86
|
+
{
|
87
|
+
$this->name = $name;
|
88
|
+
$this->version = $version;
|
89
|
+
$this->terminal = new Terminal();
|
90
|
+
$this->defaultCommand = 'list';
|
91
|
+
}
|
92
|
+
|
93
|
+
public function setDispatcher(EventDispatcherInterface $dispatcher)
|
94
|
+
{
|
95
|
+
$this->dispatcher = $dispatcher;
|
96
|
+
}
|
97
|
+
|
98
|
+
public function setCommandLoader(CommandLoaderInterface $commandLoader)
|
99
|
+
{
|
100
|
+
$this->commandLoader = $commandLoader;
|
101
|
+
}
|
102
|
+
|
103
|
+
/**
|
104
|
+
* Runs the current application.
|
105
|
+
*
|
106
|
+
* @return int 0 if everything went fine, or an error code
|
107
|
+
*
|
108
|
+
* @throws \Exception When running fails. Bypass this when {@link setCatchExceptions()}.
|
109
|
+
*/
|
110
|
+
public function run(InputInterface $input = null, OutputInterface $output = null)
|
111
|
+
{
|
112
|
+
putenv('LINES='.$this->terminal->getHeight());
|
113
|
+
putenv('COLUMNS='.$this->terminal->getWidth());
|
114
|
+
|
115
|
+
if (null === $input) {
|
116
|
+
$input = new ArgvInput();
|
117
|
+
}
|
118
|
+
|
119
|
+
if (null === $output) {
|
120
|
+
$output = new ConsoleOutput();
|
121
|
+
}
|
122
|
+
|
123
|
+
$renderException = function ($e) use ($output) {
|
124
|
+
if (!$e instanceof \Exception) {
|
125
|
+
$e = class_exists(FatalThrowableError::class) ? new FatalThrowableError($e) : new \ErrorException($e->getMessage(), $e->getCode(), E_ERROR, $e->getFile(), $e->getLine());
|
126
|
+
}
|
127
|
+
if ($output instanceof ConsoleOutputInterface) {
|
128
|
+
$this->renderException($e, $output->getErrorOutput());
|
129
|
+
} else {
|
130
|
+
$this->renderException($e, $output);
|
131
|
+
}
|
132
|
+
};
|
133
|
+
if ($phpHandler = set_exception_handler($renderException)) {
|
134
|
+
restore_exception_handler();
|
135
|
+
if (!\is_array($phpHandler) || !$phpHandler[0] instanceof ErrorHandler) {
|
136
|
+
$debugHandler = true;
|
137
|
+
} elseif ($debugHandler = $phpHandler[0]->setExceptionHandler($renderException)) {
|
138
|
+
$phpHandler[0]->setExceptionHandler($debugHandler);
|
139
|
+
}
|
140
|
+
}
|
141
|
+
|
142
|
+
$this->configureIO($input, $output);
|
143
|
+
|
144
|
+
try {
|
145
|
+
$exitCode = $this->doRun($input, $output);
|
146
|
+
} catch (\Exception $e) {
|
147
|
+
if (!$this->catchExceptions) {
|
148
|
+
throw $e;
|
149
|
+
}
|
150
|
+
|
151
|
+
$renderException($e);
|
152
|
+
|
153
|
+
$exitCode = $e->getCode();
|
154
|
+
if (is_numeric($exitCode)) {
|
155
|
+
$exitCode = (int) $exitCode;
|
156
|
+
if (0 === $exitCode) {
|
157
|
+
$exitCode = 1;
|
158
|
+
}
|
159
|
+
} else {
|
160
|
+
$exitCode = 1;
|
161
|
+
}
|
162
|
+
} finally {
|
163
|
+
// if the exception handler changed, keep it
|
164
|
+
// otherwise, unregister $renderException
|
165
|
+
if (!$phpHandler) {
|
166
|
+
if (set_exception_handler($renderException) === $renderException) {
|
167
|
+
restore_exception_handler();
|
168
|
+
}
|
169
|
+
restore_exception_handler();
|
170
|
+
} elseif (!$debugHandler) {
|
171
|
+
$finalHandler = $phpHandler[0]->setExceptionHandler(null);
|
172
|
+
if ($finalHandler !== $renderException) {
|
173
|
+
$phpHandler[0]->setExceptionHandler($finalHandler);
|
174
|
+
}
|
175
|
+
}
|
176
|
+
}
|
177
|
+
|
178
|
+
if ($this->autoExit) {
|
179
|
+
if ($exitCode > 255) {
|
180
|
+
$exitCode = 255;
|
181
|
+
}
|
182
|
+
|
183
|
+
exit($exitCode);
|
184
|
+
}
|
185
|
+
|
186
|
+
return $exitCode;
|
187
|
+
}
|
188
|
+
|
189
|
+
/**
|
190
|
+
* Runs the current application.
|
191
|
+
*
|
192
|
+
* @return int 0 if everything went fine, or an error code
|
193
|
+
*/
|
194
|
+
public function doRun(InputInterface $input, OutputInterface $output)
|
195
|
+
{
|
196
|
+
if (true === $input->hasParameterOption(array('--version', '-V'), true)) {
|
197
|
+
$output->writeln($this->getLongVersion());
|
198
|
+
|
199
|
+
return 0;
|
200
|
+
}
|
201
|
+
|
202
|
+
$name = $this->getCommandName($input);
|
203
|
+
if (true === $input->hasParameterOption(array('--help', '-h'), true)) {
|
204
|
+
if (!$name) {
|
205
|
+
$name = 'help';
|
206
|
+
$input = new ArrayInput(array('command_name' => $this->defaultCommand));
|
207
|
+
} else {
|
208
|
+
$this->wantHelps = true;
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
if (!$name) {
|
213
|
+
$name = $this->defaultCommand;
|
214
|
+
$definition = $this->getDefinition();
|
215
|
+
$definition->setArguments(array_merge(
|
216
|
+
$definition->getArguments(),
|
217
|
+
array(
|
218
|
+
'command' => new InputArgument('command', InputArgument::OPTIONAL, $definition->getArgument('command')->getDescription(), $name),
|
219
|
+
)
|
220
|
+
));
|
221
|
+
}
|
222
|
+
|
223
|
+
try {
|
224
|
+
$this->runningCommand = null;
|
225
|
+
// the command name MUST be the first element of the input
|
226
|
+
$command = $this->find($name);
|
227
|
+
} catch (\Throwable $e) {
|
228
|
+
if (!($e instanceof CommandNotFoundException && !$e instanceof NamespaceNotFoundException) || 1 !== \count($alternatives = $e->getAlternatives()) || !$input->isInteractive()) {
|
229
|
+
if (null !== $this->dispatcher) {
|
230
|
+
$event = new ConsoleErrorEvent($input, $output, $e);
|
231
|
+
$this->dispatcher->dispatch(ConsoleEvents::ERROR, $event);
|
232
|
+
|
233
|
+
if (0 === $event->getExitCode()) {
|
234
|
+
return 0;
|
235
|
+
}
|
236
|
+
|
237
|
+
$e = $event->getError();
|
238
|
+
}
|
239
|
+
|
240
|
+
throw $e;
|
241
|
+
}
|
242
|
+
|
243
|
+
$alternative = $alternatives[0];
|
244
|
+
|
245
|
+
$style = new SymfonyStyle($input, $output);
|
246
|
+
$style->block(sprintf("\nCommand \"%s\" is not defined.\n", $name), null, 'error');
|
247
|
+
if (!$style->confirm(sprintf('Do you want to run "%s" instead? ', $alternative), false)) {
|
248
|
+
if (null !== $this->dispatcher) {
|
249
|
+
$event = new ConsoleErrorEvent($input, $output, $e);
|
250
|
+
$this->dispatcher->dispatch(ConsoleEvents::ERROR, $event);
|
251
|
+
|
252
|
+
return $event->getExitCode();
|
253
|
+
}
|
254
|
+
|
255
|
+
return 1;
|
256
|
+
}
|
257
|
+
|
258
|
+
$command = $this->find($alternative);
|
259
|
+
}
|
260
|
+
|
261
|
+
$this->runningCommand = $command;
|
262
|
+
$exitCode = $this->doRunCommand($command, $input, $output);
|
263
|
+
$this->runningCommand = null;
|
264
|
+
|
265
|
+
return $exitCode;
|
266
|
+
}
|
267
|
+
|
268
|
+
public function setHelperSet(HelperSet $helperSet)
|
269
|
+
{
|
270
|
+
$this->helperSet = $helperSet;
|
271
|
+
}
|
272
|
+
|
273
|
+
/**
|
274
|
+
* Get the helper set associated with the command.
|
275
|
+
*
|
276
|
+
* @return HelperSet The HelperSet instance associated with this command
|
277
|
+
*/
|
278
|
+
public function getHelperSet()
|
279
|
+
{
|
280
|
+
if (!$this->helperSet) {
|
281
|
+
$this->helperSet = $this->getDefaultHelperSet();
|
282
|
+
}
|
283
|
+
|
284
|
+
return $this->helperSet;
|
285
|
+
}
|
286
|
+
|
287
|
+
public function setDefinition(InputDefinition $definition)
|
288
|
+
{
|
289
|
+
$this->definition = $definition;
|
290
|
+
}
|
291
|
+
|
292
|
+
/**
|
293
|
+
* Gets the InputDefinition related to this Application.
|
294
|
+
*
|
295
|
+
* @return InputDefinition The InputDefinition instance
|
296
|
+
*/
|
297
|
+
public function getDefinition()
|
298
|
+
{
|
299
|
+
if (!$this->definition) {
|
300
|
+
$this->definition = $this->getDefaultInputDefinition();
|
301
|
+
}
|
302
|
+
|
303
|
+
if ($this->singleCommand) {
|
304
|
+
$inputDefinition = $this->definition;
|
305
|
+
$inputDefinition->setArguments();
|
306
|
+
|
307
|
+
return $inputDefinition;
|
308
|
+
}
|
309
|
+
|
310
|
+
return $this->definition;
|
311
|
+
}
|
312
|
+
|
313
|
+
/**
|
314
|
+
* Gets the help message.
|
315
|
+
*
|
316
|
+
* @return string A help message
|
317
|
+
*/
|
318
|
+
public function getHelp()
|
319
|
+
{
|
320
|
+
return $this->getLongVersion();
|
321
|
+
}
|
322
|
+
|
323
|
+
/**
|
324
|
+
* Gets whether to catch exceptions or not during commands execution.
|
325
|
+
*
|
326
|
+
* @return bool Whether to catch exceptions or not during commands execution
|
327
|
+
*/
|
328
|
+
public function areExceptionsCaught()
|
329
|
+
{
|
330
|
+
return $this->catchExceptions;
|
331
|
+
}
|
332
|
+
|
333
|
+
/**
|
334
|
+
* Sets whether to catch exceptions or not during commands execution.
|
335
|
+
*
|
336
|
+
* @param bool $boolean Whether to catch exceptions or not during commands execution
|
337
|
+
*/
|
338
|
+
public function setCatchExceptions($boolean)
|
339
|
+
{
|
340
|
+
$this->catchExceptions = (bool) $boolean;
|
341
|
+
}
|
342
|
+
|
343
|
+
/**
|
344
|
+
* Gets whether to automatically exit after a command execution or not.
|
345
|
+
*
|
346
|
+
* @return bool Whether to automatically exit after a command execution or not
|
347
|
+
*/
|
348
|
+
public function isAutoExitEnabled()
|
349
|
+
{
|
350
|
+
return $this->autoExit;
|
351
|
+
}
|
352
|
+
|
353
|
+
/**
|
354
|
+
* Sets whether to automatically exit after a command execution or not.
|
355
|
+
*
|
356
|
+
* @param bool $boolean Whether to automatically exit after a command execution or not
|
357
|
+
*/
|
358
|
+
public function setAutoExit($boolean)
|
359
|
+
{
|
360
|
+
$this->autoExit = (bool) $boolean;
|
361
|
+
}
|
362
|
+
|
363
|
+
/**
|
364
|
+
* Gets the name of the application.
|
365
|
+
*
|
366
|
+
* @return string The application name
|
367
|
+
*/
|
368
|
+
public function getName()
|
369
|
+
{
|
370
|
+
return $this->name;
|
371
|
+
}
|
372
|
+
|
373
|
+
/**
|
374
|
+
* Sets the application name.
|
375
|
+
*
|
376
|
+
* @param string $name The application name
|
377
|
+
*/
|
378
|
+
public function setName($name)
|
379
|
+
{
|
380
|
+
$this->name = $name;
|
381
|
+
}
|
382
|
+
|
383
|
+
/**
|
384
|
+
* Gets the application version.
|
385
|
+
*
|
386
|
+
* @return string The application version
|
387
|
+
*/
|
388
|
+
public function getVersion()
|
389
|
+
{
|
390
|
+
return $this->version;
|
391
|
+
}
|
392
|
+
|
393
|
+
/**
|
394
|
+
* Sets the application version.
|
395
|
+
*
|
396
|
+
* @param string $version The application version
|
397
|
+
*/
|
398
|
+
public function setVersion($version)
|
399
|
+
{
|
400
|
+
$this->version = $version;
|
401
|
+
}
|
402
|
+
|
403
|
+
/**
|
404
|
+
* Returns the long version of the application.
|
405
|
+
*
|
406
|
+
* @return string The long application version
|
407
|
+
*/
|
408
|
+
public function getLongVersion()
|
409
|
+
{
|
410
|
+
if ('UNKNOWN' !== $this->getName()) {
|
411
|
+
if ('UNKNOWN' !== $this->getVersion()) {
|
412
|
+
return sprintf('%s <info>%s</info>', $this->getName(), $this->getVersion());
|
413
|
+
}
|
414
|
+
|
415
|
+
return $this->getName();
|
416
|
+
}
|
417
|
+
|
418
|
+
return 'Console Tool';
|
419
|
+
}
|
420
|
+
|
421
|
+
/**
|
422
|
+
* Registers a new command.
|
423
|
+
*
|
424
|
+
* @param string $name The command name
|
425
|
+
*
|
426
|
+
* @return Command The newly created command
|
427
|
+
*/
|
428
|
+
public function register($name)
|
429
|
+
{
|
430
|
+
return $this->add(new Command($name));
|
431
|
+
}
|
432
|
+
|
433
|
+
/**
|
434
|
+
* Adds an array of command objects.
|
435
|
+
*
|
436
|
+
* If a Command is not enabled it will not be added.
|
437
|
+
*
|
438
|
+
* @param Command[] $commands An array of commands
|
439
|
+
*/
|
440
|
+
public function addCommands(array $commands)
|
441
|
+
{
|
442
|
+
foreach ($commands as $command) {
|
443
|
+
$this->add($command);
|
444
|
+
}
|
445
|
+
}
|
446
|
+
|
447
|
+
/**
|
448
|
+
* Adds a command object.
|
449
|
+
*
|
450
|
+
* If a command with the same name already exists, it will be overridden.
|
451
|
+
* If the command is not enabled it will not be added.
|
452
|
+
*
|
453
|
+
* @return Command|null The registered command if enabled or null
|
454
|
+
*/
|
455
|
+
public function add(Command $command)
|
456
|
+
{
|
457
|
+
$this->init();
|
458
|
+
|
459
|
+
$command->setApplication($this);
|
460
|
+
|
461
|
+
if (!$command->isEnabled()) {
|
462
|
+
$command->setApplication(null);
|
463
|
+
|
464
|
+
return;
|
465
|
+
}
|
466
|
+
|
467
|
+
if (null === $command->getDefinition()) {
|
468
|
+
throw new LogicException(sprintf('Command class "%s" is not correctly initialized. You probably forgot to call the parent constructor.', \get_class($command)));
|
469
|
+
}
|
470
|
+
|
471
|
+
if (!$command->getName()) {
|
472
|
+
throw new LogicException(sprintf('The command defined in "%s" cannot have an empty name.', \get_class($command)));
|
473
|
+
}
|
474
|
+
|
475
|
+
$this->commands[$command->getName()] = $command;
|
476
|
+
|
477
|
+
foreach ($command->getAliases() as $alias) {
|
478
|
+
$this->commands[$alias] = $command;
|
479
|
+
}
|
480
|
+
|
481
|
+
return $command;
|
482
|
+
}
|
483
|
+
|
484
|
+
/**
|
485
|
+
* Returns a registered command by name or alias.
|
486
|
+
*
|
487
|
+
* @param string $name The command name or alias
|
488
|
+
*
|
489
|
+
* @return Command A Command object
|
490
|
+
*
|
491
|
+
* @throws CommandNotFoundException When given command name does not exist
|
492
|
+
*/
|
493
|
+
public function get($name)
|
494
|
+
{
|
495
|
+
$this->init();
|
496
|
+
|
497
|
+
if (!$this->has($name)) {
|
498
|
+
throw new CommandNotFoundException(sprintf('The command "%s" does not exist.', $name));
|
499
|
+
}
|
500
|
+
|
501
|
+
$command = $this->commands[$name];
|
502
|
+
|
503
|
+
if ($this->wantHelps) {
|
504
|
+
$this->wantHelps = false;
|
505
|
+
|
506
|
+
$helpCommand = $this->get('help');
|
507
|
+
$helpCommand->setCommand($command);
|
508
|
+
|
509
|
+
return $helpCommand;
|
510
|
+
}
|
511
|
+
|
512
|
+
return $command;
|
513
|
+
}
|
514
|
+
|
515
|
+
/**
|
516
|
+
* Returns true if the command exists, false otherwise.
|
517
|
+
*
|
518
|
+
* @param string $name The command name or alias
|
519
|
+
*
|
520
|
+
* @return bool true if the command exists, false otherwise
|
521
|
+
*/
|
522
|
+
public function has($name)
|
523
|
+
{
|
524
|
+
$this->init();
|
525
|
+
|
526
|
+
return isset($this->commands[$name]) || ($this->commandLoader && $this->commandLoader->has($name) && $this->add($this->commandLoader->get($name)));
|
527
|
+
}
|
528
|
+
|
529
|
+
/**
|
530
|
+
* Returns an array of all unique namespaces used by currently registered commands.
|
531
|
+
*
|
532
|
+
* It does not return the global namespace which always exists.
|
533
|
+
*
|
534
|
+
* @return string[] An array of namespaces
|
535
|
+
*/
|
536
|
+
public function getNamespaces()
|
537
|
+
{
|
538
|
+
$namespaces = array();
|
539
|
+
foreach ($this->all() as $command) {
|
540
|
+
$namespaces = array_merge($namespaces, $this->extractAllNamespaces($command->getName()));
|
541
|
+
|
542
|
+
foreach ($command->getAliases() as $alias) {
|
543
|
+
$namespaces = array_merge($namespaces, $this->extractAllNamespaces($alias));
|
544
|
+
}
|
545
|
+
}
|
546
|
+
|
547
|
+
return array_values(array_unique(array_filter($namespaces)));
|
548
|
+
}
|
549
|
+
|
550
|
+
/**
|
551
|
+
* Finds a registered namespace by a name or an abbreviation.
|
552
|
+
*
|
553
|
+
* @param string $namespace A namespace or abbreviation to search for
|
554
|
+
*
|
555
|
+
* @return string A registered namespace
|
556
|
+
*
|
557
|
+
* @throws NamespaceNotFoundException When namespace is incorrect or ambiguous
|
558
|
+
*/
|
559
|
+
public function findNamespace($namespace)
|
560
|
+
{
|
561
|
+
$allNamespaces = $this->getNamespaces();
|
562
|
+
$expr = preg_replace_callback('{([^:]+|)}', function ($matches) { return preg_quote($matches[1]).'[^:]*'; }, $namespace);
|
563
|
+
$namespaces = preg_grep('{^'.$expr.'}', $allNamespaces);
|
564
|
+
|
565
|
+
if (empty($namespaces)) {
|
566
|
+
$message = sprintf('There are no commands defined in the "%s" namespace.', $namespace);
|
567
|
+
|
568
|
+
if ($alternatives = $this->findAlternatives($namespace, $allNamespaces)) {
|
569
|
+
if (1 == \count($alternatives)) {
|
570
|
+
$message .= "\n\nDid you mean this?\n ";
|
571
|
+
} else {
|
572
|
+
$message .= "\n\nDid you mean one of these?\n ";
|
573
|
+
}
|
574
|
+
|
575
|
+
$message .= implode("\n ", $alternatives);
|
576
|
+
}
|
577
|
+
|
578
|
+
throw new NamespaceNotFoundException($message, $alternatives);
|
579
|
+
}
|
580
|
+
|
581
|
+
$exact = \in_array($namespace, $namespaces, true);
|
582
|
+
if (\count($namespaces) > 1 && !$exact) {
|
583
|
+
throw new NamespaceNotFoundException(sprintf("The namespace \"%s\" is ambiguous.\nDid you mean one of these?\n%s", $namespace, $this->getAbbreviationSuggestions(array_values($namespaces))), array_values($namespaces));
|
584
|
+
}
|
585
|
+
|
586
|
+
return $exact ? $namespace : reset($namespaces);
|
587
|
+
}
|
588
|
+
|
589
|
+
/**
|
590
|
+
* Finds a command by name or alias.
|
591
|
+
*
|
592
|
+
* Contrary to get, this command tries to find the best
|
593
|
+
* match if you give it an abbreviation of a name or alias.
|
594
|
+
*
|
595
|
+
* @param string $name A command name or a command alias
|
596
|
+
*
|
597
|
+
* @return Command A Command instance
|
598
|
+
*
|
599
|
+
* @throws CommandNotFoundException When command name is incorrect or ambiguous
|
600
|
+
*/
|
601
|
+
public function find($name)
|
602
|
+
{
|
603
|
+
$this->init();
|
604
|
+
|
605
|
+
$aliases = array();
|
606
|
+
$allCommands = $this->commandLoader ? array_merge($this->commandLoader->getNames(), array_keys($this->commands)) : array_keys($this->commands);
|
607
|
+
$expr = preg_replace_callback('{([^:]+|)}', function ($matches) { return preg_quote($matches[1]).'[^:]*'; }, $name);
|
608
|
+
$commands = preg_grep('{^'.$expr.'}', $allCommands);
|
609
|
+
|
610
|
+
if (empty($commands)) {
|
611
|
+
$commands = preg_grep('{^'.$expr.'}i', $allCommands);
|
612
|
+
}
|
613
|
+
|
614
|
+
// if no commands matched or we just matched namespaces
|
615
|
+
if (empty($commands) || \count(preg_grep('{^'.$expr.'$}i', $commands)) < 1) {
|
616
|
+
if (false !== $pos = strrpos($name, ':')) {
|
617
|
+
// check if a namespace exists and contains commands
|
618
|
+
$this->findNamespace(substr($name, 0, $pos));
|
619
|
+
}
|
620
|
+
|
621
|
+
$message = sprintf('Command "%s" is not defined.', $name);
|
622
|
+
|
623
|
+
if ($alternatives = $this->findAlternatives($name, $allCommands)) {
|
624
|
+
if (1 == \count($alternatives)) {
|
625
|
+
$message .= "\n\nDid you mean this?\n ";
|
626
|
+
} else {
|
627
|
+
$message .= "\n\nDid you mean one of these?\n ";
|
628
|
+
}
|
629
|
+
$message .= implode("\n ", $alternatives);
|
630
|
+
}
|
631
|
+
|
632
|
+
throw new CommandNotFoundException($message, $alternatives);
|
633
|
+
}
|
634
|
+
|
635
|
+
// filter out aliases for commands which are already on the list
|
636
|
+
if (\count($commands) > 1) {
|
637
|
+
$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $this->commands) : $this->commands;
|
638
|
+
$commands = array_unique(array_filter($commands, function ($nameOrAlias) use ($commandList, $commands, &$aliases) {
|
639
|
+
$commandName = $commandList[$nameOrAlias] instanceof Command ? $commandList[$nameOrAlias]->getName() : $nameOrAlias;
|
640
|
+
$aliases[$nameOrAlias] = $commandName;
|
641
|
+
|
642
|
+
return $commandName === $nameOrAlias || !\in_array($commandName, $commands);
|
643
|
+
}));
|
644
|
+
}
|
645
|
+
|
646
|
+
$exact = \in_array($name, $commands, true) || isset($aliases[$name]);
|
647
|
+
if (\count($commands) > 1 && !$exact) {
|
648
|
+
$usableWidth = $this->terminal->getWidth() - 10;
|
649
|
+
$abbrevs = array_values($commands);
|
650
|
+
$maxLen = 0;
|
651
|
+
foreach ($abbrevs as $abbrev) {
|
652
|
+
$maxLen = max(Helper::strlen($abbrev), $maxLen);
|
653
|
+
}
|
654
|
+
$abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen) {
|
655
|
+
if (!$commandList[$cmd] instanceof Command) {
|
656
|
+
return $cmd;
|
657
|
+
}
|
658
|
+
$abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
|
659
|
+
|
660
|
+
return Helper::strlen($abbrev) > $usableWidth ? Helper::substr($abbrev, 0, $usableWidth - 3).'...' : $abbrev;
|
661
|
+
}, array_values($commands));
|
662
|
+
$suggestions = $this->getAbbreviationSuggestions($abbrevs);
|
663
|
+
|
664
|
+
throw new CommandNotFoundException(sprintf("Command \"%s\" is ambiguous.\nDid you mean one of these?\n%s", $name, $suggestions), array_values($commands));
|
665
|
+
}
|
666
|
+
|
667
|
+
return $this->get($exact ? $name : reset($commands));
|
668
|
+
}
|
669
|
+
|
670
|
+
/**
|
671
|
+
* Gets the commands (registered in the given namespace if provided).
|
672
|
+
*
|
673
|
+
* The array keys are the full names and the values the command instances.
|
674
|
+
*
|
675
|
+
* @param string $namespace A namespace name
|
676
|
+
*
|
677
|
+
* @return Command[] An array of Command instances
|
678
|
+
*/
|
679
|
+
public function all($namespace = null)
|
680
|
+
{
|
681
|
+
$this->init();
|
682
|
+
|
683
|
+
if (null === $namespace) {
|
684
|
+
if (!$this->commandLoader) {
|
685
|
+
return $this->commands;
|
686
|
+
}
|
687
|
+
|
688
|
+
$commands = $this->commands;
|
689
|
+
foreach ($this->commandLoader->getNames() as $name) {
|
690
|
+
if (!isset($commands[$name]) && $this->has($name)) {
|
691
|
+
$commands[$name] = $this->get($name);
|
692
|
+
}
|
693
|
+
}
|
694
|
+
|
695
|
+
return $commands;
|
696
|
+
}
|
697
|
+
|
698
|
+
$commands = array();
|
699
|
+
foreach ($this->commands as $name => $command) {
|
700
|
+
if ($namespace === $this->extractNamespace($name, substr_count($namespace, ':') + 1)) {
|
701
|
+
$commands[$name] = $command;
|
702
|
+
}
|
703
|
+
}
|
704
|
+
|
705
|
+
if ($this->commandLoader) {
|
706
|
+
foreach ($this->commandLoader->getNames() as $name) {
|
707
|
+
if (!isset($commands[$name]) && $namespace === $this->extractNamespace($name, substr_count($namespace, ':') + 1) && $this->has($name)) {
|
708
|
+
$commands[$name] = $this->get($name);
|
709
|
+
}
|
710
|
+
}
|
711
|
+
}
|
712
|
+
|
713
|
+
return $commands;
|
714
|
+
}
|
715
|
+
|
716
|
+
/**
|
717
|
+
* Returns an array of possible abbreviations given a set of names.
|
718
|
+
*
|
719
|
+
* @param array $names An array of names
|
720
|
+
*
|
721
|
+
* @return array An array of abbreviations
|
722
|
+
*/
|
723
|
+
public static function getAbbreviations($names)
|
724
|
+
{
|
725
|
+
$abbrevs = array();
|
726
|
+
foreach ($names as $name) {
|
727
|
+
for ($len = \strlen($name); $len > 0; --$len) {
|
728
|
+
$abbrev = substr($name, 0, $len);
|
729
|
+
$abbrevs[$abbrev][] = $name;
|
730
|
+
}
|
731
|
+
}
|
732
|
+
|
733
|
+
return $abbrevs;
|
734
|
+
}
|
735
|
+
|
736
|
+
/**
|
737
|
+
* Renders a caught exception.
|
738
|
+
*/
|
739
|
+
public function renderException(\Exception $e, OutputInterface $output)
|
740
|
+
{
|
741
|
+
$output->writeln('', OutputInterface::VERBOSITY_QUIET);
|
742
|
+
|
743
|
+
$this->doRenderException($e, $output);
|
744
|
+
|
745
|
+
if (null !== $this->runningCommand) {
|
746
|
+
$output->writeln(sprintf('<info>%s</info>', sprintf($this->runningCommand->getSynopsis(), $this->getName())), OutputInterface::VERBOSITY_QUIET);
|
747
|
+
$output->writeln('', OutputInterface::VERBOSITY_QUIET);
|
748
|
+
}
|
749
|
+
}
|
750
|
+
|
751
|
+
protected function doRenderException(\Exception $e, OutputInterface $output)
|
752
|
+
{
|
753
|
+
do {
|
754
|
+
$message = trim($e->getMessage());
|
755
|
+
if ('' === $message || OutputInterface::VERBOSITY_VERBOSE <= $output->getVerbosity()) {
|
756
|
+
$class = \get_class($e);
|
757
|
+
$class = 'c' === $class[0] && 0 === strpos($class, "class@anonymous\0") ? get_parent_class($class).'@anonymous' : $class;
|
758
|
+
$title = sprintf(' [%s%s] ', $class, 0 !== ($code = $e->getCode()) ? ' ('.$code.')' : '');
|
759
|
+
$len = Helper::strlen($title);
|
760
|
+
} else {
|
761
|
+
$len = 0;
|
762
|
+
}
|
763
|
+
|
764
|
+
if (false !== strpos($message, "class@anonymous\0")) {
|
765
|
+
$message = preg_replace_callback('/class@anonymous\x00.*?\.php0x?[0-9a-fA-F]++/', function ($m) {
|
766
|
+
return \class_exists($m[0], false) ? get_parent_class($m[0]).'@anonymous' : $m[0];
|
767
|
+
}, $message);
|
768
|
+
}
|
769
|
+
|
770
|
+
$width = $this->terminal->getWidth() ? $this->terminal->getWidth() - 1 : PHP_INT_MAX;
|
771
|
+
$lines = array();
|
772
|
+
foreach ('' !== $message ? preg_split('/\r?\n/', $message) : array() as $line) {
|
773
|
+
foreach ($this->splitStringByWidth($line, $width - 4) as $line) {
|
774
|
+
// pre-format lines to get the right string length
|
775
|
+
$lineLength = Helper::strlen($line) + 4;
|
776
|
+
$lines[] = array($line, $lineLength);
|
777
|
+
|
778
|
+
$len = max($lineLength, $len);
|
779
|
+
}
|
780
|
+
}
|
781
|
+
|
782
|
+
$messages = array();
|
783
|
+
if (!$e instanceof ExceptionInterface || OutputInterface::VERBOSITY_VERBOSE <= $output->getVerbosity()) {
|
784
|
+
$messages[] = sprintf('<comment>%s</comment>', OutputFormatter::escape(sprintf('In %s line %s:', basename($e->getFile()) ?: 'n/a', $e->getLine() ?: 'n/a')));
|
785
|
+
}
|
786
|
+
$messages[] = $emptyLine = sprintf('<error>%s</error>', str_repeat(' ', $len));
|
787
|
+
if ('' === $message || OutputInterface::VERBOSITY_VERBOSE <= $output->getVerbosity()) {
|
788
|
+
$messages[] = sprintf('<error>%s%s</error>', $title, str_repeat(' ', max(0, $len - Helper::strlen($title))));
|
789
|
+
}
|
790
|
+
foreach ($lines as $line) {
|
791
|
+
$messages[] = sprintf('<error> %s %s</error>', OutputFormatter::escape($line[0]), str_repeat(' ', $len - $line[1]));
|
792
|
+
}
|
793
|
+
$messages[] = $emptyLine;
|
794
|
+
$messages[] = '';
|
795
|
+
|
796
|
+
$output->writeln($messages, OutputInterface::VERBOSITY_QUIET);
|
797
|
+
|
798
|
+
if (OutputInterface::VERBOSITY_VERBOSE <= $output->getVerbosity()) {
|
799
|
+
$output->writeln('<comment>Exception trace:</comment>', OutputInterface::VERBOSITY_QUIET);
|
800
|
+
|
801
|
+
// exception related properties
|
802
|
+
$trace = $e->getTrace();
|
803
|
+
|
804
|
+
array_unshift($trace, array(
|
805
|
+
'function' => '',
|
806
|
+
'file' => $e->getFile() ?: 'n/a',
|
807
|
+
'line' => $e->getLine() ?: 'n/a',
|
808
|
+
'args' => array(),
|
809
|
+
));
|
810
|
+
|
811
|
+
for ($i = 0, $count = \count($trace); $i < $count; ++$i) {
|
812
|
+
$class = isset($trace[$i]['class']) ? $trace[$i]['class'] : '';
|
813
|
+
$type = isset($trace[$i]['type']) ? $trace[$i]['type'] : '';
|
814
|
+
$function = $trace[$i]['function'];
|
815
|
+
$file = isset($trace[$i]['file']) ? $trace[$i]['file'] : 'n/a';
|
816
|
+
$line = isset($trace[$i]['line']) ? $trace[$i]['line'] : 'n/a';
|
817
|
+
|
818
|
+
$output->writeln(sprintf(' %s%s%s() at <info>%s:%s</info>', $class, $type, $function, $file, $line), OutputInterface::VERBOSITY_QUIET);
|
819
|
+
}
|
820
|
+
|
821
|
+
$output->writeln('', OutputInterface::VERBOSITY_QUIET);
|
822
|
+
}
|
823
|
+
} while ($e = $e->getPrevious());
|
824
|
+
}
|
825
|
+
|
826
|
+
/**
|
827
|
+
* Configures the input and output instances based on the user arguments and options.
|
828
|
+
*/
|
829
|
+
protected function configureIO(InputInterface $input, OutputInterface $output)
|
830
|
+
{
|
831
|
+
if (true === $input->hasParameterOption(array('--ansi'), true)) {
|
832
|
+
$output->setDecorated(true);
|
833
|
+
} elseif (true === $input->hasParameterOption(array('--no-ansi'), true)) {
|
834
|
+
$output->setDecorated(false);
|
835
|
+
}
|
836
|
+
|
837
|
+
if (true === $input->hasParameterOption(array('--no-interaction', '-n'), true)) {
|
838
|
+
$input->setInteractive(false);
|
839
|
+
} elseif (\function_exists('posix_isatty')) {
|
840
|
+
$inputStream = null;
|
841
|
+
|
842
|
+
if ($input instanceof StreamableInputInterface) {
|
843
|
+
$inputStream = $input->getStream();
|
844
|
+
}
|
845
|
+
|
846
|
+
if (!@posix_isatty($inputStream) && false === getenv('SHELL_INTERACTIVE')) {
|
847
|
+
$input->setInteractive(false);
|
848
|
+
}
|
849
|
+
}
|
850
|
+
|
851
|
+
switch ($shellVerbosity = (int) getenv('SHELL_VERBOSITY')) {
|
852
|
+
case -1: $output->setVerbosity(OutputInterface::VERBOSITY_QUIET); break;
|
853
|
+
case 1: $output->setVerbosity(OutputInterface::VERBOSITY_VERBOSE); break;
|
854
|
+
case 2: $output->setVerbosity(OutputInterface::VERBOSITY_VERY_VERBOSE); break;
|
855
|
+
case 3: $output->setVerbosity(OutputInterface::VERBOSITY_DEBUG); break;
|
856
|
+
default: $shellVerbosity = 0; break;
|
857
|
+
}
|
858
|
+
|
859
|
+
if (true === $input->hasParameterOption(array('--quiet', '-q'), true)) {
|
860
|
+
$output->setVerbosity(OutputInterface::VERBOSITY_QUIET);
|
861
|
+
$shellVerbosity = -1;
|
862
|
+
} else {
|
863
|
+
if ($input->hasParameterOption('-vvv', true) || $input->hasParameterOption('--verbose=3', true) || 3 === $input->getParameterOption('--verbose', false, true)) {
|
864
|
+
$output->setVerbosity(OutputInterface::VERBOSITY_DEBUG);
|
865
|
+
$shellVerbosity = 3;
|
866
|
+
} elseif ($input->hasParameterOption('-vv', true) || $input->hasParameterOption('--verbose=2', true) || 2 === $input->getParameterOption('--verbose', false, true)) {
|
867
|
+
$output->setVerbosity(OutputInterface::VERBOSITY_VERY_VERBOSE);
|
868
|
+
$shellVerbosity = 2;
|
869
|
+
} elseif ($input->hasParameterOption('-v', true) || $input->hasParameterOption('--verbose=1', true) || $input->hasParameterOption('--verbose', true) || $input->getParameterOption('--verbose', false, true)) {
|
870
|
+
$output->setVerbosity(OutputInterface::VERBOSITY_VERBOSE);
|
871
|
+
$shellVerbosity = 1;
|
872
|
+
}
|
873
|
+
}
|
874
|
+
|
875
|
+
if (-1 === $shellVerbosity) {
|
876
|
+
$input->setInteractive(false);
|
877
|
+
}
|
878
|
+
|
879
|
+
putenv('SHELL_VERBOSITY='.$shellVerbosity);
|
880
|
+
$_ENV['SHELL_VERBOSITY'] = $shellVerbosity;
|
881
|
+
$_SERVER['SHELL_VERBOSITY'] = $shellVerbosity;
|
882
|
+
}
|
883
|
+
|
884
|
+
/**
|
885
|
+
* Runs the current command.
|
886
|
+
*
|
887
|
+
* If an event dispatcher has been attached to the application,
|
888
|
+
* events are also dispatched during the life-cycle of the command.
|
889
|
+
*
|
890
|
+
* @return int 0 if everything went fine, or an error code
|
891
|
+
*/
|
892
|
+
protected function doRunCommand(Command $command, InputInterface $input, OutputInterface $output)
|
893
|
+
{
|
894
|
+
foreach ($command->getHelperSet() as $helper) {
|
895
|
+
if ($helper instanceof InputAwareInterface) {
|
896
|
+
$helper->setInput($input);
|
897
|
+
}
|
898
|
+
}
|
899
|
+
|
900
|
+
if (null === $this->dispatcher) {
|
901
|
+
return $command->run($input, $output);
|
902
|
+
}
|
903
|
+
|
904
|
+
// bind before the console.command event, so the listeners have access to input options/arguments
|
905
|
+
try {
|
906
|
+
$command->mergeApplicationDefinition();
|
907
|
+
$input->bind($command->getDefinition());
|
908
|
+
} catch (ExceptionInterface $e) {
|
909
|
+
// ignore invalid options/arguments for now, to allow the event listeners to customize the InputDefinition
|
910
|
+
}
|
911
|
+
|
912
|
+
$event = new ConsoleCommandEvent($command, $input, $output);
|
913
|
+
$e = null;
|
914
|
+
|
915
|
+
try {
|
916
|
+
$this->dispatcher->dispatch(ConsoleEvents::COMMAND, $event);
|
917
|
+
|
918
|
+
if ($event->commandShouldRun()) {
|
919
|
+
$exitCode = $command->run($input, $output);
|
920
|
+
} else {
|
921
|
+
$exitCode = ConsoleCommandEvent::RETURN_CODE_DISABLED;
|
922
|
+
}
|
923
|
+
} catch (\Throwable $e) {
|
924
|
+
$event = new ConsoleErrorEvent($input, $output, $e, $command);
|
925
|
+
$this->dispatcher->dispatch(ConsoleEvents::ERROR, $event);
|
926
|
+
$e = $event->getError();
|
927
|
+
|
928
|
+
if (0 === $exitCode = $event->getExitCode()) {
|
929
|
+
$e = null;
|
930
|
+
}
|
931
|
+
}
|
932
|
+
|
933
|
+
$event = new ConsoleTerminateEvent($command, $input, $output, $exitCode);
|
934
|
+
$this->dispatcher->dispatch(ConsoleEvents::TERMINATE, $event);
|
935
|
+
|
936
|
+
if (null !== $e) {
|
937
|
+
throw $e;
|
938
|
+
}
|
939
|
+
|
940
|
+
return $event->getExitCode();
|
941
|
+
}
|
942
|
+
|
943
|
+
/**
|
944
|
+
* Gets the name of the command based on input.
|
945
|
+
*
|
946
|
+
* @return string The command name
|
947
|
+
*/
|
948
|
+
protected function getCommandName(InputInterface $input)
|
949
|
+
{
|
950
|
+
return $this->singleCommand ? $this->defaultCommand : $input->getFirstArgument();
|
951
|
+
}
|
952
|
+
|
953
|
+
/**
|
954
|
+
* Gets the default input definition.
|
955
|
+
*
|
956
|
+
* @return InputDefinition An InputDefinition instance
|
957
|
+
*/
|
958
|
+
protected function getDefaultInputDefinition()
|
959
|
+
{
|
960
|
+
return new InputDefinition(array(
|
961
|
+
new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'),
|
962
|
+
|
963
|
+
new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message'),
|
964
|
+
new InputOption('--quiet', '-q', InputOption::VALUE_NONE, 'Do not output any message'),
|
965
|
+
new InputOption('--verbose', '-v|vv|vvv', InputOption::VALUE_NONE, 'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug'),
|
966
|
+
new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this application version'),
|
967
|
+
new InputOption('--ansi', '', InputOption::VALUE_NONE, 'Force ANSI output'),
|
968
|
+
new InputOption('--no-ansi', '', InputOption::VALUE_NONE, 'Disable ANSI output'),
|
969
|
+
new InputOption('--no-interaction', '-n', InputOption::VALUE_NONE, 'Do not ask any interactive question'),
|
970
|
+
));
|
971
|
+
}
|
972
|
+
|
973
|
+
/**
|
974
|
+
* Gets the default commands that should always be available.
|
975
|
+
*
|
976
|
+
* @return Command[] An array of default Command instances
|
977
|
+
*/
|
978
|
+
protected function getDefaultCommands()
|
979
|
+
{
|
980
|
+
return array(new HelpCommand(), new ListCommand());
|
981
|
+
}
|
982
|
+
|
983
|
+
/**
|
984
|
+
* Gets the default helper set with the helpers that should always be available.
|
985
|
+
*
|
986
|
+
* @return HelperSet A HelperSet instance
|
987
|
+
*/
|
988
|
+
protected function getDefaultHelperSet()
|
989
|
+
{
|
990
|
+
return new HelperSet(array(
|
991
|
+
new FormatterHelper(),
|
992
|
+
new DebugFormatterHelper(),
|
993
|
+
new ProcessHelper(),
|
994
|
+
new QuestionHelper(),
|
995
|
+
));
|
996
|
+
}
|
997
|
+
|
998
|
+
/**
|
999
|
+
* Returns abbreviated suggestions in string format.
|
1000
|
+
*
|
1001
|
+
* @param array $abbrevs Abbreviated suggestions to convert
|
1002
|
+
*
|
1003
|
+
* @return string A formatted string of abbreviated suggestions
|
1004
|
+
*/
|
1005
|
+
private function getAbbreviationSuggestions($abbrevs)
|
1006
|
+
{
|
1007
|
+
return ' '.implode("\n ", $abbrevs);
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
/**
|
1011
|
+
* Returns the namespace part of the command name.
|
1012
|
+
*
|
1013
|
+
* This method is not part of public API and should not be used directly.
|
1014
|
+
*
|
1015
|
+
* @param string $name The full name of the command
|
1016
|
+
* @param string $limit The maximum number of parts of the namespace
|
1017
|
+
*
|
1018
|
+
* @return string The namespace of the command
|
1019
|
+
*/
|
1020
|
+
public function extractNamespace($name, $limit = null)
|
1021
|
+
{
|
1022
|
+
$parts = explode(':', $name);
|
1023
|
+
array_pop($parts);
|
1024
|
+
|
1025
|
+
return implode(':', null === $limit ? $parts : \array_slice($parts, 0, $limit));
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
/**
|
1029
|
+
* Finds alternative of $name among $collection,
|
1030
|
+
* if nothing is found in $collection, try in $abbrevs.
|
1031
|
+
*
|
1032
|
+
* @param string $name The string
|
1033
|
+
* @param iterable $collection The collection
|
1034
|
+
*
|
1035
|
+
* @return string[] A sorted array of similar string
|
1036
|
+
*/
|
1037
|
+
private function findAlternatives($name, $collection)
|
1038
|
+
{
|
1039
|
+
$threshold = 1e3;
|
1040
|
+
$alternatives = array();
|
1041
|
+
|
1042
|
+
$collectionParts = array();
|
1043
|
+
foreach ($collection as $item) {
|
1044
|
+
$collectionParts[$item] = explode(':', $item);
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
foreach (explode(':', $name) as $i => $subname) {
|
1048
|
+
foreach ($collectionParts as $collectionName => $parts) {
|
1049
|
+
$exists = isset($alternatives[$collectionName]);
|
1050
|
+
if (!isset($parts[$i]) && $exists) {
|
1051
|
+
$alternatives[$collectionName] += $threshold;
|
1052
|
+
continue;
|
1053
|
+
} elseif (!isset($parts[$i])) {
|
1054
|
+
continue;
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
$lev = levenshtein($subname, $parts[$i]);
|
1058
|
+
if ($lev <= \strlen($subname) / 3 || '' !== $subname && false !== strpos($parts[$i], $subname)) {
|
1059
|
+
$alternatives[$collectionName] = $exists ? $alternatives[$collectionName] + $lev : $lev;
|
1060
|
+
} elseif ($exists) {
|
1061
|
+
$alternatives[$collectionName] += $threshold;
|
1062
|
+
}
|
1063
|
+
}
|
1064
|
+
}
|
1065
|
+
|
1066
|
+
foreach ($collection as $item) {
|
1067
|
+
$lev = levenshtein($name, $item);
|
1068
|
+
if ($lev <= \strlen($name) / 3 || false !== strpos($item, $name)) {
|
1069
|
+
$alternatives[$item] = isset($alternatives[$item]) ? $alternatives[$item] - $lev : $lev;
|
1070
|
+
}
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
$alternatives = array_filter($alternatives, function ($lev) use ($threshold) { return $lev < 2 * $threshold; });
|
1074
|
+
ksort($alternatives, SORT_NATURAL | SORT_FLAG_CASE);
|
1075
|
+
|
1076
|
+
return array_keys($alternatives);
|
1077
|
+
}
|
1078
|
+
|
1079
|
+
/**
|
1080
|
+
* Sets the default Command name.
|
1081
|
+
*
|
1082
|
+
* @param string $commandName The Command name
|
1083
|
+
* @param bool $isSingleCommand Set to true if there is only one command in this application
|
1084
|
+
*
|
1085
|
+
* @return self
|
1086
|
+
*/
|
1087
|
+
public function setDefaultCommand($commandName, $isSingleCommand = false)
|
1088
|
+
{
|
1089
|
+
$this->defaultCommand = $commandName;
|
1090
|
+
|
1091
|
+
if ($isSingleCommand) {
|
1092
|
+
// Ensure the command exist
|
1093
|
+
$this->find($commandName);
|
1094
|
+
|
1095
|
+
$this->singleCommand = true;
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
return $this;
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
/**
|
1102
|
+
* @internal
|
1103
|
+
*/
|
1104
|
+
public function isSingleCommand()
|
1105
|
+
{
|
1106
|
+
return $this->singleCommand;
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
private function splitStringByWidth($string, $width)
|
1110
|
+
{
|
1111
|
+
// str_split is not suitable for multi-byte characters, we should use preg_split to get char array properly.
|
1112
|
+
// additionally, array_slice() is not enough as some character has doubled width.
|
1113
|
+
// we need a function to split string not by character count but by string width
|
1114
|
+
if (false === $encoding = mb_detect_encoding($string, null, true)) {
|
1115
|
+
return str_split($string, $width);
|
1116
|
+
}
|
1117
|
+
|
1118
|
+
$utf8String = mb_convert_encoding($string, 'utf8', $encoding);
|
1119
|
+
$lines = array();
|
1120
|
+
$line = '';
|
1121
|
+
foreach (preg_split('//u', $utf8String) as $char) {
|
1122
|
+
// test if $char could be appended to current line
|
1123
|
+
if (mb_strwidth($line.$char, 'utf8') <= $width) {
|
1124
|
+
$line .= $char;
|
1125
|
+
continue;
|
1126
|
+
}
|
1127
|
+
// if not, push current line to array and make new line
|
1128
|
+
$lines[] = str_pad($line, $width);
|
1129
|
+
$line = $char;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
$lines[] = \count($lines) ? str_pad($line, $width) : $line;
|
1133
|
+
|
1134
|
+
mb_convert_variables($encoding, 'utf8', $lines);
|
1135
|
+
|
1136
|
+
return $lines;
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
/**
|
1140
|
+
* Returns all namespaces of the command name.
|
1141
|
+
*
|
1142
|
+
* @param string $name The full name of the command
|
1143
|
+
*
|
1144
|
+
* @return string[] The namespaces of the command
|
1145
|
+
*/
|
1146
|
+
private function extractAllNamespaces($name)
|
1147
|
+
{
|
1148
|
+
// -1 as third argument is needed to skip the command short name when exploding
|
1149
|
+
$parts = explode(':', $name, -1);
|
1150
|
+
$namespaces = array();
|
1151
|
+
|
1152
|
+
foreach ($parts as $part) {
|
1153
|
+
if (\count($namespaces)) {
|
1154
|
+
$namespaces[] = end($namespaces).':'.$part;
|
1155
|
+
} else {
|
1156
|
+
$namespaces[] = $part;
|
1157
|
+
}
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
return $namespaces;
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
private function init()
|
1164
|
+
{
|
1165
|
+
if ($this->initialized) {
|
1166
|
+
return;
|
1167
|
+
}
|
1168
|
+
$this->initialized = true;
|
1169
|
+
|
1170
|
+
foreach ($this->getDefaultCommands() as $command) {
|
1171
|
+
$this->add($command);
|
1172
|
+
}
|
1173
|
+
}
|
1174
|
+
}
|