How To Install php-illuminate-auth on Kali Linux
Introduction
In this tutorial we learn how to install php-illuminate-auth on Kali Linux.
What is php-illuminate-auth
php-illuminate-auth is:
The Illuminate Auth library component provides user authentication and authorization features for PHP applications.
Illuminate is a collection of PHP library components developed primarily for the Laravel framework.
There are three methods to install php-illuminate-auth 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-auth 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-auth using apt-get by running the following command:
sudo apt-get -y install php-illuminate-authInstall php-illuminate-auth Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install php-illuminate-auth using apt by running the following command:
sudo apt -y install php-illuminate-authInstall php-illuminate-auth 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-auth using aptitude by running the following command:
sudo aptitude -y install php-illuminate-authHow To Uninstall php-illuminate-auth on Kali Linux
To uninstall only the php-illuminate-auth package we can use the following command:
sudo apt-get remove php-illuminate-authUninstall php-illuminate-auth And Its Dependencies
To uninstall php-illuminate-auth and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove php-illuminate-authRemove php-illuminate-auth Configurations and Data
To remove php-illuminate-auth configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge php-illuminate-authRemove php-illuminate-auth configuration, data, and all of its dependencies
We can use the following command to remove php-illuminate-auth configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge php-illuminate-authDependencies
php-illuminate-auth have the following dependencies:
- php-common
- php-illuminate-contracts
- php-illuminate-contracts
- php-illuminate-http
- php-illuminate-http
- php-illuminate-queue
- php-illuminate-queue
- php-illuminate-support
- php-illuminate-support
References
Summary
In this tutorial we learn how to install php-illuminate-auth package on Kali Linux using different package management tools: apt, apt-get and aptitude.