Download the PHP package illegal/insideauth without Composer
On this page you can find all versions of the php package illegal/insideauth. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download illegal/insideauth
More information about illegal/insideauth
Files in illegal/insideauth
Package insideauth
Short Description Laravel InsideAuth is a seamless side authentication solution for Laravel packages.
License MIT
Informations about the package insideauth
Laravel InsideAuth
THIS REPOSITORY IS UNDER ACTIVE DEVELOPMENT AND IS NOT READY FOR PRODUCTION USE.
Laravel InsideAuth is a seamless side authentication solution for Laravel packages. It provides an easy and independent authentication mechanism, allowing developers to focus on building core features of their packages or applications without worrying about managing separate authentication systems.
Features
- Easy Integration: Quickly integrate InsideAuth into your existing Laravel packages or applications with just a few lines of code.
- Independent Authentication: InsideAuth creates a separate authentication system for your Laravel package, ensuring it doesn't interfere with your main application's authentication.
- Customizable: Tailor the authentication process to your specific needs with various configuration options for login, registration, and password reset processes.
- Secure: InsideAuth follows industry-standard security practices and utilizes the latest encryption methods to protect your application from unauthorized access.
- Middleware Support: Easily restrict access to specific routes based on a user's authentication status with middleware support.
Table of Contents
- Installation
- Configuration
- Usage
- Middleware
- Customization
- Security
- License
Installation
You can effortlessly install the package using Composer:
Once installed, it's necessary to migrate the database tables in order to set up the default tables for the package.
InsideAuth employs a prefix for the tables, which can be customized as needed. Refer to the Configuration section for further details.
Configuration
By default, InsideAuth applies the auth_
prefix to the database tables. To customize this prefix, simply add the INSIDEAUTH_TABLE_PREFIX
variable to your .env
file.
Usage
You can create a new authentication set by utilizing the InsideAuth facade, which returns an instance of the Authenticator class. This class encompasses all the configuration settings for the authentication set.
Generally, it's recommended to register the authentication set within the boot
method of your service provider.
InsideAuth takes care of automatically registering the routes for the authentication set.
The routes are prefixed with the name of the authentication set; in this case, they will be prefixed with myproject
.
You can obtain the routes for all functionalities by employing parameters on the Authenticator class.
For further details, refer to the Parameters section.
Middleware
InsideAuth comes with a collection of middlewares.
These middlewares enable you to control access to specific routes depending on a user's authentication status.
You can acquire middleware for all functionalities by utilizing parameters on the Authenticator class.
For more information, consult the Parameters section.
Customization
Upon registering a new authentication set, you can make use of the available functions on the Authenticator class to tailor the authentication process to your requirements.
Listed below are all the functions that can be utilized to customize the authentication process:
Parameters
Typically, you will need to access the routes and middlewares for the authentication set throughout the lifespan of your application.
There are several methods for accessing the current Authenticator instance.
Requesting a specific Authenticator instance
myproject
is the name of the authentication set you provided to the boot method.
Since the current authenticator is injected though a middleware, this is the only method to access the current authenticator before the requests starts. For example in a Service Provider.
This is the typical method you will use to protect your routes.
See the Security section for more details.
Via the InsideAuth facade
Via the injection in the Request
attributes
Via the provided helper function
The simplest and recommended approach for accessing the current Authenticator instance in your blade templates is via the helper function.
Complete list of parameters
Security
To secure your routes, simply apply the appropriate middlewares provided by InsideAuth.
It's crucial that your routes use the standard web
middleware.
If you do not already have this middleware included, you can make use of the one provided by InsideAuth.
License
Laravel InsideAuth is open-sourced software licensed under the MIT license.
All versions of insideauth with dependencies
illegal/laravel-utils Version ^1.0
laravel/framework Version ^9|^10
laravel/sanctum Version ^3.0