Compare commits

..

5 Commits

Author SHA1 Message Date
KHOUBZA Younes 5af384ecc2 update README 2022-11-06 12:33:41 +01:00
KHOUBZA Younes 351b9c5ac3 use PHPFlasher instead of PHP Flasher 2022-10-29 18:51:51 +01:00
KHOUBZA Younes 5bc76179ce update laravel and php packs readme 2022-09-25 17:40:54 +01:00
KHOUBZA Younes d3a6280f56 update github sponsor button 2022-07-31 16:13:01 +01:00
KHOUBZA Younes abbf475553 Prepare v1.0 release
rename template adapter to flasher, and add title to base notification class

Wip
2022-05-16 08:18:15 +01:00
5 changed files with 103 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
github: yoeunes
+22
View File
@@ -0,0 +1,22 @@
name: Auto Closer PR
on:
pull_request_target:
types: [opened]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: superbrothers/close-pull-request@v3
with:
comment: |
Hi, thank you for your contribution.
Unfortunately, this repository is read-only. It's a split from our main monorepo repository.
We'd like to kindly ask you to move the contribution there - https://github.com/php-flasher/php-flasher.
We'll check it, review it and give you feed back right way.
Thank you.
+1 -1
View File
@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2020 PHP Flasher
Copyright (c) 2020 PHPFlasher
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
+76
View File
@@ -0,0 +1,76 @@
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/php-flasher/art/main/php-flasher-logo-dark.svg">
<img width="600" src="https://raw.githubusercontent.com/php-flasher/art/main/php-flasher-logo.svg" alt="PHPFlasher Logo">
</picture>
</p>
<p align="center">Flexible flash notifications system for PHP</p>
Flash messages are a great way to add some simple notifications to users of your website or application about important events that may have happened.
PHPFlasher gives a straightforward way to give feedback messages in the current or the next page to users with a flashing system.
The flashing system basically makes it possible to record a message and store it within the session so that it can be retrieved when needed.
## Official Documentation
Documentation for PHPFlasher can be found on the [PHPFlasher website](https://php-flasher.io).
<p align="center">
<a href="https://github.com/php-flasher/flasher">
<img src="https://img.shields.io/badge/source-php--flasher/flasher-blue.svg?style=flat-square">
</a>
<a href="https://github.com/php-flasher/flasher/releases">
<img src="https://img.shields.io/github/tag/php-flasher/flasher.svg">
</a>
<a href="https://github.com/php-flasher/flasher/blob/master/LICENSE">
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg">
</a>
<a href="https://packagist.org/packages/php-flasher/flasher">
<img src="https://img.shields.io/packagist/dt/php-flasher/flasher.svg">
</a>
<a href="https://packagist.org/packages/php-flasher/flasher">
<img src="https://img.shields.io/packagist/php-v/php-flasher/flasher.svg?style=flat-square">
</a>
</p>
# Why use PHPFlasher ?
The PHPFlasher project supports many notification libraries : [__toastr.js__](https://php-flasher.io/docs/adapter/toastr/), [__sweetalert 2__](https://php-flasher.io/docs/adapter/sweetalert/), [__pnotify__](https://php-flasher.io/docs/adapter/pnotify/), [__noty__](https://php-flasher.io/docs/adapter/noty/) and [__notyf__](https://php-flasher.io/docs/adapter/notyf/)
and its highly extendable so you can add your custom notifications.
This library is designed, so you can take full control when creating you notifications :
> * Show various notifications simultaneously
> * Render notification easily from javascript with small footprint
> * LTR and Dark-mode support
> * Limit the amount of displayed notifications
> * Show Desktop notifications for Linux, macOS and Windows
> * Framework-agnostic with implementations for: Symfony and Laravel
> * Autocomplete for PHPSTORM
> * You can always create an adapter yourself
> * ...and more
## Official Documentation
Documentation for PHPFlasher can be found on the [PHPFlasher website](https://php-flasher.io).
### Contact
PHPFlasher is being actively developed by <a href="https://github.com/yoeunes">yoeunes</a>. You can reach out with questions, bug reports, or feature requests
on any of the following:
- [Github Issues](https://github.com/php-flasher/flasher/issues)
- [Github](https://github.com/yoeunes)
- [Twitter](https://twitter.com/yoeunes)
- [Linkedin](https://www.linkedin.com/in/younes-khoubza/)
- [Email me directly](mailto:younes.khoubza@gmail.com)
## License
PHPFlasher is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
<p align="center"> <b>Made with ❤️ by <a href="https://www.linkedin.com/in/younes-khoubza/">Younes KHOUBZA</a> <b> </p>
+3 -3
View File
@@ -5,9 +5,9 @@
"license": "MIT",
"authors": [
{
"name": "KHOUBZA Younes",
"name": "Younes KHOUBZA",
"email": "younes.khoubza@gmail.com",
"homepage": "https://github.com/yoeunes",
"homepage": "https://www.linkedin.com/in/younes-khoubza",
"role": "Developer"
}
],
@@ -16,7 +16,7 @@
"php-flasher/flasher-noty": "*",
"php-flasher/flasher-notyf": "*",
"php-flasher/flasher-pnotify": "*",
"php-flasher/flasher-sweet-alert": "*",
"php-flasher/flasher-sweetalert": "*",
"php-flasher/flasher-toastr": "*"
}
}