Download the PHP package raid/guardian without Composer

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

Laravel Authentication Package

This package provides a unified authentication flow by acting as a wrapper around any authentication package. It introduces several new concepts:


Requirements

This package acts as a wrapper and requires an existing authentication package to provide the underlying authentication mechanisms.


Installation

Install the package via Composer:


Configuration

Publish the configuration file with the following command:


Usage

Here is an example of using the package in a controller:

Key Components:


Core Components

Authenticatable

The Authenticatable class is responsible for locating a user and returning an Illuminate\Contracts\Auth\Authenticatable instance.

Example Implementation:

Requirements:


Guardian

The Guardian class orchestrates the Authenticatable and Authenticators during authentication.

Command to Generate:

Configuration Example:


Authenticator

Manages the core authentication logic.

Command to Generate:

Configuration Example:

Defining Authenticators

For more details on configuring authenticators, see the Configuration Section.


Matcher

Matches the user with given credentials.

Command to Generate:

Configuration Example:

Defining Matchers

For more details on configuring matchers, see the Configuration Section.


Norm

Defines rules to validate authentication.

Command to Generate:

Configuration Example:

Defining Norms

For more details on configuring norms, see the Configuration Section.


Sequence

Adds additional steps to the authentication process.

Command to Generate:

Configuration Example:

Defining Sequences

For more details on configuring matchers, see the Configuration Section.


Driver

Handles token generation for authenticated users depending on the authentication package.

Driver Types:

Defining the Default Driver:

Update the configuration in config\guardian.php:

Creating a Custom Driver:

Configuration Example:


Error Handling

Manage errors using the errors() method:


Components Configuration

Key Properties for Configuration

Property Description
$authenticators List of authenticators for the Guardian.
$defaultAuthenticator Default authenticator for the Guardian.
$matchers List of matchers for the Authenticator.
$norms List of norms for the Authenticator.
$sequences List of sequences for the Authenticator.

Defining Authenticators

Authenticators manages the core authentication logic.

You can configure the authenticators for a Guardian in two ways:

1. Using a Property in the Guardian Class

Define the list of authenticators directly in your custom Guardian class:

2. Using the Configuration File

Define authenticators in the config/guardian.php file under guardian_authenticators:

Default Authenticator

To set a default authenticator for a Guardian:

If no default authenticator is specified, the Guardian will use the default authenticator configured in config/guardian.php under default_authenticator.

Defining Matchers

Matchers are used to locate the user based on credentials. You can define matchers in two ways:

1. Using a Property in the Authenticator Class

In your custom authenticator class, define the matchers property:

2. Using the Configuration File

You can also define matchers in the config/guardian.php file under authenticator_matchers:

Defining Norms

Norms validate the authentication process. Similar to matchers, norms can be defined in two ways:

1. Using a Property in the Authenticator Class

In your custom authenticator class, define the norms property:

2. Using the Configuration File

Define norms in the config/guardian.php file under authenticator_norms:

Defining Sequences

Sequences add extra steps to the authentication process. Like matchers and norms, they can be defined in two ways:

1. Using a Property in the Authenticator Class

In your custom authenticator class, define the sequences property:

2. Using the Configuration File

Define sequences in the config/guardian.php file under authenticator_sequences:

Summary

This flexibility allows you to structure your application according to your needs.


Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.


License

MIT License. See the LICENSE file for details.


Credits


Support Raid

Raid is an MIT-licensed open-source project developed with community contributions.


All versions of guardian with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
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 raid/guardian contains the following files

Loading the files please wait ....