anroots / notify
A simple Kohana 3 module designed to capture messages from different methods and modules to be displayed later with a unified look and feel.
Installs: 1 155
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 4
Open Issues: 0
Type:kohana-module
Requires
- php: >=5.4.0
- composer/installers: *
This package is not auto-updated.
Last update: 2022-02-01 12:22:13 UTC
README
Many Applications and Modules need to deliver messages to the user, and there is no uniformity on how that is done. This is where Notify comes in.
Notify is a simple Kohana 3 module designed to capture messages from different methods and modules to be displayed later with a unified look and feel.
Composer
The module can be installed using Composer. An example composer.json
file might look like this.
{ "require": { "anroots/notify":"2.*" } }
To download and install the module (you need to have Composer installed first):
$ composer install
Loading composer repositories with package information Updating dependencies - Installing anroots/notify (2.0) Downloading: 100% Writing lock file Generating autoload files
Requirements
- Kohana 3.3 (for PSR-0 compliance, rename class files to lowercase to use with Kohana 3.2 or enable the legacy autoloader in
bootstrap.php
) - PHP 5.4
Authors
The module was originally developed by Ricardo de Luna (https://github.com/kaltar/Notify). This is a fork of that work with some added / changed functionality.