Skip to content

Commit 9ad5247

Browse files
committed
readme laravel version
1 parent 589257a commit 9ad5247

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<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>
33
<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>
44
# LaravelPrettyErrors
5-
Error formatter for Laravel 5. Provides a convenient display as HTML-page and in the browser console.
5+
Error formatter for Laravel 5.1 or later. Provides a convenient display as HTML-page and in the browser console.
66
Provides an enhanced view of the stack trace (viewing the contents of the arguments: **array**, **closure**, **resource**, **string**;
77
and view **PHPDoc** classes and methods). Provides the opportunity to configure custom pages **404** and **500**.
88

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

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

7676
The file may not be a template, but must return or print a string.

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
}
1616
],
1717
"require": {
18-
"php" : "^7.0"
18+
"php" : "^7.0",
19+
"laravel/framework": ">=5.1"
1920
},
2021
"autoload": {
2122
"psr-4": {

0 commit comments

Comments
 (0)