Download the PHP package aegisora/in-array-rule-guardian without Composer

On this page you can find all versions of the php package aegisora/in-array-rule-guardian. 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 in-array-rule-guardian

Aegisora In-Array Rule Guardian

Latest Version Total Downloads PHPStan Badge

In-Array Rule Guardian provides a simple shortcut for in-array value validation using aegisora/guardian and aegisora/in-array-rule.

It is designed for cases where you want to quickly check whether a value is contained in a given array without manually creating validation pipelines.

This package is built on top of:


โœจ Features


๐Ÿ“ฆ Installation


๐Ÿš€ Core Concept

This package wraps the common validation flow:

into a dedicated shortcut class:

Instead of manually creating InArrayRule and passing it to Guardian, you can use InArrayRuleGuardian directly.


๐Ÿ—๏ธ Basic Usage


โš–๏ธ Strict vs Soft Comparison

The package exposes two methods that differ only in how values are compared.

checkStrict()

Uses strict comparison (===). Both the type and the value must match.

checkSoft()

Uses loose comparison (==). Only the value must match after type juggling.

Both methods share the same signature and behaviour regarding exceptions โ€” only the comparison mode changes.


๐Ÿงฉ Usage with Custom Exception

You may provide your own exception for validation failure.

If the value is not present in the array, the provided exception will be thrown.

This is useful when validation errors should have domain-specific meaning.


๐Ÿงช Example in Application Service


๐Ÿšจ Exceptions

This package does not define its own exception types. It delegates execution to Guardian and re-throws the exceptions raised by the underlying pipeline.

GuardianValidationException

Thrown when validation fails and no custom exception is provided.

The rule code for failed in-array validation is in_array_rule.

Custom exception

When a custom exception is passed as the last argument, it is thrown instead of GuardianValidationException on validation failure.

GuardianExecutingRuleException

Thrown when the underlying rule execution fails.


๐Ÿงฉ API

InArrayRuleGuardian::checkStrict()

Validates that $value is present in $actualArray using strict comparison (===).

InArrayRuleGuardian::checkSoft()

Validates that $value is present in $actualArray using loose comparison (==).

Parameters (both methods):

Both methods return void. They communicate results through exceptions only โ€” they return nothing on success and throw on failure:

Example:

With custom exception:


๐Ÿ›๏ธ Architecture

This package is a small shortcut layer over the Aegisora validation pipeline.

Flow:

  1. InArrayRuleGuardian::checkStrict() / checkSoft() is called
  2. InArrayRule::createStrict() / InArrayRule::createSoft() is created
  3. Guardian executes the rule
  4. If validation succeeds, execution continues normally
  5. If validation fails, the custom exception or GuardianValidationException is thrown
  6. If rule execution fails, GuardianExecutingRuleException is thrown

Internal flow:


๐Ÿ”— Related Packages


โš–๏ธ License

This package is open-source and licensed under the MIT License. See the LICENSE for details.


๐ŸŒฑ Contributing

Contributions are welcome and greatly appreciated!. See the CONTRIBUTING for details.


๐ŸŒŸ Support

If you find this project useful, please consider giving it a star on GitHub!

It helps the project grow and motivates further development.


All versions of in-array-rule-guardian with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
aegisora/guardian Version ^1.0
aegisora/in-array-rule Version ^1.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 aegisora/in-array-rule-guardian contains the following files

Loading the files please wait ...