Download the PHP package nassiry/flash-messages without Composer

On this page you can find all versions of the php package nassiry/flash-messages. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package flash-messages

# Flash Messages ![Tests](https://github.com/nassiry/flash-messages/actions/workflows/tests.yml/badge.svg) ![Packagist Downloads](https://img.shields.io/packagist/dt/nassiry/flash-messages) ![Packagist Version](https://img.shields.io/packagist/v/nassiry/flash-messages) ![PHP](https://img.shields.io/badge/PHP-%5E7.4-blue) ![License](https://img.shields.io/github/license/nassiry/flash-messages)

A lightweight PHP library for handling flash messages with session storage & simple HTML rendering. This package does not depend on any framework, but it can be integrated with frameworks like Laravel, Symfony, CakePHP, and CodeIgniter if needed.

Features

Table Of Contents

  1. Installation
  2. Usage
    • Default Usage (Display on Next Page Load)
    • Current Page Usage (Display Immediately)
    • Checking for Messages
    • Retrieving Messages
    • Rendering Messages
    • Clearing Messages
  3. Adding Different Types of Messages
    • Adding a custom type message
  4. Adding a custom type message
  5. Testing
    • Prerequisites
    • Running Tests
  6. License
  7. Contributing

Installation

The recommended way use Composer to install the package:

Usage

By default, the package stores messages in sessions to be displayed on the next page load.

1. Default Usage (Display on Next Page Load)

Note: Ensure that session_start(); has been called in your script before using.

2. Current Page Usage (Display Immediately)

To display a message on the current page, set the second argument to true (default is false):

3. Checking for Messages

You can check if there are any stored messages:

4. Retrieving Messages

You can retrieve all stored messages as an array:

5. Rendering Messages

Outputs all flash messages with default HTML structure

6. Clearing Messages

To clear all stored messages:

Adding Different Types of Messages

Currently, the package support following message types.

Custom Rendering Logic

If you need to customize the way messages are displayed, extend the FlashMessageRenderer class:

Testing

Run the unit tests to ensure the package works as expected:

1. Prerequisites

Ensure you have all dependencies installed by running:

2. Running Tests

Execute the following command to run the test suite:

License

This package is open-source software licensed under the MIT license.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request or open an issue.


All versions of flash-messages with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nassiry/flash-messages contains the following files

Loading the files please wait ....