How To Install php-pda-pheanstalk on Fedora 36

In this tutorial we learn how to install php-pda-pheanstalk in Fedora 36. php-pda-pheanstalk is PHP client for beanstalkd queue

Introduction

In this tutorial we learn how to install php-pda-pheanstalk on Fedora 36.

What is php-pda-pheanstalk

Pheanstalk is a pure PHP 5.3+ client for the beanstalkd workqueue [1]. It has been actively developed, and used in production by many, since late 2008. Created by Paul Annesley [2], Pheanstalk is rigorously unit tested and written using encapsulated, maintainable object oriented design. Community feedback, bug reports and patches has led to a stable 1.0 release in 2010, a 2.0 release in 2013, and a 3.0 release in 2014. Pheanstalk 3.0 introduces PHP namespaces, PSR-1 and PSR-2 coding standards, and PSR-4 autoloader standard. beanstalkd up to the latest version 1.4 is supported. All commands and responses specified in the protocol documentation for beanstalkd 1.3 are implemented. Autoloader [1] http [2] http

We can use yum or dnf to install php-pda-pheanstalk on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install php-pda-pheanstalk.

Install php-pda-pheanstalk on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install php-pda-pheanstalk using dnf by running the following command:

sudo dnf -y install php-pda-pheanstalk

Install php-pda-pheanstalk on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install php-pda-pheanstalk using yum by running the following command:

sudo yum -y install php-pda-pheanstalk

How To Uninstall php-pda-pheanstalk on Fedora 36

To uninstall only the php-pda-pheanstalk package we can use the following command:

sudo dnf remove php-pda-pheanstalk

php-pda-pheanstalk Package Contents on Fedora 36

/usr/share/doc/php-pda-pheanstalk
/usr/share/doc/php-pda-pheanstalk/README.md
/usr/share/doc/php-pda-pheanstalk/composer.json
/usr/share/licenses/php-pda-pheanstalk
/usr/share/licenses/php-pda-pheanstalk/LICENSE
/usr/share/php/Pheanstalk
/usr/share/php/Pheanstalk/Command
/usr/share/php/Pheanstalk/Command/AbstractCommand.php
/usr/share/php/Pheanstalk/Command/BuryCommand.php
/usr/share/php/Pheanstalk/Command/DeleteCommand.php
/usr/share/php/Pheanstalk/Command/IgnoreCommand.php
/usr/share/php/Pheanstalk/Command/JobCommand.php
/usr/share/php/Pheanstalk/Command/KickCommand.php
/usr/share/php/Pheanstalk/Command/KickJobCommand.php
/usr/share/php/Pheanstalk/Command/ListTubeUsedCommand.php
/usr/share/php/Pheanstalk/Command/ListTubesCommand.php
/usr/share/php/Pheanstalk/Command/ListTubesWatchedCommand.php
/usr/share/php/Pheanstalk/Command/PauseTubeCommand.php
/usr/share/php/Pheanstalk/Command/PeekCommand.php
/usr/share/php/Pheanstalk/Command/PeekJobCommand.php
/usr/share/php/Pheanstalk/Command/PutCommand.php
/usr/share/php/Pheanstalk/Command/ReleaseCommand.php
/usr/share/php/Pheanstalk/Command/ReserveCommand.php
/usr/share/php/Pheanstalk/Command/ReserveWithTimeoutCommand.php
/usr/share/php/Pheanstalk/Command/StatsCommand.php
/usr/share/php/Pheanstalk/Command/StatsJobCommand.php
/usr/share/php/Pheanstalk/Command/StatsTubeCommand.php
/usr/share/php/Pheanstalk/Command/TouchCommand.php
/usr/share/php/Pheanstalk/Command/TubeCommand.php
/usr/share/php/Pheanstalk/Command/UseCommand.php
/usr/share/php/Pheanstalk/Command/WatchCommand.php
/usr/share/php/Pheanstalk/Connection.php
/usr/share/php/Pheanstalk/Contract
/usr/share/php/Pheanstalk/Contract/CommandInterface.php
/usr/share/php/Pheanstalk/Contract/JobIdInterface.php
/usr/share/php/Pheanstalk/Contract/PheanstalkInterface.php
/usr/share/php/Pheanstalk/Contract/ResponseInterface.php
/usr/share/php/Pheanstalk/Contract/ResponseParserInterface.php
/usr/share/php/Pheanstalk/Contract/SocketFactoryInterface.php
/usr/share/php/Pheanstalk/Contract/SocketInterface.php
/usr/share/php/Pheanstalk/Exception
/usr/share/php/Pheanstalk/Exception.php
/usr/share/php/Pheanstalk/Exception/ClientException.php
/usr/share/php/Pheanstalk/Exception/CommandException.php
/usr/share/php/Pheanstalk/Exception/ConnectionException.php
/usr/share/php/Pheanstalk/Exception/DeadlineSoonException.php
/usr/share/php/Pheanstalk/Exception/ServerBadFormatException.php
/usr/share/php/Pheanstalk/Exception/ServerDrainingException.php
/usr/share/php/Pheanstalk/Exception/ServerException.php
/usr/share/php/Pheanstalk/Exception/ServerInternalErrorException.php
/usr/share/php/Pheanstalk/Exception/ServerOutOfMemoryException.php
/usr/share/php/Pheanstalk/Exception/ServerUnknownCommandException.php
/usr/share/php/Pheanstalk/Exception/SocketException.php
/usr/share/php/Pheanstalk/Job.php
/usr/share/php/Pheanstalk/JobId.php
/usr/share/php/Pheanstalk/Pheanstalk.php
/usr/share/php/Pheanstalk/Response
/usr/share/php/Pheanstalk/Response/ArrayResponse.php
/usr/share/php/Pheanstalk/Socket
/usr/share/php/Pheanstalk/Socket/FileSocket.php
/usr/share/php/Pheanstalk/Socket/FsockopenSocket.php
/usr/share/php/Pheanstalk/Socket/SocketSocket.php
/usr/share/php/Pheanstalk/Socket/StreamSocket.php
/usr/share/php/Pheanstalk/Socket/WriteHistory.php
/usr/share/php/Pheanstalk/SocketFactory.php
/usr/share/php/Pheanstalk/YamlResponseParser.php
/usr/share/php/Pheanstalk/autoload.php

References

Summary

In this tutorial we learn how to install php-pda-pheanstalk on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).