Ubuntu Tutorial

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

Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes  • 359 words

Introduction

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

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. 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, 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 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

Dependencies

php-fig-link-util have the following dependencies:

References

Summary

In this tutorial we learn how to install php-fig-link-util package on Ubuntu using different package management tools: apt, apt-get and aptitude.

Follow us

We provides various tutorials about Ubuntu