How to Install and Uninstall php-PhpCollection.noarch Package on Fedora 34

Last updated: October 04,2024

1. Install "php-PhpCollection.noarch" package

Please follow the guidance below to install php-PhpCollection.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install php-PhpCollection.noarch

2. Uninstall "php-PhpCollection.noarch" package

Here is a brief guide to show you how to uninstall php-PhpCollection.noarch on Fedora 34:

$ sudo dnf remove php-PhpCollection.noarch $ sudo dnf autoremove

3. Information about the php-PhpCollection.noarch package on Fedora 34

Last metadata expiration check: 4:39:23 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : php-PhpCollection
Version : 0.5.0
Release : 11.fc34
Architecture : noarch
Size : 23 k
Source : php-PhpCollection-0.5.0-11.fc34.src.rpm
Repository : fedora
Summary : General purpose collection library for PHP
URL : http://jmsyst.com/libs/php-collection
License : ASL 2.0
Description : This library adds basic collections for PHP.
:
: Collections can be seen as more specialized arrays for which certain contracts
: are guaranteed.
:
: Supported Collections:
: * Sequences
: ** Keys: numerical, consequentially increasing, no gaps
: ** Values: anything, duplicates allowed
: ** Classes: Sequence, SortedSequence
: * Maps
: ** Keys: strings or objects, duplicate keys not allowed
: ** Values: anything, duplicates allowed
: ** Classes: Map, ObjectMap (not yet implemented)
: * Sets (not yet implemented)
: ** Keys: not meaningful
: ** Values: anything, each value must be unique (===)
: ** Classes: Set
:
: General Characteristics:
: * Collections are mutable (new elements may be added, existing elements may be
: modified or removed). Specialized immutable versions may be added in the
: future though.
: * Equality comparison between elements are always performed using the shallow
: comparison operator (===).
: * Sorting algorithms are unstable, that means the order for equal elements is
: undefined (the default, and only PHP behavior).
:
: Autoloader: /usr/share/php/PhpCollection/autoload.php