New in Symfony 5.4: Console Autocompletion

Symfony 5.4 and Symfony 6.0 will be released simultaneously at the end of November 2021. According to the Symfony release process, both versions will have the same features, but Symfony 6.0 won't include any deprecated features. This is the first article of the series that shows the most important new features introduced by Symfony 5.4 and 6.0 versions.

        Contributed by Wouter De Jong
         in #42251.

Symfony Console is one of the favorite Symfony Components and the most downloaded one if we exclude the Polyfill components (368 million downloads as of October 2021). It's packed with features and it has become the standard way of creating CLI applications in PHP. In Symfony 5.4 we've improved the Console component with the most important and most requested missing feature: autocompletion. When running a Symfony command you can now press the TAB key to see a list of contextual suggestions. In the following GIF, you can see how pressing the TAB key first shows the list of commands available. After typing secrets:remove, when you press TAB again it autocompletes the argument value with one of the valid secret names of the application:

Autocompletion not only will boost your productivity, but it will also prevent many typos and issues when passing options and arguments to commands. This feature works for Bash shell, but we intend to support other shells such as Zsh and Fish in the near future. Also, this is not limited to Symfony applications. The following GIF shows the autocompletion of options and arguments in a Laravel command:

Technically, autocompletion is enabled when your command class defines a complete() method. Inside this method you need to generate the appropriate suggestions for each input. For example, if your command defines an argument called format which only allows passing json and xml as its values, add this:

    1

2 3 4 5 6 7 8 9 10 11 12 13 14 15 use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Completion\CompletionInput; use Symfony\Component\Console\Completion\CompletionSuggestions;

class SomeCommand extends Command { // ...

public function complete(CompletionInput $input, CompletionSuggestions $suggestions): void
{
    if ($input->mustSuggestOptionValuesFor('format')) {
        $suggestions->suggestValues(['json', 'xml']);
    }
}

}

Usually, the suggestions will be dynamic, so you'll need to call some other methods and services to generate those values instead of passing an array of values to suggestValues(). During these past weeks, the Symfony community has worked on a colossal joint effort to add autocompletion for all internal Symfony commands. Here's the list of commands updated so far: help and list commands (PR 43596) debug:firewall, debug:form, debug:messenger, debug:router (PR 43598) cache:pool:clear, cache:pool:delete (PR 43621) secrets:set, secrets:remove (PR 43626) ulid:generate, uuid:generate (PR 43639) messenger:setup-transports (PR 43640) debug:translation (PR 43644) security:hash-password (PR 43653) translation:pull, translation:push (PR 43672) translation:update (PR 43676) lint:twig, lint:xliff, lint:yaml (PR 43680) config:dump-reference (PR 43682) server:dump (PR 43683) debug:twig (PR 43846)

                Sponsor the Symfony project.

http://feedproxy.google.com/~r/symfony/blog/~3/KwjmS_ZQirk/new-in-symfony-5-4-console-autocompletion

Created 3y | Nov 2, 2021, 10:20:08 AM


Login to add comment

Other posts in this group

Symfony 2024 Year in Review

This blog post highlights the key accomplishments of the Symfony project in 2024. We are grateful for your continuous support, which enabled the Symfony project to achieve a remarkable year.

Releases

Jan 7, 2025, 1:40:05 PM | Symfony
A Week of Symfony #940 (30 December 2024 - 5 January 2025)

This week, Symfony 6.4.17, 7.1.10 and 7.2.2 maintenance versions were released. In addition, we published more information about the upcoming SymfonyOnline January 2025 conference.

Symfony developmen

Jan 5, 2025, 10:30:12 AM | Symfony
SymfonyOnline January 2025: Join us in 2 weeks!

Get ready for the exciting SymfonyOnline January 2025, kicking off shortly on January 16-17! There’s still time to register and join the international online Symfony conference—along with pre-

Jan 2, 2025, 12:50:08 PM | Symfony
Symfony 6.4.17 released

Symfony 6.4.17 has just been released. Here is the list of the most important changes since 6.4.16:

bug #59304 [PropertyInfo] Remove @internal from PropertyReadInfo and PropertyWriteInfo (Dario G
Dec 31, 2024, 4:50:11 PM | Symfony
Symfony 7.1.10 released

Symfony 7.1.10 has just been released. Here is the list of the most important changes since 7.1.9:

bug #59304 [PropertyInfo] Remove @internal from PropertyReadInfo and PropertyWriteInfo (Dario Gu
Dec 31, 2024, 4:50:10 PM | Symfony
Symfony 7.2.2 released

Symfony 7.2.2 has just been released. Here is the list of the most important changes since 7.2.1:

bug #59304 [PropertyInfo] Remove @internal from PropertyReadInfo and PropertyWriteInfo (Dario Gua
Dec 31, 2024, 4:50:10 PM | Symfony
A Week of Symfony #939 (23-29 December 2024)

This week, we launched the new Twig playground, a tool that lets you test and experiment with Twig features in a safe, sandboxed environment. While Symfony development activity was lighter than usual

Dec 29, 2024, 11:30:09 AM | Symfony