From 5280b47750daffef285133c9613f0086c899f0db Mon Sep 17 00:00:00 2001 From: Charles Peterson Date: Wed, 1 Feb 2017 02:59:19 -0600 Subject: [PATCH] readme spelling (#436) just a couple spelling fixes for the readme file. --- readme.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 55c9403..cebccb9 100644 --- a/readme.md +++ b/readme.md @@ -177,7 +177,7 @@ Pre-generated example: https://gist.github.com/barryvdh/bb6ffc5d11e0a75dba67 ## Lumen Install -This pacakges is focused on Laravel development, but it can also be used in Lumen with some workarounds. Because Lumen works a little different, as it is like a barebone version of Laravel and the main configuration parameters are instead located in `bootstrap/app.php`, some arreglements must be made. +This package is focused on Laravel development, but it can also be used in Lumen with some workarounds. Because Lumen works a little different, as it is like a barebone version of Laravel and the main configuration parameters are instead located in `bootstrap/app.php`, some alterations must be made. #### Enabling Facades @@ -205,8 +205,7 @@ if ($app->environment() !== 'production') { } ``` -After that, Laravel IDE Helper should work correctly. During the generation process, the script may throw exceptions saying that some Classes doesn't exist or there are some undefined indexes. This is normal, as Lumen has some default packages stripped away, like Cookies, Storage and Session. If you plan to add these packages, you will have to add them manually and create additional -Facades if needed. +After that, Laravel IDE Helper should work correctly. During the generation process, the script may throw exceptions saying that some Class(s) doesn't exist or there are some undefined indexes. This is normal, as Lumen has some default packages stripped away, like Cookies, Storage and Session. If you plan to add these packages, you will have to add them manually and create additional Facades if needed. #### Adding Additional Facades