summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsmir Mustafic <[email protected]>2018-11-23 09:43:21 +0100
committerAsmir Mustafic <[email protected]>2018-11-23 09:43:21 +0100
commit9b4b11aa188fd39f65f1786889ec76d53dd8d98f (patch)
tree670cf89e865b28eb23b4264dabd91f382a5afe83
parent1888e9e225a3568b66cf78101416e5ee7fa5801e (diff)
update composer install notes
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 8d89966..ebc3d71 100644
--- a/README.md
+++ b/README.md
@@ -24,21 +24,21 @@ HTML5 provides the following features.
Install HTML5-PHP using [composer](http://getcomposer.org/).
-To install, add `masterminds/html5` to your `composer.json` file:
+By adding the `masterminds/html5` dependency to your `composer.json` file:
```json
{
"require" : {
- "masterminds/html5": "2.*"
+ "masterminds/html5": "^2.0"
},
}
```
-(You may substitute `2.*` for a more specific release tag, of
-course.)
+By invoking require command via composer executable:
-From there, use the `composer install` or `composer update` commands to
-install.
+```bash
+composer require masterminds/html5
+```
## Basic Usage