@@ -18,17 +18,40 @@ available for some other editors.
18
18
composer require genealabs/laravel-whoops-atom
19
19
```
20
20
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.
28
23
29
24
## Configuration
30
25
``` 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',
31
40
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',
32
55
```
33
56
34
57
___ Only publish the config file if you need to customize it___ :
0 commit comments