Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Acquia CLI #67

Merged
merged 6 commits into from
Oct 24, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Enables shell autocompletion for tools based on the
Notably, the composer global bin directory needs to be in your path.
See https://getcomposer.org/doc/03-cli.md#global for instructions on how todo that.
* If you're using bash, you'll have to make sure [programmable completion functions](https://github.com/scop/bash-completion) are available. Linux distributions usually ship it and enable it by default. On Mac OSX, you can install it with brew (`brew install bash-completion`) and enable it by adding `source $(brew --prefix)/etc/bash_completion` at the end of your `.bashrc`.
* If you wish to use a Console-based tool with an entrypoint name something other than `console` (i.e. Composer), ensure it’s in the list of [supported tools](#supported-tools), or open a PR to add it to the list.
ktomk marked this conversation as resolved.
Show resolved Hide resolved

## Installation

Expand Down Expand Up @@ -103,10 +104,12 @@ A solution is to supply the `SHELL` environment variable as part of the `docker

## Supported tools

All tools using the Symfony Console component are supported,
here is a non-exhaustive list :
Any tool using the Symfony Console component and default `console` entrypoint is supported.
ktomk marked this conversation as resolved.
Show resolved Hide resolved

Additionally, the following tools with custom-named entrypoints are supported:

* composer
* [Acquia CLI (acli)](https://github.com/acquia/cli)
* php-cs-fixer
* behat
* phpspec
Expand Down