Download the PHP package cerbero/laravel-enum without Composer

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

๐ŸŽฒ Laravel Enum

Author PHP Version Laravel Version Build Status Coverage Status Quality Score PHPStan Level Total Downloads Latest Version PER

Laravel package to supercharge enum functionalities.

[!TIP] Need a framework-agnostic solution? Consider using ๐ŸŽฒ Enum instead.

๐Ÿ“ฆ Install

Via Composer:

๐Ÿ”ฎ Usage

This package provides all the functionalities of ๐ŸŽฒ Enum plus Laravel-specific features.

To supercharge our enums, we just need to let them use the Enumerates trait:

๐Ÿท๏ธ Meta

Laravel Enum extends Enum's meta by allowing us to attach meta with a class name. This class is resolved by the Laravel container when invoking the corresponding meta method:

In the enum above, each case specifies a handler meta with a class name. When a case calls its handler() meta method, the corresponding class is resolved through the IoC container:

If we need to resolve a default class for most cases, we can attach the meta to the enum itself. Cases with their own meta override the default class:

In the example above, all cases calling the handler() method resolve the DefaultPayoutHandler class, except for the Sent case that resolves SentPayoutHandler.

If the class to be resolved is callable (i.e. it implements the __invoke() method), that class will be both resolved and executed:

In the enum above, each case specifies a handlePayout meta with a callable class. Calling handlePayout() resolves and invokes the class with any passed parameters.

If we need to run a default callable class for most cases, we can attach the meta to the enum itself. Cases with their own meta override the default callable class:

In the example above, all cases calling the handlePayout() method execute the DefaultPayoutHandler class, except for the Sent case, which runs the SentPayoutHandler.

[!TIP] Our IDE can autocomplete meta methods thanks to the enum:annotate command.

Class names in meta are annotated by identifying the common interface or parent class they share.

๐Ÿงบ Cases collection

The original cases collection has been extended for better integration with the Laravel framework.

The new cases collection implements the Illuminate\Contracts\Support\Arrayable and Illuminate\Contracts\Support\Jsonable contracts and it can be serialized into a JSON.

It also leverages the following Laravel traits:

Additionally, the new collection enables us to dump() and dd() its cases:

Cases collection can be cast in an Eloquent model to store multiple cases in a single database column and then re-hydrate those cases back into a collection:

Once the cast is set, we can assign an array of names, values or cases to the cast property of the model and receive a cases collection when accessing the property:

The cases collection above is stored in the database as ["One","Two"] for a pure enum, or as [1,2] for a backed enum.

The cast also supports bitwise backed enums, so for instance, if we have a Permissions enum implementing the Bitwise contract:

and we cast the permissions property in our Eloquent model:

we can assign a bitwise value or an array of bitwise values/cases to the permissions property and receive a cases collection in return:

The cases collection above is stored in the database as 3, the result of the OR bitwise operator.

๐Ÿช„ Magic translation

On top of Enum's magic, when a case calls an inaccessible method without a corresponding meta match, Laravel Enum assumes that we want to access a translation:

By default the translation key is resolved as enums.{enum namespace}.{case name}.{inaccessible method}. If customization is needed, we can adjust the translation key:

The above logic will resolve the translation key as custom.{enum namespace}.{case name}.{inaccessible method}.

Additionally, we can pass named arguments to replace placeholders within our translations:

Translations are accessible through enum operations as well:

[!TIP] Our IDE can autocomplete translation methods thanks to the enum:annotate command.

๐Ÿ’Š Encapsulation

Laravel Enum offers extra traits to encapsulate Laravel features that deal with keys. By defining keys as enum cases, we can leverage Laravel features without having to remember or repeat such keys.

The benefits of this approach are many:

๐Ÿ—„๏ธ Cache

To encapsulate the Laravel cache, we can define a backed enum with all our cache keys and apply the EnumeratesCacheKeys trait:

The EnumeratesCacheKeys trait incorporates Enumerates, hence all the features of this package. We can now leverage all the Laravel cache methods by statically calling enum cases:

When calling cases statically, we can pass parameters to resolve dynamic keys. Such parameters replace the {...} placeholders in the cache keys:

๐Ÿ”“ Session

To encapsulate the Laravel session, we can define a backed enum with all our session keys and apply the EnumeratesSessionKeys trait:

The EnumeratesSessionKeys trait incorporates Enumerates, hence all the features of this package. We can now leverage all the Laravel session methods by statically calling enum cases:

When calling cases statically, we can pass parameters to resolve dynamic keys. Such parameters replace the {...} placeholders in the session keys:

[!TIP] Our IDE can autocomplete case static methods thanks to the enum:annotate command.

๐Ÿฆพ Artisan commands

A handy set of Artisan commands is provided out of the box to interact with enums seamlessly.

Some commands generate enums or related files. If we want to customize such files, we can publish their stubs:

After publishing, the stubs can be modified within the stubs/laravel-enum directory, located at the root of our application.

Certain commands supports the --all option to reference all enums in our application. By default, enums are searched in the app/Enums directory, but we can scan other folders as well:

In the example above, enums are searched in the app/Enums directory and all Enums sub-directories within domain, such as domain/Posts/Enums, domain/Users/Enums, etc.

๐Ÿ—’๏ธ enum:annotate

IDEs can autocomplete case static methods, meta methods, translations, etc. by running the enum:annotate command:

If we don't provide any argument, a prompt appears to choose which enums to annotate. Or, we can simply use the --all option to annotate all enums:

Alternatively, we can provide one or more enums directly to the enum:annotate command. Both slashes and quoted backslashes are acceptable for defining enum namespaces:

Lastly, if we wish to overwrite existing method annotations on enums, we can include the --force option:

๐Ÿ—๏ธ enum:make

The enum:make command allows us to create a new, automatically annotated enum with the cases we need:

If no arguments are given, prompts will guide us through defining the enum namespace, backing type and cases. Otherwise, all these details can be typed via command line:

For creating backed enums, we can manually set custom values for each case:

Or, we can automatically assign values to cases by using the --backed option:

The --backed option accepts these values:

To overwrite an existing enum, we can include the --force option:

We can generate the TypeScript counterpart of the newly created enum by adding the --typescript option:

๐Ÿ’™ enum:ts

The ts command converts enums to their TypeScript equivalents, ensuring backend and frontend synchronization:

If we don't provide any argument, a prompt appears to choose which enums to synchronize. Or, we can simply use the --all option to synchronize all enums:

Alternatively, we can provide one or more enums directly to the enum:ts command. Both slashes and quoted backslashes are acceptable for defining enum namespaces:

By default, enums are synchronized to resources/js/enums/index.ts, but this can be easily customized:

As shown above, we can either define a static path for TypeScript enums or dynamically set the TypeScript path for an enum based on its namespace.

To update enums that have already been synchronized, we can use the --force option:

๐Ÿ“† 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 laravel-enum with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
cerbero/enum Version ^2.3.2
illuminate/console Version >=9.0
illuminate/contracts Version >=9.0
illuminate/support Version >=9.0
laravel/prompts Version >=0.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/laravel-enum contains the following files

Loading the files please wait ....