How to Install and Uninstall php-react-event-loop.noarch Package on Fedora 35

Last updated: September 24,2024

1. Install "php-react-event-loop.noarch" package

This guide let you learn how to install php-react-event-loop.noarch on Fedora 35

$ sudo dnf update $ sudo dnf install php-react-event-loop.noarch

2. Uninstall "php-react-event-loop.noarch" package

Here is a brief guide to show you how to uninstall php-react-event-loop.noarch on Fedora 35:

$ sudo dnf remove php-react-event-loop.noarch $ sudo dnf autoremove

3. Information about the php-react-event-loop.noarch package on Fedora 35

Last metadata expiration check: 5:09:08 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : php-react-event-loop
Version : 1.3.0
Release : 1.fc35.remi
Architecture : noarch
Size : 33 k
Source : php-react-event-loop-1.3.0-1.fc35.remi.src.rpm
Repository : remi
Summary : Event loop abstraction layer that libraries can use for evented I/O
URL : https://reactphp.org/event-loop/
License : MIT
Description : Event loop abstraction layer that libraries can use for evented I/O.
:
: In order for async based libraries to be interoperable, they need to use
: the same event loop. This component provides a common LoopInterface that
: any library can target. This allows them to be used in the same loop, with
: one single run call that is controlled by the user.
:
: In addition to the interface there are some implementations provided:
: * StreamSelectLoop: This is the only implementation which works out of the box
: with PHP. It does a simple select system call. It's not the most
: performant of loops, but still does the job quite well.
: * LibEventLoop: This uses the libevent pecl extension. libevent itself supports
: a number of system-specific backends (epoll, kqueue).
: * LibEvLoop: This uses the libev pecl extension (github). It supports the same
: backends as libevent.
: * ExtEventLoop: This uses the event pecl extension. It supports the same
: backends as libevent.
:
: All of the loops support these features:
: * File descriptor polling
: * One-off timers
: * Periodic timers
: * Deferred execution of callbacks
:
: Autoloader: /usr/share/php/React/EventLoop/autoload.php