File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,23 @@ Laravel Parse was created by, and is maintained by [Graham Campbell](https://git
16
16
17
17
## Installation
18
18
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.
20
20
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 ) :
22
22
23
- ```
24
- " graham-campbell/parse": "~2.3"
23
+ ``` bash
24
+ $ composer require graham-campbell/parse
25
25
```
26
26
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
+ ```
28
36
29
37
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.
30
38
You can’t perform that action at this time.
0 commit comments