Skip to content

Commit

Permalink
flush and autodiscovery
Browse files Browse the repository at this point in the history
  • Loading branch information
tabacitu committed Feb 8, 2018
1 parent 979212d commit c4bef31
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to Prologue Alerts will be documented in this file. This file follows the *[Keep a CHANGELOG](http://keepachangelog.com/)* standards.


## [0.4.2] - 2018-02-12

### Added

- flush() method;
- Laravel package auto-discovery;


## [0.4.1] - 2017-01-24

### Added
Expand Down
12 changes: 11 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,15 @@
"Prologue\\Alerts\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Prologue\\Alerts\\AlertsServiceProvider"
],
"aliases": {
"Alert": "Prologue\\Alerts\\Facades\\Alert"
}
}
}
}
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Alerts is a package that handles global site messages in Laravel 5.

I first got the idea for creating this package after [a blog post](http://toddish.co.uk/blog/global-site-messages-in-laravel-4/) I read by [Todd Francis](http://toddish.co.uk/). This package uses much of the concepts of his blog post as well as the concept of alert levels which [Illuminate's Log package](https://github.com/illuminate/log) uses.

Maintained by [Cristian Tabacitu](tabacitu)
Maintained by [Cristian Tabacitu](tabacitu) thanks to its use in [Backpack for Laravel](http://backpackforlaravel.com/) (the most popular admin panel for Laravel).

## Table of Contents

Expand All @@ -32,7 +32,7 @@ You can install the package for your Laravel 5 project through Composer.
$ composer require prologue/alerts
```

Register the service provider in `app/config/app.php`.
For Laravel 5.4 and below, register the service provider in `app/config/app.php`.

```php
'Prologue\Alerts\AlertsServiceProvider',
Expand Down

0 comments on commit c4bef31

Please sign in to comment.