Download the PHP package cerbero/enum without Composer

On this page you can find all versions of the php package cerbero/enum. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package enum

๐ŸŽฒ Enum

Author PHP Version Build Status Coverage Status Quality Score Latest Version PSR-12 Total Downloads

Zero-dependencies PHP library to supercharge enum functionalities. Similar libraries worth mentioning are:

๐Ÿ“ฆ Install

Via Composer:

๐Ÿ”ฎ Usage

To supercharge our enums with all functionalities provided by this package, we can simply use the Enumerates trait in both pure enums and backed enums:

Classification

These methods determine whether an enum is pure or backed:

Comparison

We can check whether an enum includes some names or values. Pure enums check for names, whilst backed enums check for values:

Otherwise we can let cases determine whether they match with a name or a value:

Comparisons can also be performed within arrays:

Keys resolution

With the term "key" we refer to any element defined in an enum, such as names, values or methods implemented by cases. Take the following enum for example:

The keys defined in this enum are name, value (as it is a backed enum), color and isOdd. We can retrieve any key assigned to a case by calling get():

At first glance this method may seem an overkill as "keys" can be accessed directly by cases like this:

However get() is useful to resolve keys dynamically as a key may be a property, a method or a closure. It often gets called internally for more advanced functionalities that we are going to explore very soon.

Hydration

An enum case can be instantiated from its own name, value (if backed) and keys:

While pure enums try to hydrate cases from names, backed enums can hydrate from both names and values. Even keys can be used to hydrate cases, cases are then wrapped into a CasesCollection to allow further processing.

Elaborating cases

There is a bunch of operations that can be performed on the cases of an enum. If the result of an operation is a plain list of cases, they get wrapped into a CasesCollection for additional elaboration, otherwise the final result of the operation is returned:

Cases collection

When a plain list of cases is returned by one of the cases operations, it gets wrapped into a CasesCollection which provides a fluent API to perform further operations on the set of cases:

Cases can be collected by calling collect() or any other cases operation returning a CasesCollection:

We can iterate cases collections within any loop:

Obtaining the underlying plain list of cases is easy:

Sometimes we may need to extract only the first case of the collection:

For reference, here are all the operations available in CasesCollection:

๐Ÿ“† Change log

Please see CHANGELOG for more information on what has changed recently.

๐Ÿงช Testing

๐Ÿ’ž Contributing

Please see CODE_OF_CONDUCT for details.

๐Ÿงฏ Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

๐Ÿ… Credits

โš–๏ธ License

The MIT License (MIT). Please see License File for more information.


All versions of enum with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package cerbero/enum contains the following files

Loading the files please wait ....