You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Collection of helpful classes to use when working on the command line (cli).
9
9
10
10
## Installation
11
11
12
-
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/php-cli-lib` or add `"pointybeard/php-cli-lib": "~1.0"` to your `composer.json` file.
12
+
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/php-cli-lib` or add `"pointybeard/php-cli-lib": "~1.1"` to your `composer.json` file.
13
13
14
14
And run composer to update your dependencies:
15
15
@@ -154,18 +154,10 @@ You can check that all code is passing by running the following command from the
If you want to run code coverage (e.g. `--coverage-html tests/reports/ ...`) you'll need an older version of xdebug (for PHP 5.6). To install this, use the following commands:
157
+
If you want to run code coverage (e.g. `--coverage-html tests/reports/ ...`) you'll to install xdebug:
158
158
159
159
pecl channel-update pecl.php.net
160
-
pecl install xdebug-2.5.5
161
-
162
-
You'll need enable `xdebug.so`. Try adding the following to `/etc/php/5.6/mods-available`
163
-
164
-
; configuration for php xdebug module
165
-
; priority=20
166
-
zend_extension=/usr/lib/php/20131226/xdebug.so
167
-
168
-
Then enable it with `phpenmod xdebug`. The above works on Ubuntu, however, paths might be different for other distros.
0 commit comments