How To Install php-illuminate-notifications on Debian 11

In this tutorial we learn how to install php-illuminate-notifications on Debian 11. php-illuminate-notifications is Illuminate Notifications library component for PHP

Introduction

In this tutorial we learn how to install php-illuminate-notifications on Debian 11.

What is php-illuminate-notifications

php-illuminate-notifications is:

The Illuminate Notifications library component provides support for sending notifications across a variety of delivery channels, including mail, SMS and Slack. Notifications may also be stored in a database.

Illuminate is a collection of PHP library components developed primarily for the Laravel framework.

There are three methods to install php-illuminate-notifications on Debian 11. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install php-illuminate-notifications Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install php-illuminate-notifications using apt-get by running the following command:

sudo apt-get -y install php-illuminate-notifications

Install php-illuminate-notifications Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install php-illuminate-notifications using apt by running the following command:

sudo apt -y install php-illuminate-notifications

Install php-illuminate-notifications Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install php-illuminate-notifications using aptitude by running the following command:

sudo aptitude -y install php-illuminate-notifications

How To Uninstall php-illuminate-notifications on Debian 11

To uninstall only the php-illuminate-notifications package we can use the following command:

sudo apt-get remove php-illuminate-notifications

Uninstall php-illuminate-notifications And Its Dependencies

To uninstall php-illuminate-notifications and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove php-illuminate-notifications

Remove php-illuminate-notifications Configurations and Data

To remove php-illuminate-notifications configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge php-illuminate-notifications

Remove php-illuminate-notifications configuration, data, and all of its dependencies

We can use the following command to remove php-illuminate-notifications configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge php-illuminate-notifications

Dependencies

php-illuminate-notifications have the following dependencies:

References

Summary

In this tutorial we learn how to install php-illuminate-notifications package on Debian 11 using different package management tools: apt, apt-get and aptitude.