Download the PHP package myclabs/php-enum without Composer

On this page you can find all versions of the php package myclabs/php-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 php-enum

PHP Enum implementation inspired from SplEnum

GitHub Actions Latest Stable Version Total Downloads Psalm Shepherd

Maintenance for this project is supported via Tidelift.

Why?

First, and mainly, SplEnum is not integrated to PHP, you have to install the extension separately.

Using an enum instead of class constants provides the following advantages:

This Enum class is not intended to replace class constants, but only to be used when it makes sense.

Installation

Declaration

Usage

As you can see, static methods are automatically implemented to provide quick access to an enum value.

One advantage over using class constants is to be able to use an enum as a parameter type:

Documentation

Static methods:

Static methods

Static method helpers are implemented using __callStatic().

If you care about IDE autocompletion, you can either implement the static methods yourself:

or you can use phpdoc (this is supported in PhpStorm for example):

Native enums and migration

Native enum arrived to PHP in version 8.1: https://www.php.net/enumerations
If your project is running PHP 8.1+ or your library has it as a minimum requirement you should use it instead of this library.

When migrating from myclabs/php-enum, the effort should be small if the usage was in the recommended way:

Changes for migration:

All places where the class was used as a type will continue to work.

Usages and the change needed:

Operation myclabs/php-enum native enum
Obtain an instance will change from $enumCase = Action::VIEW() $enumCase = Action::VIEW
Create an enum from a backed value $enumCase = new Action('view') $enumCase = Action::from('view')
Get the backed value of the enum instance $enumCase->getValue() $enumCase->value
Compare two enum instances $enumCase1 == $enumCase2
or
$enumCase1->equals($enumCase2)
$enumCase1 === $enumCase2
Get the key/name of the enum instance $enumCase->getKey() $enumCase->name
Get a list of all the possible instances of the enum Action::values() Action::cases()
Get a map of possible instances of the enum mapped by name Action::values() array_combine(array_map(fn($case) => $case->name, Action::cases()), Action::cases())
or
(new ReflectionEnum(Action::class))->getConstants()
Get a list of all possible names of the enum Action::keys() array_map(fn($case) => $case->name, Action::cases())
Get a list of all possible backed values of the enum Action::toArray() array_map(fn($case) => $case->value, Action::cases())
Get a map of possible backed values of the enum mapped by name Action::toArray() array_combine(array_map(fn($case) => $case->name, Action::cases()), array_map(fn($case) => $case->value, Action::cases()))
or
array_map(fn($case) => $case->value, (new ReflectionEnum(Action::class))->getConstants()))

Related projects


All versions of php-enum with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3 || ^8.0
ext-json Version *
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 myclabs/php-enum contains the following files

Loading the files please wait ....