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

Last updated: May 03,2024

1. Install "php-PhpCollection.noarch" package

Please follow the guidelines below to install php-PhpCollection.noarch on Fedora 36

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

2. Uninstall "php-PhpCollection.noarch" package

Please follow the guidelines below to uninstall php-PhpCollection.noarch on Fedora 36:

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

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

Last metadata expiration check: 3:17:10 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : php-PhpCollection
Version : 0.6.0
Release : 1.fc36.remi
Architecture : noarch
Size : 22 k
Source : php-PhpCollection-0.6.0-1.fc36.remi.src.rpm
Repository : remi
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