How To Install php-fig-link-util on Ubuntu 20.04
Introduction
In this tutorial we learn how to install php-fig-link-util on Ubuntu 20.04.
What is php-fig-link-util
php-fig-link-util is:
PSR Http Link Utilities includes common utilities to assist with implementing PSR-13. Note that it is not intended as a complete PSR-13 implementation, only a partial implementation to make writing other implementations easier.
There are three methods to install php-fig-link-util on Ubuntu 20.04. 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-fig-link-util 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-fig-link-util using apt-get by running the following command:
sudo apt-get -y install php-fig-link-util
Install php-fig-link-util Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install php-fig-link-util using apt by running the following command:
sudo apt -y install php-fig-link-util
Install php-fig-link-util 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 Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install php-fig-link-util using aptitude by running the following command:
sudo aptitude -y install php-fig-link-util
How To Uninstall php-fig-link-util on Ubuntu 20.04
To uninstall only the php-fig-link-util package we can use the following command:
sudo apt-get remove php-fig-link-util
Uninstall php-fig-link-util And Its Dependencies
To uninstall php-fig-link-util and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove php-fig-link-util
Remove php-fig-link-util Configurations and Data
To remove php-fig-link-util configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge php-fig-link-util
Remove php-fig-link-util configuration, data, and all of its dependencies
We can use the following command to remove php-fig-link-util configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge php-fig-link-util
References
Summary
In this tutorial we learn how to install php-fig-link-util package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.