Skip to content

Commit 6902b04

Browse files
Updated installation docs
1 parent b70f866 commit 6902b04

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,23 @@ Laravel Parse was created by, and is maintained by [Graham Campbell](https://git
1616

1717
## Installation
1818

19-
[PHP](https://php.net) 5.5+ or [HHVM](http://hhvm.com) 3.6+, and [Composer](https://getcomposer.org) are required.
19+
Either [PHP](https://php.net) 5.5+ or [HHVM](http://hhvm.com) 3.6+ are required.
2020

21-
To get the latest version of Laravel Parse, simply add the following line to the require block of your `composer.json` file:
21+
To get the latest version of Laravel Parse, simply require the project using [Composer](https://getcomposer.org):
2222

23-
```
24-
"graham-campbell/parse": "~2.3"
23+
```bash
24+
$ composer require graham-campbell/parse
2525
```
2626

27-
You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.
27+
Instead, you may of course manually update your require block and run `composer update` if you so choose:
28+
29+
```json
30+
{
31+
"require": {
32+
"graham-campbell/parse": "^3.0"
33+
}
34+
}
35+
```
2836

2937
Once Laravel Parse is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.
3038

0 commit comments

Comments
 (0)