How To Install php-illuminate-notifications on Kali Linux
Introduction
In this tutorial we learn how to install php-illuminate-notifications on Kali Linux.
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 Kali Linux. 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 updateAfter updating apt database, We can install php-illuminate-notifications using apt-get by running the following command:
sudo apt-get -y install php-illuminate-notificationsInstall php-illuminate-notifications Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install php-illuminate-notifications using apt by running the following command:
sudo apt -y install php-illuminate-notificationsInstall php-illuminate-notifications Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install php-illuminate-notifications using aptitude by running the following command:
sudo aptitude -y install php-illuminate-notificationsHow To Uninstall php-illuminate-notifications on Kali Linux
To uninstall only the php-illuminate-notifications package we can use the following command:
sudo apt-get remove php-illuminate-notificationsUninstall php-illuminate-notifications And Its Dependencies
To uninstall php-illuminate-notifications and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove php-illuminate-notificationsRemove php-illuminate-notifications Configurations and Data
To remove php-illuminate-notifications configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge php-illuminate-notificationsRemove 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-notificationsDependencies
php-illuminate-notifications have the following dependencies:
- php-common
- php-illuminate-broadcasting
- php-illuminate-broadcasting
- php-illuminate-bus
- php-illuminate-bus
- php-illuminate-container
- php-illuminate-container
- php-illuminate-contracts
- php-illuminate-contracts
- php-illuminate-filesystem
- php-illuminate-filesystem
- php-illuminate-mail
- php-illuminate-mail
- php-illuminate-queue
- php-illuminate-queue
- php-illuminate-support
- php-illuminate-support
References
Summary
In this tutorial we learn how to install php-illuminate-notifications package on Kali Linux using different package management tools: apt, apt-get and aptitude.