|
2 | 2 |
|
3 | 3 | [](https://packagist.org/packages/jeremykenedy/laravel-exception-notifier)
|
4 | 4 | [](https://packagist.org/packages/jeremykenedy/laravel-exception-notifier)
|
| 5 | +[](https://github.styleci.io/repos/91833181) |
5 | 6 | [](https://opensource.org/licenses/MIT)
|
6 | 7 |
|
7 |
| -## Introduction |
8 |
| -Laravel exception notifier will send an email of the error along with the stack trace to the chosen recipients. [This Package](https://packagist.org/packages/jeremykenedy/laravel-exception-notifier) includes all necessary traits, views, configs, and Mailers for email notifications upon your applications exceptions. You can customize who send to, cc to, bcc to, enable/disable, and custom subject or default subject based on environment. Built for Laravel 5.2, 5.3, 5.4, 5.5+. |
| 8 | +Table of contents: |
| 9 | +- [About](#about) |
| 10 | +- [Requirements](#requirements) |
| 11 | +- [Installation Instructions](#installation-instructions) |
| 12 | +- [Screenshots](#screenshots) |
| 13 | +- [File Tree](#file-tree) |
| 14 | +- [License](#license) |
| 15 | + |
| 16 | +## About |
| 17 | +Laravel exception notifier will send an email of the error along with the stack trace to the chosen recipients. [This Package](https://packagist.org/packages/jeremykenedy/laravel-exception-notifier) includes all necessary traits, views, configs, and Mailers for email notifications upon your applications exceptions. You can customize who send to, cc to, bcc to, enable/disable, and custom subject or default subject based on environment. Built for Laravel 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, and 5.8+. |
9 | 18 |
|
10 | 19 | Get the errors and fix them before the client even reports them, that's why this exists!
|
11 | 20 |
|
12 | 21 | ## Requirements
|
13 |
| -* [Laravel 5.2, 5.3, 5.4, or 5.5+](https://laravel.com/docs/installation) |
| 22 | +* [Laravel 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8+](https://laravel.com/docs/installation) |
14 | 23 |
|
15 |
| -## Installation |
| 24 | +## Installation Instructions |
16 | 25 | 1. From your projects root folder in terminal run:
|
17 | 26 |
|
18 | 27 | ```
|
@@ -109,17 +118,41 @@ Register the package with laravel in `config/app.php` under `providers` with the
|
109 | 118 |
|
110 | 119 | ```
|
111 | 120 | EMAIL_EXCEPTION_ENABLED=false
|
112 |
| - EMAIL_EXCEPTION_FROM=email@email.com |
| 121 | + EMAIL_EXCEPTION_FROM='email@email.com' |
113 | 122 | EMAIL_EXCEPTION_TO='email1@gmail.com, email2@gmail.com'
|
114 | 123 | EMAIL_EXCEPTION_CC=''
|
115 | 124 | EMAIL_EXCEPTION_BCC=''
|
116 | 125 | EMAIL_EXCEPTION_SUBJECT=''
|
117 | 126 | ```
|
118 | 127 |
|
119 | 128 | ## Screenshots
|
120 |
| -
|
121 | 129 | 
|
122 | 130 |
|
123 |
| -## License |
| 131 | +## File Tree |
| 132 | +``` |
| 133 | +└── laravel-exception-notifier |
| 134 | + ├── .gitignore |
| 135 | + ├── LICENSE |
| 136 | + ├── composer.json |
| 137 | + ├── readme.md |
| 138 | + └── src |
| 139 | + ├── .env.example |
| 140 | + ├── App |
| 141 | + │ ├── Mail |
| 142 | + │ │ └── ExceptionOccured.php |
| 143 | + │ └── Traits |
| 144 | + │ └── ExceptionNotificationHandlerTrait.php |
| 145 | + ├── LaravelExceptionNotifier.php |
| 146 | + ├── config |
| 147 | + │ └── exceptions.php |
| 148 | + └── resources |
| 149 | + └── views |
| 150 | + └── emails |
| 151 | + └── exception.blade.php |
| 152 | +``` |
| 153 | +
|
| 154 | +* Tree command can be installed using brew: `brew install tree` |
| 155 | +* File tree generated using command `tree -a -I '.git|node_modules|vendor|storage|tests'` |
124 | 156 |
|
| 157 | +## License |
125 | 158 | Laravel-Exception-Notifier | A Laravel Exceptions Email Notification Package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)
|
0 commit comments