php-flasher/flasher-notyf

PHPFlasher - A powerful & easy-to-use package for adding flash messages to Laravel or Symfony projects. Provides feedback to users, improves engagement & enhances user experience. Intuitive design for beginners & experienced developers. A reliable, flexible solution.

Maintainers

Package info

github.com/php-flasher/flasher-notyf

Homepage

Issues

pkg:composer/php-flasher/flasher-notyf

Fund package maintenance!

yoeunes

Statistics

Installs: 1 229 918

Dependents: 5

Suggesters: 0

Stars: 9

v2.5.0 2026-03-07 18:31 UTC

README

Latest Version Total Downloads License

Notyf adapter for PHPFlasher. Lightweight and modern toast notifications.

Requirements

  • PHP >= 8.2
  • PHPFlasher ^2.4.0

Installation

composer require php-flasher/flasher-notyf

Quick Start

// Basic usage
notyf('Operation completed successfully!', 'success');
notyf('An error occurred.', 'error');
notyf('Information message.', 'info');
notyf('Warning message.', 'warning');

// With options
notyf('Success message', 'success', [
    'duration' => 4000,
    'position' => [
        'x' => 'right',
        'y' => 'top',
    ],
]);

// Custom notification
notyf('Custom message', 'custom-type');

Features

  • Simple API: success(), error(), info(), warning(), flash()
  • Notyf Options: duration, position, ripple, id
  • Modern Design: Clean, minimal design with smooth animations
  • Type Safety: Full PHP type hints and PHPStan support
  • Helper Functions: Global notyf() helper for quick access

Available Methods

// Success notification
notyf($message, 'success', $options, $title);

// Error notification
notyf($message, 'error', $options, $title);

// Info notification
notyf($message, 'info', $options, $title);

// Warning notification
notyf($message, 'warning', $options, $title);

// Custom notification type
notyf($message, $type, $options, $title);

// With options
notyf($message, 'success', [
    'duration' => 4000,
    'position' => [
        'x' => 'right',
        'y' => 'top',
    ],
], $title);

Documentation

Complete documentation: php-flasher.io

License

MIT