Skip to content
This repository was archived by the owner on Oct 21, 2019. It is now read-only.

Commit a356c33

Browse files
committed
Update readme
1 parent 689c222 commit a356c33

File tree

1 file changed

+30
-7
lines changed

1 file changed

+30
-7
lines changed

README.md

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,40 @@ available for some other editors.
1818
composer require genealabs/laravel-whoops-atom
1919
```
2020

21-
2. **This is only required for Laravel 5.4 or below:**
22-
Add the service provider entry in `config/app.php`:
23-
```php
24-
// 'providers' => [
25-
GeneaLabs\LaravelWhoopsAtom\Providers\Service::class,
26-
// ],
27-
```
21+
2. Install [Atom Protocol Handler](https://github.com/WizardOfOgz/atom-handler)
22+
as per the instructions provided there.
2823

2924
## Configuration
3025
```php
26+
/*
27+
|--------------------------------------------------------------------------
28+
| Local Sites Path
29+
|--------------------------------------------------------------------------
30+
|
31+
| Specify the local development folder that is synchronized with Homestead.
32+
| If you are not using Homestead, set this to an empty string or null.
33+
| This corresponds to the `-map:` line under `folders` in your
34+
| `Homestead.yaml` file.
35+
|
36+
| Default: ~/Code (string|null)
37+
|
38+
*/
39+
'local-sites-path' => '~/code',
3140

41+
/*
42+
|--------------------------------------------------------------------------
43+
| Homestead Sites Path
44+
|--------------------------------------------------------------------------
45+
|
46+
| Specify the base path where Homestead stores the synced folder with your
47+
| web sites. If you are not using Homestead, set this to an empty string
48+
| or null. This corresponds to the `to:` line under `folders` in
49+
| your `Homestead.yaml` file.
50+
|
51+
| Default: /home/vagrant/Code (string|null)
52+
|
53+
*/
54+
'homestead-sites-path' => '/home/vagrant/code',
3255
```
3356

3457
___Only publish the config file if you need to customize it___:

0 commit comments

Comments
 (0)