Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vaibhavpandeyvpz/phlash
Package for flashing data now or later (in next request) for use in any micro/full-stack framework.
https://github.com/vaibhavpandeyvpz/phlash
notifications phlash php
Last synced: 4 days ago
JSON representation
Package for flashing data now or later (in next request) for use in any micro/full-stack framework.
- Host: GitHub
- URL: https://github.com/vaibhavpandeyvpz/phlash
- Owner: vaibhavpandeyvpz
- License: mit
- Created: 2016-04-10T13:00:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-06T07:23:28.000Z (over 3 years ago)
- Last Synced: 2024-05-03T03:53:19.140Z (6 months ago)
- Topics: notifications, phlash, php
- Language: PHP
- Homepage: http://vaibhavpandeyvpz.github.io/phlash
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vaibhavpandeyvpz/phlash
Package for flashing data now or later (in next request) for use with any micro/full-stack framework.[![Build status][build-status-image]][build-status-url]
[![Code Coverage][code-coverage-image]][code-coverage-url]
[![Latest Version][latest-version-image]][latest-version-url]
[![Downloads][downloads-image]][downloads-url]
[![PHP Version][php-version-image]][php-version-url]
[![License][license-image]](LICENSE)Install
-------
```bash
composer require vaibhavpandeyvpz/phlash
```Usage
-----```php
flashNow('messages', [
'Thank your for registering with us.' => 'success',
]);/**
* @desc These will be available in next request.
*/
$flash->flashLater('errors', [
'name' => ['This field is required.'],
]);/**
* @desc Get all (or by key) flashed data for the current + previous request.
*/
$messages = $flash->get() || $flash->get('messages');
```License
-------
See [LICENSE](LICENSE) file.[build-status-image]: https://img.shields.io/travis/vaibhavpandeyvpz/phlash.svg?style=flat-square
[build-status-url]: https://travis-ci.org/vaibhavpandeyvpz/phlash
[code-coverage-image]: https://img.shields.io/codecov/c/github/vaibhavpandeyvpz/phlash.svg?style=flat-square
[code-coverage-url]: https://codecov.io/gh/vaibhavpandeyvpz/phlash
[latest-version-image]: https://img.shields.io/github/release/vaibhavpandeyvpz/phlash.svg?style=flat-square
[latest-version-url]: https://github.com/vaibhavpandeyvpz/phlash/releases
[downloads-image]: https://img.shields.io/packagist/dt/vaibhavpandeyvpz/phlash.svg?style=flat-square
[downloads-url]: https://packagist.org/packages/vaibhavpandeyvpz/phlash
[php-version-image]: http://img.shields.io/badge/php-5.3+-8892be.svg?style=flat-square
[php-version-url]: https://packagist.org/packages/vaibhavpandeyvpz/phlash
[license-image]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square