Run echo $PATH | grep "$(brew --prefix)/bin"
to make sure that the directory required for steward is included in your PATH
variable. The install script will download the stew
executable to this directory.
Steward does not manage your php extensions. You can install your php extension with pecl
. Pecl is included with php when installed through homebrew.
# Install xdebug in your *current* php versionpecl install xdebug# Uninstall xdebug in your *current* php versionpecl uninstall xdebug
Steward does not include any database services. You can install those with homebrew.
brew install mysql