How To Install php-illuminate-mail on Kali Linux
Introduction
In this tutorial we learn how to install php-illuminate-mail
on Kali Linux.
What is php-illuminate-mail
php-illuminate-mail is:
The Illuminate Mail library component provides a unified API for sending e-mails through various local or cloud-based services. It currently supports drivers such as SMTP, PHP’s mail function, sendmail and several cloud services.
Illuminate is a collection of PHP library components developed primarily for the Laravel framework.
There are three methods to install php-illuminate-mail
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-mail 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-mail
using apt-get
by running the following command:
sudo apt-get -y install php-illuminate-mail
Install php-illuminate-mail Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install php-illuminate-mail
using apt
by running the following command:
sudo apt -y install php-illuminate-mail
Install php-illuminate-mail 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 update
After updating apt database, We can install php-illuminate-mail
using aptitude
by running the following command:
sudo aptitude -y install php-illuminate-mail
How To Uninstall php-illuminate-mail on Kali Linux
To uninstall only the php-illuminate-mail
package we can use the following command:
sudo apt-get remove php-illuminate-mail
Uninstall php-illuminate-mail And Its Dependencies
To uninstall php-illuminate-mail
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove php-illuminate-mail
Remove php-illuminate-mail Configurations and Data
To remove php-illuminate-mail
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge php-illuminate-mail
Remove php-illuminate-mail configuration, data, and all of its dependencies
We can use the following command to remove php-illuminate-mail
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge php-illuminate-mail
Dependencies
php-illuminate-mail have the following dependencies:
- php-common
- php-json
- php-illuminate-container
- php-illuminate-container
- php-illuminate-contracts
- php-illuminate-contracts
- php-illuminate-support
- php-illuminate-support
- php-league-commonmark
- php-league-commonmark
- php-psr-log
- php-psr-log
- php-swiftmailer
- php-swiftmailer
- php-tijsverkoyen-css-to-inline-styles
- php-tijsverkoyen-css-to-inline-styles
References
Summary
In this tutorial we learn how to install php-illuminate-mail
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.