blob: 1d456515f72648486142f18fb8d25b8a10341f14 (
plain)
1
2
3
4
5
6
7
8
|
//! ref: composer/src/Composer/Command/CompletionTrait.php
// TODO(cli-completion): CompletionTrait powered shell completion for command arguments and
// options. The PHP version exposes Closures that resolve to package names, types, etc. We do not
// port that surface yet — see TODO(cli-completion) markers in each command for the original
// suggestions.
pub trait CompletionTrait {}
|