phptrace
phptrace copied to clipboard
Installing with PECL does not install `phptrace` CLI
The documentation mentions that PECL is a way to install this, but doesn't mention that if you install the extension through PECL you still need to:
- Download the corresponding release from GitHub.
- Unpack the tarball.
- Run
phpize
from theextension/
folder to generate theMakefile
. - Run
make cli
to build the CLI binary. - Install the CLI with
sudo make install-cli
.
In some respects, this defeats the purpose of using PECL for the install.
@GuyPaddock adding these instructions to the README would be step in the right direction at least- keen to PR these changes?