sarahman / lumen-flash-message
This package is meant for using the `laracasts/flash` package into the Lumen based projects.
Installs: 237
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sarahman/lumen-flash-message
Requires
- php: >=5.4.0
- illuminate/session: ~5.0|^6.0|^7.0|^8.0
- laracasts/flash: ^3.0
This package is auto-updated.
Last update: 2025-10-09 01:27:08 UTC
README
This composer package offers a Twitter Bootstrap optimized flash messaging setup for your Lumen applications.
This package is highly dependent on laracasts/flash
package created by Jeffrey Way.
Installation
- Begin by pulling in the package through Composer.
composer require sarahman/lumen-flash-message
-
Next, for Lumen, you need to create a config directory in the project root directory, copy the
session.php
from Laravel's config folder to the created config folder. -
Next, for Lumen, you need to register the Service Provider within your
bootstrap/app.php
file.
..... $app->register('Sarahman\Flash\FlashServiceProvider'); .....
For More Documentation
For more information about how to use this package, you can check laracasts/flash package link.
Done! Hope, you'll be able to see flash messages after using this package.