Skip to content

Commit

Permalink
readme laravel version
Browse files Browse the repository at this point in the history
  • Loading branch information
peraleks committed Mar 31, 2017
1 parent 589257a commit 9ad5247
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -2,7 +2,7 @@
<a href="https://packagist.org/packages/peraleks/laravel-pretty-errors"><img src="https://poser.pugx.org/peraleks/laravel-pretty-errors/v/stable.svg" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/peraleks/laravel-pretty-errors"><img src="https://poser.pugx.org/peraleks/laravel-pretty-errors/license.svg" alt="License"></a>
# LaravelPrettyErrors
Error formatter for Laravel 5. Provides a convenient display as HTML-page and in the browser console.
Error formatter for Laravel 5.1 or later. Provides a convenient display as HTML-page and in the browser console.
Provides an enhanced view of the stack trace (viewing the contents of the arguments: **array**, **closure**, **resource**, **string**;
and view **PHPDoc** classes and methods). Provides the opportunity to configure custom pages **404** and **500**.

Expand Down Expand Up @@ -70,7 +70,7 @@ $production = [
'file404' => '', // [string] fully qualified file name or blade-template name
'file500' => '', // [string] fully qualified file name or blade-template name

/* For blade-template, name it as 'view.404' where '404' is the name for 404.blade.php .
/* For blade-template, write 'view.404' where '404' is the name for 404.blade.php .
You can use native PHP template. To do this, enter the fully qualified file name.

The file may not be a template, but must return or print a string.
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -15,7 +15,8 @@
}
],
"require": {
"php" : "^7.0"
"php" : "^7.0",
"laravel/framework": ">=5.1"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 9ad5247

Please sign in to comment.