Skip to content

Tags: stecman/symfony-console-completion

Tags

v0.15.0

Toggle v0.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #108 from W0rma/symfony8

Add support for symfony 8

v0.14.0

Toggle v0.14.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Require supported Symfony versions and adjust PHP requirement as…

… a follow up (#104)

Signed-off-by: Joas Schilling <coding@schilljs.com>

v0.13.0

Toggle v0.13.0's commit message
Bump dev alias to point to next release

v0.12.2

Toggle v0.12.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #96 from balsama/bump-sumfony-6.3

Bump min symfony/console version to 6.3

v0.12.1

Toggle v0.12.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #94 from rajeshreeputra/rajeshreeputra-patch-1

Update CompletionCommand.php to Add return type (broken with console >=6.3)

v0.12.0

Toggle v0.12.0's commit message
Merge branch 'asika32764-symfony6'

0.11.0

Toggle 0.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #88 from Chronoes/symfony-5.0

Add support for Symfony 5.0

0.10.1

Toggle 0.10.1's commit message
Fix command not set correctly when options precede the command name

The CompletionHandler code made an assumption that the command name
was always the second word on the command line:

    $ [program-name] [command-name] [...arguments and options]

This now searches for the first non-option-like word and stores its
index for other parts of CompletionHandler to test against.

The way ArrayInput is built in `CompletionHandler::getInput()` doesn't
align with how the docs for that class expect it to be used, so calling
`getFirstArgument()` was always returning the first value.

Fixes #83

0.10.0

Toggle 0.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #82 from stecman/string-arguments

Rewrite command-line splitting to tokenize quoted strings

0.9.0

Toggle 0.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #87 from stecman/conflicting-options

Prevent global/application options conflicting with CompletionCommand