Download the PHP package bramus/enumeration without Composer
On this page you can find all versions of the php package bramus/enumeration. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bramus/enumeration
More information about bramus/enumeration
Files in bramus/enumeration
Package enumeration
Short Description Yet Another Enumeration Implementation for PHP
License MIT
Informations about the package enumeration
bramus/enumeration
bramus/enumeration
is an Enumeration Implementation for PHP. It allows one to create both composed enumerations.
Built by Bram(us) Van Damme (https://www.bram.us) and Contributors
Prerequisites/Requirements
- PHP 7.2 or greater
Installation
Installation is possible using Composer
Usage
Singular Enumerations
Creating and Playing with Instances
Converting between values and identifiers
Listing values and identifiers
Checking values and identifiers
Composed Enumerations
It's also possible to have one Enumeration be composed of several other enumerations
@note: Whilst it is technically possible to re-use the same identifiers and values throughout the classes that make up the composed Enumeration, it is discouraged to do so.
Creating and Playing with Instances
Converting between values and identifiers
Listing values and identifiers
Checking values and identifiers
Default Values
If you want, you can define a default value to use. Define it as a constant named __DEFAULT
on your class and you're good to go:
The default will be used when no value is passed into the constructor:
This works both for both the Enumeration
and ComposedEnumeration
classes:
Summaries and Descriptions
When defining DocBlocks to go with your enumeration constants, you can get its summary and description using the getSummary()
and getDescription()
methods respectively.
Static methods to fetching these are also available. For each their only argument is a valid Enumeration value or a Bramus\Enumeration\Enumeration
instance:
It's also possible to get a list of all summaries/descriptions. An array with the Enum values as keys is returned
Comparing Values
To compare a Bramus\Enumeration\Enumeration
instance against a value, use $instance->equals()
Comparing Bramus\Enumeration\Enumeration
instances against other Bramus\Enumeration\Enumeration
is also possible
Utility Classes
bramus/enumeration
comes with 2 utility classes. Whilst you most likely don't need to use these directly, they might be of help:
\Bramus\Enumeration\Helpers\Extractor
This class extracts constants/identifiers/values from \Bramus\Enumeration\Enumeration
classes. It is used by \Bramus\Enumeration\Enumeration
internally.
\Bramus\Enumeration\Helpers\Generator
This class allows one to generate instances of \Bramus\Enumeration\Enumeration
classes. Given the example \Bramus\Http\StatusCodes\StatusCode
class from above, its usage might be something like this:
@note: In case the Enumeration
has no __DEFAULT
(e.g. it is NULL
), calling Generator::generate*
will return a random value for the Enumeration.
Testing
bramus/enumeration
ships with unit tests using PHPUnit ~8.0
.
- If PHPUnit is installed globally run
phpunit
to run the tests. - If PHPUnit is not installed globally, install it locally throuh composer by running
composer install --dev
. Run the tests themselves by calling./vendor/bin/phpunit
or using the composer scriptcomposer test
License
bramus/enumeration
is released under the MIT public license. See the enclosed LICENSE
for details.