PHP Package: illuminate/auth

Illuminate/Auth provides authentication services for Laravel applications, enhancing security and user management capabilities.

Current Version: 12.18.0
Last Updated: Date not available
PHP Requirement: ^8.2
Dependencies:
illuminate/support
illuminate/contracts
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Illuminate/Auth is a library that enables secure user authentication and authorization in Laravel projects. It offers robust tools for managing user sessions, permissions, and roles. By leveraging Illuminate/Auth, developers can implement reliable login systems with ease, ensuring data protection and access control. This library integrates seamlessly with other Illuminate components, fostering a comprehensive ecosystem for building web applications.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 12.18.0

Download Download v12.18.0

Previous Versions

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/illuminate/auth/12.18.0/loader.php';
require_once 'libs/illuminate/support/12.18.0/loader.php';
require_once 'libs/illuminate/contracts/12.18.0/loader.php';

use Illuminate\Auth\AuthServiceProvider;
use Illuminate\Auth\Access\Gate;
use Illuminate\Auth\Middleware\Authenticate;

$obj = new AuthServiceProvider();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.