How To Install php-fig-link-util on Ubuntu 20.04

In this tutorial we learn how to install php-fig-link-util on Ubuntu 20.04. php-fig-link-util is Common utility implementations for HTTP links

Introduction

In this tutorial we learn how to install php-fig-link-util on Ubuntu 20.04.

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.

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

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

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

To uninstall only the php-fig-link-util package we can use the following command:

sudo apt-get remove php-fig-link-util

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

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

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.