Skip to content

Commit 965a81e

Browse files
committed
Enable package auto-discovery for Laravel 5.5
1 parent ee07068 commit 965a81e

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All Notable changes to `Flash` will be documented in this file.
44

5+
## 1.1.0 (2017-06-04)
6+
7+
- Enable package auto-discovery for Laravel 5.5
8+
59
## 1.0.0 (2015-05-15)
610

711
- Version 1.0.0 of Flash for Laravel 5.

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,15 @@ This package is based on the original version of [Laracasts](https://github.com/
1515
- Provide an optional array of values to fill any placeholders on the localized message.
1616
- Enable or disable a `dismissible` option for alerts (defaults to `true`).
1717

18-
## Laravel 5 Installation
18+
## Laravel 5.5 Installation
19+
20+
Install this package through Composer:
21+
22+
composer require codezero/flash
23+
24+
The service provider and facade will be registered automatically.
25+
26+
## Laravel <= 5.4 Installation
1927

2028
Install this package through Composer:
2129

@@ -162,4 +170,4 @@ If you discover any security related issues, please [e-mail me](mailto:ivan@code
162170
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
163171

164172
---
165-
[![Analytics](https://ga-beacon.appspot.com/UA-58876018-1/codezero-be/flash)](https://github.com/igrigorik/ga-beacon)
173+
[![Analytics](https://ga-beacon.appspot.com/UA-58876018-1/codezero-be/flash)](https://github.com/igrigorik/ga-beacon)

composer.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,15 @@
3333
"src//helpers.php"
3434
]
3535
},
36+
"extra": {
37+
"laravel": {
38+
"providers": [
39+
"CodeZero\\Flash\\FlashServiceProvider"
40+
],
41+
"aliases": {
42+
"Flash": "CodeZero\\Flash\\Facade\\Flash"
43+
}
44+
}
45+
},
3646
"minimum-stability": "stable"
3747
}

0 commit comments

Comments
 (0)