Download the PHP package webfox/laravel-backed-enums without Composer

On this page you can find all versions of the php package webfox/laravel-backed-enums. 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-backed-enums

Banner Image

Latest Version on Packagist Total Downloads

This package supercharges your PHP8 backed enums with superpowers like localization support and fluent comparison methods.

Installation

Usage

Make Command

Creating a new Laravel Backed Enum is easy with the make:enum command.

Command:

Arguments:

To create an enum named OrderStatusEnum backed by integers:

To create an enum named OrderStatusEnum backed by strings:

To create a pure enum named OrderStatusEnum:

This will generate an OrderStatusEnums in the app/Enums directory.

Upgrade your existing enums

The enum you create must implement the BackedEnum interface and also use the IsBackedEnum trait. The interface is required for Laravel to cast your enum correctly and the trait is what gives your enum its superpowers.

Enum value labels (Localization)

Create enums.php lang file and create labels for your enum values.

You may then access these localized values using the ->label() or ::labelFor() methods.
Additionally rendering the enum in a blade template will render the label.

If you do not specify a label in the lang file these methods will return the value assigned to the enum inside the enum file. e.g MILLIGRAMS label will be milligrams.

Meta data

Adding metadata allows you to return additional values alongside the label and values.

Create a withMeta method on your enum to add metadata.

If you do not specify a withMeta method, meta will be an empty array.

Other methods

options

Returns an array of all enum values with their labels and metadata.

Usage

returns

names

Returns an array of all enum values.

Usage

returns

values

Returns an array of all enum values.

Usage

returns

labels

Returns an array of all enum labels.

Usage

returns

map

Returns an array of all enum values mapping to their label.

Usage

returns

toArray

Returns an array of a single enum value with its label and metadata.

Usage

returns

toHtml

An alias of ::label(). Used to satisfy Laravel's Htmlable interface.

Usage

returns

toJson

Returns a json string represention of the toArray return value.

is/isA/isAn

Allows you to check if an enum is a given value. Returns a boolean.

Note isA, isAn are just aliases for is.

Usage

isNot/isNotA/isNotAn

Allows you to check if an enum is not a given value. Returns a boolean.

Note isNotA and isNotAn are just aliases for isNot.

Usage

isAny

Allows you to check if an enum is contained in an array. Returns a boolean.

Usage

isNotAny

Allows you to check if an enum is not contained in an array. Returns a boolean.

Usage

rule

The backed enums may be validated using Laravel's standard Enum validation rule - new Illuminate\Validation\Rules\Enum(VolumeUnitEnum::class).
This method a shortcut for the validation rule.

Usage

Other Classes

AsFullEnumCollection

This cast is similar to the Laravel built in AsEnumCollection cast but unlike the built-in will maintain the full toArray structure when converting to json.

E.g. the Laravel built in AsEnumCollection cast will return the following json:

This cast will return

Changelog

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

Contributing

We welcome all contributors to the project.

License

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


All versions of laravel-backed-enums with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/console Version ^10.0 | ^11.0 | ^12.0
spatie/laravel-package-tools Version ^1.18
illuminate/contracts Version ^10.0 | ^11.0 | ^12.0
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 webfox/laravel-backed-enums contains the following files

Loading the files please wait ....