Download the PHP package technovistalimited/notific without Composer

On this page you can find all versions of the php package technovistalimited/notific. 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 notific

🔔 Notific

Notific is a simple, and minimal, static notification system for Laravel. It stores notification data based on user_id, and fetch notifications for the user_id. It's not that feature rich.

The package has no UI, it just a database based cached data-driven mechanism of organized methods. You have to build you own UI.

GitHub release GitHub license Laravel package

License: GPL-2.0+
Requires: Laravel 5.8
Tested up to: Laravel 8.x
Developers: Mayeenul Islam, Nazmul Hasan


_________NOTICE_________
The package is developed for the organization's internal use only. If it helps you, that's why it's here. We might not support the package full throttle. But bug reports are welcome.

Table of Contents

Features

Features that are not present:

Installation

Step 1: Download & Setup

Open up the command console on the root of your app and run:

Providers array

Add the following string to the config/app.php under providers array:

Aliases array

Add the following line to the config/app.php under aliases array:

Step 2: Publish the Necessary files

Make the configuration and migration files ready first; in the command console, type and hit enter:

Step 3: Make tables ready

Open up the command console on the root of your app and run the migrations:

Configuration

Change configuration in config/notific.php.

Cache status

Set whether to use the cache or not, under 'cache' => ['is_cache']. Accepted value: true (enabled), false (disabled)
Default: true - enabled

Cache time

Change the time under 'cache' => ['cache_time']. Accepted value: any positive integer to denote seconds.
Default: 10 minutes

API: How to use

If you defined the helper class correctly, the package is easy to use:

Store notification

To store notification, simply place the following method where you want to plug it into. The method will also clear the cache for the user to update the notification history.

$userID : integer/array
User ID or array of user IDs to notify.

$message : string
The message with which you want to notify with.

$notificationType : string : (optional)
The notification type if you have any, other than notification.
default: 'notification'

$metaData : integer/string/array : (optional)
Whatever additional information you want to pass with. Whether pass them as integer, string or as an array.
default: empty

$createdBy : integer : (optional)
If you want to keep trace who issued the notification.
default: empty

Get notifications

Get the notifications by user ID.

$userID : integer
User ID for which to fetch the notifications.

$arguments : array : (optional)
Array of Query parameters. default: array() - fetch notifications based on default settings

$read_status : string
The notification read status. Accepts: 'all', 'read', 'unread'.
default: 'all'

$order : string
Designates ascending or descending order of notifications. Accepts 'ASC', 'DESC'.
default: 'DESC'

$orderby : string
Sort retrieved posts by parameter. Single option can be passed. Accepts any valid column name from db table.
_default: 'created_at'_

$paginate : boolean
Whether to enable pagination or not.
default: false - pagination DEactivated

$items_per_page : integer
Fetch the number of items. Accepts any positive integer.
default: -1 - fetch everything

Get notification count

Get the total count of notifications by user ID.

$userID : integer
User ID for which to fetch the notifications.

$status : string : (optional)
The notification read status. Accepts: 'all', 'read', 'unread'.
default: all - fetch all the notification count

Mark notification as read

Mark the notification as read when actually they are. You might need AJAX to mark them read on the fly.

$userID : integer
User ID to mark the notification as read for.

$notificationId : integer : (optional)
If you want to mark each of the notification as read, pass the notification ID
default: empty - mark all as read

Examples

01. Create a notification

With the following examples, a user with the ID 21 will be notified accordingly:

02. Get notifications

With the following examples, we're fetching the notifications assigned to a user with ID 21:

03. Get notification count

With the following examples, we're fetching the count of notifications assigned to a user with ID 21:

04. Mark notification as read

05. Maybe Unserialize

Adopted from WordPress, this function can detect whether to unserialize a string or not and serialize, if it's a serialized data. If you make custom methods, you might need to convert the serialized meta data back into array - this method will help you then.

Contributions

Any bug report is welcome. We might not support the package as you might require. But we will definitely try to fix the bugs as long as they meet our leisure.

If you want to contribute code, feel free to add Pull Request.

Uninstallation

Now, open up the command console, and type:

You are done!

Credits

All the credit goes to the almighty God first. Thanks to Mr. Amiya Kishore Saha who let both of us make our first Laravel package. Thanks to Mr. Kamrul Hasan for reviewing the progress and suggesting his ideas. And thanks to TechnoVista Limited for supporting the initiative. Thanks to Notifynder - a Laravel notification package available at Packagist from Fabrizio - we followed them to learn. Thanks to WordPress - a GPL licensed web framework - we took some of their code thankfully.


All versions of notific with dependencies

PHP Build Version
Package Version
No informations.
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 technovistalimited/notific contains the following files

Loading the files please wait ....