fenos / notifynder
Management system of internal notifications for Laravel 5.*
Installs: 202 170
Dependents: 9
Suggesters: 0
Security: 0
Stars: 432
Watchers: 20
Forks: 86
Open Issues: 5
Requires
- php: >=5.5.0
- doctrine/dbal: ^2.5
- illuminate/support: ~5.0
Requires (Dev)
- codeclimate/php-test-reporter: ^0.3.2
- laracasts/testdummy: ~2.0
- laravel/framework: ~5.0
- orchestra/database: ~3.0|3.4.x-dev
- orchestra/testbench: ~3.0
- phpunit/phpunit: ~4.0|~5.0
- satooshi/php-coveralls: ^1.0
Suggests
- astrotomic/notifynder-sender-email: Allows to send notifications as email.
- astrotomic/notifynder-sender-messagebird: Allows to send notifications via MessageBird.
- astrotomic/notifynder-sender-nexmo: Allows to send notifications via Nexmo.
- astrotomic/notifynder-sender-redis: Allows to send notifications via Redis (Pub/Sub).
- astrotomic/notifynder-sender-slack: Allows to send notifications via Slack.
- astrotomic/notifynder-sender-twilio: Allows to send notifications via Twilio.
- dev-master
- 4.3.0
- 4.3.0-rc
- 4.2.1
- 4.2.1-rc
- 4.2.0
- 4.2.0-rc
- 4.1.0
- 4.1.0-rc
- 4.0.4
- 4.0.4-rc
- 4.0.3
- 4.0.3-rc
- 4.0.2
- 4.0.2-rc
- 4.0.1
- 4.0.0
- 4.0.0-rc
- 4.0.0-beta.6
- 4.0.0-beta.5
- 4.0.0-beta.4
- 4.0.0-beta.3
- 4.0.0-beta.2
- 4.0.0-beta.1
- 3.2.16
- 3.2.15
- 3.2.14
- 3.2.13
- 3.2.12.1
- 3.2.12
- 3.2.11
- 3.2.10
- 3.2.9
- 3.2.8
- 3.2.7
- 3.2.6
- 3.2.5
- 3.2.4
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.5.10
- 2.5.9
- 2.5.8
- 2.5.7
- 2.5.5
- 2.5.4
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 2.1.9
- 2.1.8
- 2.1.7
- 2.1.6
- 2.1.5
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.6.5
- 1.6.3
- 1.6.2
- 1.6.0
- 1.4.5
- 1.4.0
- 1.3.0
- dev-develop
- dev-laravel-4
- dev-version-3
This package is not auto-updated.
Last update: 2024-10-26 14:44:30 UTC
README
Notifynder is designed to manage notifications in a powerful and easy way. With the flexibility that Notifynder offer, It provide a complete API to work with your notifications, such as storing, retrieving, and organise your codebase to handle hundreds of notifications. You get started in a couple of minutes to "enable" notifications in your Laravel Project.
Compatible DBs: MySQL - PostgreSQL - SQLite
Documentation: Notifynder Docu
Installation
Step 1
Add it on your composer.json
"fenos/notifynder": "^4.0"
and run
composer update
or run
composer require fenos/notifynder
Step 2
Add the following string to config/app.php
Providers array:
Fenos\Notifynder\NotifynderServiceProvider::class,
Aliases array:
'Notifynder' => Fenos\Notifynder\Facades\Notifynder::class,
Step 3
Migration & Config
Publish the migration as well as the configuration of notifynder with the following command:
php artisan vendor:publish --provider="Fenos\Notifynder\NotifynderServiceProvider"
Run the migration
php artisan migrate
Senders
A list of official supported custom senders is in the Notifynder Doc.
We also have a collect issue for all additional senders we plan or already have.
If you want any more senders or want to provide your own please create an issue.
ToDo
Tasks we still have to do:
- add unittests for parser and models
- complete the new documentation
Versioning
Starting with v4.0.0
we are following the Semantic Versioning Standard.
Summary
Given a version number MAJOR
.MINOR
.PATCH
, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards-compatible manner, and
- PATCH version when you make backwards-compatible bug fixes.
Additional labels for pre-release (alpha
, beta
, rc
) are available as extensions to the MAJOR
.MINOR
.PATCH
format.
Contributors
Thanks for everyone who contributed to Notifynder and a special thanks for the most active contributors