From ed5686f8f0d6d4e0a0e0c0add7188c8a2942ded3 Mon Sep 17 00:00:00 2001 From: William Turrell Date: Thu, 29 Sep 2016 15:49:22 +0100 Subject: [PATCH] Em-dash to hyphen, clarify composer command --- _posts/04-02-01-Composer-and-Packagist.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/04-02-01-Composer-and-Packagist.md b/_posts/04-02-01-Composer-and-Packagist.md index 30bc63b..03f2a9e 100644 --- a/_posts/04-02-01-Composer-and-Packagist.md +++ b/_posts/04-02-01-Composer-and-Packagist.md @@ -18,7 +18,7 @@ The safest way to download composer is by [following the official instructions]( This will verify the installer is not corrupt or tampered with. The installer installs Composer *locally*, in your current working directory. -We recommend installing it *globally* (e.g. a single copy in /usr/local/bin) – to do so, run this afterwards: +We recommend installing it *globally* (e.g. a single copy in /usr/local/bin) - to do so, run this afterwards: {% highlight console %} mv composer.phar /usr/local/bin/composer @@ -26,7 +26,7 @@ mv composer.phar /usr/local/bin/composer **Note:** If the above fails due to permissions, prefix with `sudo`. -`composer.phar` is a PHP [binary archive](http://php.net/manual/en/intro.phar.php). Like any PHP application, you can [run these](http://php.net/manual/en/phar.using.intro.php) with `php`. +To run a locally installed Composer you'd use `php composer.phar`, globally it's simply `composer`. #### Installing on Windows