├── Application.php ├── Attribute ├── Argument.php ├── AsCommand.php └── Option.php ├── CHANGELOG.md ├── CI └── GithubActionReporter.php ├── Color.php ├── Command ├── Command.php ├── CompleteCommand.php ├── DumpCompletionCommand.php ├── HelpCommand.php ├── InvokableCommand.php ├── LazyCommand.php ├── ListCommand.php ├── LockableTrait.php ├── SignalableCommandInterface.php └── TraceableCommand.php ├── CommandLoader ├── CommandLoaderInterface.php ├── ContainerCommandLoader.php └── FactoryCommandLoader.php ├── Completion ├── CompletionInput.php ├── CompletionSuggestions.php ├── Output │ ├── BashCompletionOutput.php │ ├── CompletionOutputInterface.php │ ├── FishCompletionOutput.php │ └── ZshCompletionOutput.php └── Suggestion.php ├── ConsoleEvents.php ├── Cursor.php ├── DataCollector └── CommandDataCollector.php ├── Debug └── CliRequest.php ├── DependencyInjection └── AddConsoleCommandPass.php ├── Descriptor ├── ApplicationDescription.php ├── Descriptor.php ├── DescriptorInterface.php ├── JsonDescriptor.php ├── MarkdownDescriptor.php ├── ReStructuredTextDescriptor.php ├── TextDescriptor.php └── XmlDescriptor.php ├── Event ├── ConsoleAlarmEvent.php ├── ConsoleCommandEvent.php ├── ConsoleErrorEvent.php ├── ConsoleEvent.php ├── ConsoleSignalEvent.php └── ConsoleTerminateEvent.php ├── EventListener └── ErrorListener.php ├── Exception ├── CommandNotFoundException.php ├── ExceptionInterface.php ├── InvalidArgumentException.php ├── InvalidOptionException.php ├── LogicException.php ├── MissingInputException.php ├── NamespaceNotFoundException.php ├── RunCommandFailedException.php └── RuntimeException.php ├── Formatter ├── NullOutputFormatter.php ├── NullOutputFormatterStyle.php ├── OutputFormatter.php ├── OutputFormatterInterface.php ├── OutputFormatterStyle.php ├── OutputFormatterStyleInterface.php ├── OutputFormatterStyleStack.php └── WrappableOutputFormatterInterface.php ├── Helper ├── DebugFormatterHelper.php ├── DescriptorHelper.php ├── Dumper.php ├── FormatterHelper.php ├── Helper.php ├── HelperInterface.php ├── HelperSet.php ├── InputAwareHelper.php ├── OutputWrapper.php ├── ProcessHelper.php ├── ProgressBar.php ├── ProgressIndicator.php ├── QuestionHelper.php ├── SymfonyQuestionHelper.php ├── Table.php ├── TableCell.php ├── TableCellStyle.php ├── TableRows.php ├── TableSeparator.php ├── TableStyle.php ├── TerminalInputHelper.php ├── TreeHelper.php ├── TreeNode.php └── TreeStyle.php ├── Input ├── ArgvInput.php ├── ArrayInput.php ├── Input.php ├── InputArgument.php ├── InputAwareInterface.php ├── InputDefinition.php ├── InputInterface.php ├── InputOption.php ├── StreamableInputInterface.php └── StringInput.php ├── LICENSE ├── Logger └── ConsoleLogger.php ├── Messenger ├── RunCommandContext.php ├── RunCommandMessage.php └── RunCommandMessageHandler.php ├── Output ├── AnsiColorMode.php ├── BufferedOutput.php ├── ConsoleOutput.php ├── ConsoleOutputInterface.php ├── ConsoleSectionOutput.php ├── NullOutput.php ├── Output.php ├── OutputInterface.php ├── StreamOutput.php └── TrimmedBufferOutput.php ├── Question ├── ChoiceQuestion.php ├── ConfirmationQuestion.php └── Question.php ├── README.md ├── Resources ├── bin │ └── hiddeninput.exe ├── completion.bash ├── completion.fish └── completion.zsh ├── SignalRegistry ├── SignalMap.php └── SignalRegistry.php ├── SingleCommandApplication.php ├── Style ├── OutputStyle.php ├── StyleInterface.php └── SymfonyStyle.php ├── Terminal.php ├── Tester ├── ApplicationTester.php ├── CommandCompletionTester.php ├── CommandTester.php ├── Constraint │ └── CommandIsSuccessful.php └── TesterTrait.php └── composer.json /Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Application.php -------------------------------------------------------------------------------- /Attribute/Argument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Attribute/Argument.php -------------------------------------------------------------------------------- /Attribute/AsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Attribute/AsCommand.php -------------------------------------------------------------------------------- /Attribute/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Attribute/Option.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CI/GithubActionReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/CI/GithubActionReporter.php -------------------------------------------------------------------------------- /Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Color.php -------------------------------------------------------------------------------- /Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/Command.php -------------------------------------------------------------------------------- /Command/CompleteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/CompleteCommand.php -------------------------------------------------------------------------------- /Command/DumpCompletionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/DumpCompletionCommand.php -------------------------------------------------------------------------------- /Command/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/HelpCommand.php -------------------------------------------------------------------------------- /Command/InvokableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/InvokableCommand.php -------------------------------------------------------------------------------- /Command/LazyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/LazyCommand.php -------------------------------------------------------------------------------- /Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/ListCommand.php -------------------------------------------------------------------------------- /Command/LockableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/LockableTrait.php -------------------------------------------------------------------------------- /Command/SignalableCommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/SignalableCommandInterface.php -------------------------------------------------------------------------------- /Command/TraceableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Command/TraceableCommand.php -------------------------------------------------------------------------------- /CommandLoader/CommandLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/CommandLoader/CommandLoaderInterface.php -------------------------------------------------------------------------------- /CommandLoader/ContainerCommandLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/CommandLoader/ContainerCommandLoader.php -------------------------------------------------------------------------------- /CommandLoader/FactoryCommandLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/CommandLoader/FactoryCommandLoader.php -------------------------------------------------------------------------------- /Completion/CompletionInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Completion/CompletionInput.php -------------------------------------------------------------------------------- /Completion/CompletionSuggestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Completion/CompletionSuggestions.php -------------------------------------------------------------------------------- /Completion/Output/BashCompletionOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Completion/Output/BashCompletionOutput.php -------------------------------------------------------------------------------- /Completion/Output/CompletionOutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Completion/Output/CompletionOutputInterface.php -------------------------------------------------------------------------------- /Completion/Output/FishCompletionOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Completion/Output/FishCompletionOutput.php -------------------------------------------------------------------------------- /Completion/Output/ZshCompletionOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Completion/Output/ZshCompletionOutput.php -------------------------------------------------------------------------------- /Completion/Suggestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Completion/Suggestion.php -------------------------------------------------------------------------------- /ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/ConsoleEvents.php -------------------------------------------------------------------------------- /Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Cursor.php -------------------------------------------------------------------------------- /DataCollector/CommandDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/DataCollector/CommandDataCollector.php -------------------------------------------------------------------------------- /Debug/CliRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Debug/CliRequest.php -------------------------------------------------------------------------------- /DependencyInjection/AddConsoleCommandPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/DependencyInjection/AddConsoleCommandPass.php -------------------------------------------------------------------------------- /Descriptor/ApplicationDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/ApplicationDescription.php -------------------------------------------------------------------------------- /Descriptor/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/Descriptor.php -------------------------------------------------------------------------------- /Descriptor/DescriptorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/DescriptorInterface.php -------------------------------------------------------------------------------- /Descriptor/JsonDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/JsonDescriptor.php -------------------------------------------------------------------------------- /Descriptor/MarkdownDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/MarkdownDescriptor.php -------------------------------------------------------------------------------- /Descriptor/ReStructuredTextDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/ReStructuredTextDescriptor.php -------------------------------------------------------------------------------- /Descriptor/TextDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/TextDescriptor.php -------------------------------------------------------------------------------- /Descriptor/XmlDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Descriptor/XmlDescriptor.php -------------------------------------------------------------------------------- /Event/ConsoleAlarmEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Event/ConsoleAlarmEvent.php -------------------------------------------------------------------------------- /Event/ConsoleCommandEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Event/ConsoleCommandEvent.php -------------------------------------------------------------------------------- /Event/ConsoleErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Event/ConsoleErrorEvent.php -------------------------------------------------------------------------------- /Event/ConsoleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Event/ConsoleEvent.php -------------------------------------------------------------------------------- /Event/ConsoleSignalEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Event/ConsoleSignalEvent.php -------------------------------------------------------------------------------- /Event/ConsoleTerminateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Event/ConsoleTerminateEvent.php -------------------------------------------------------------------------------- /EventListener/ErrorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/EventListener/ErrorListener.php -------------------------------------------------------------------------------- /Exception/CommandNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/CommandNotFoundException.php -------------------------------------------------------------------------------- /Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /Exception/InvalidOptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/InvalidOptionException.php -------------------------------------------------------------------------------- /Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/LogicException.php -------------------------------------------------------------------------------- /Exception/MissingInputException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/MissingInputException.php -------------------------------------------------------------------------------- /Exception/NamespaceNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/NamespaceNotFoundException.php -------------------------------------------------------------------------------- /Exception/RunCommandFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/RunCommandFailedException.php -------------------------------------------------------------------------------- /Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Exception/RuntimeException.php -------------------------------------------------------------------------------- /Formatter/NullOutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/NullOutputFormatter.php -------------------------------------------------------------------------------- /Formatter/NullOutputFormatterStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/NullOutputFormatterStyle.php -------------------------------------------------------------------------------- /Formatter/OutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/OutputFormatter.php -------------------------------------------------------------------------------- /Formatter/OutputFormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/OutputFormatterInterface.php -------------------------------------------------------------------------------- /Formatter/OutputFormatterStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/OutputFormatterStyle.php -------------------------------------------------------------------------------- /Formatter/OutputFormatterStyleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/OutputFormatterStyleInterface.php -------------------------------------------------------------------------------- /Formatter/OutputFormatterStyleStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/OutputFormatterStyleStack.php -------------------------------------------------------------------------------- /Formatter/WrappableOutputFormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Formatter/WrappableOutputFormatterInterface.php -------------------------------------------------------------------------------- /Helper/DebugFormatterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/DebugFormatterHelper.php -------------------------------------------------------------------------------- /Helper/DescriptorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/DescriptorHelper.php -------------------------------------------------------------------------------- /Helper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/Dumper.php -------------------------------------------------------------------------------- /Helper/FormatterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/FormatterHelper.php -------------------------------------------------------------------------------- /Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/Helper.php -------------------------------------------------------------------------------- /Helper/HelperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/HelperInterface.php -------------------------------------------------------------------------------- /Helper/HelperSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/HelperSet.php -------------------------------------------------------------------------------- /Helper/InputAwareHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/InputAwareHelper.php -------------------------------------------------------------------------------- /Helper/OutputWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/OutputWrapper.php -------------------------------------------------------------------------------- /Helper/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/ProcessHelper.php -------------------------------------------------------------------------------- /Helper/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/ProgressBar.php -------------------------------------------------------------------------------- /Helper/ProgressIndicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/ProgressIndicator.php -------------------------------------------------------------------------------- /Helper/QuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/QuestionHelper.php -------------------------------------------------------------------------------- /Helper/SymfonyQuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/SymfonyQuestionHelper.php -------------------------------------------------------------------------------- /Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/Table.php -------------------------------------------------------------------------------- /Helper/TableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TableCell.php -------------------------------------------------------------------------------- /Helper/TableCellStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TableCellStyle.php -------------------------------------------------------------------------------- /Helper/TableRows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TableRows.php -------------------------------------------------------------------------------- /Helper/TableSeparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TableSeparator.php -------------------------------------------------------------------------------- /Helper/TableStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TableStyle.php -------------------------------------------------------------------------------- /Helper/TerminalInputHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TerminalInputHelper.php -------------------------------------------------------------------------------- /Helper/TreeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TreeHelper.php -------------------------------------------------------------------------------- /Helper/TreeNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TreeNode.php -------------------------------------------------------------------------------- /Helper/TreeStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Helper/TreeStyle.php -------------------------------------------------------------------------------- /Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/ArgvInput.php -------------------------------------------------------------------------------- /Input/ArrayInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/ArrayInput.php -------------------------------------------------------------------------------- /Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/Input.php -------------------------------------------------------------------------------- /Input/InputArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/InputArgument.php -------------------------------------------------------------------------------- /Input/InputAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/InputAwareInterface.php -------------------------------------------------------------------------------- /Input/InputDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/InputDefinition.php -------------------------------------------------------------------------------- /Input/InputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/InputInterface.php -------------------------------------------------------------------------------- /Input/InputOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/InputOption.php -------------------------------------------------------------------------------- /Input/StreamableInputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/StreamableInputInterface.php -------------------------------------------------------------------------------- /Input/StringInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Input/StringInput.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/LICENSE -------------------------------------------------------------------------------- /Logger/ConsoleLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Logger/ConsoleLogger.php -------------------------------------------------------------------------------- /Messenger/RunCommandContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Messenger/RunCommandContext.php -------------------------------------------------------------------------------- /Messenger/RunCommandMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Messenger/RunCommandMessage.php -------------------------------------------------------------------------------- /Messenger/RunCommandMessageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Messenger/RunCommandMessageHandler.php -------------------------------------------------------------------------------- /Output/AnsiColorMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/AnsiColorMode.php -------------------------------------------------------------------------------- /Output/BufferedOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/BufferedOutput.php -------------------------------------------------------------------------------- /Output/ConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/ConsoleOutput.php -------------------------------------------------------------------------------- /Output/ConsoleOutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/ConsoleOutputInterface.php -------------------------------------------------------------------------------- /Output/ConsoleSectionOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/ConsoleSectionOutput.php -------------------------------------------------------------------------------- /Output/NullOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/NullOutput.php -------------------------------------------------------------------------------- /Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/Output.php -------------------------------------------------------------------------------- /Output/OutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/OutputInterface.php -------------------------------------------------------------------------------- /Output/StreamOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/StreamOutput.php -------------------------------------------------------------------------------- /Output/TrimmedBufferOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Output/TrimmedBufferOutput.php -------------------------------------------------------------------------------- /Question/ChoiceQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Question/ChoiceQuestion.php -------------------------------------------------------------------------------- /Question/ConfirmationQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Question/ConfirmationQuestion.php -------------------------------------------------------------------------------- /Question/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Question/Question.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/README.md -------------------------------------------------------------------------------- /Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /Resources/completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Resources/completion.bash -------------------------------------------------------------------------------- /Resources/completion.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Resources/completion.fish -------------------------------------------------------------------------------- /Resources/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Resources/completion.zsh -------------------------------------------------------------------------------- /SignalRegistry/SignalMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/SignalRegistry/SignalMap.php -------------------------------------------------------------------------------- /SignalRegistry/SignalRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/SignalRegistry/SignalRegistry.php -------------------------------------------------------------------------------- /SingleCommandApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/SingleCommandApplication.php -------------------------------------------------------------------------------- /Style/OutputStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Style/OutputStyle.php -------------------------------------------------------------------------------- /Style/StyleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Style/StyleInterface.php -------------------------------------------------------------------------------- /Style/SymfonyStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Style/SymfonyStyle.php -------------------------------------------------------------------------------- /Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Terminal.php -------------------------------------------------------------------------------- /Tester/ApplicationTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Tester/ApplicationTester.php -------------------------------------------------------------------------------- /Tester/CommandCompletionTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Tester/CommandCompletionTester.php -------------------------------------------------------------------------------- /Tester/CommandTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Tester/CommandTester.php -------------------------------------------------------------------------------- /Tester/Constraint/CommandIsSuccessful.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Tester/Constraint/CommandIsSuccessful.php -------------------------------------------------------------------------------- /Tester/TesterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/Tester/TesterTrait.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/console/HEAD/composer.json --------------------------------------------------------------------------------