gerob / alert
Alert is a package to be used with Laravel 4 API messages where you aren't passing a session through
dev-master
2014-07-09 20:45 UTC
Requires
- php: >=5.4.0
- illuminate/config: >=4.0.9,<4.3
- illuminate/support: >=4.0.9,<4.3
Requires (Dev)
- mockery/mockery: 0.7.2
This package is not auto-updated.
Last update: 2024-12-17 03:35:35 UTC
README
This is a package for returning messages when you aren't dealing with sessions. For example when you're using Laravel to return only API responses.
Installation
First install the package
composer require gerob/alert:dev-master
Then add the provider to app/config/app.php
'Gerob\Alert\AlertServiceProvider'
Finally add the alias to make it easier to use
'Alert' => 'Gerob\Alert\Facades\Alert'
Enjoy and feel free to make PR or open issues if you want to improve the package.