Laravel Auth

PHP MIT

Laravel Auth by GhostCompiler adds advanced authentication for Laravel with TOTP 2FA, passkeys via WebAuthn, OTP channels (email, SMS, WhatsApp), trusted devices, and tenant-aware social login.

Stars
2
Forks
0
Downloads
N/A
Open Issues
0
Files main

Repository Files

Loading file structure...
composer.json
{
    "name": "ghostcompiler/laravel-auth",
    "description": "Headless Laravel authentication security with TOTP 2FA, passkeys, trusted devices, recovery codes, and Socialite-powered social login helpers.",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Ghost Compiler",
            "email": "info@ghostcompiler.com"
        }
    ],
    "require": {
        "php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
        "illuminate/http": "^10.0 || ^11.0 || ^12.0 || ^13.0",
        "illuminate/mail": "^10.0 || ^11.0 || ^12.0 || ^13.0",
        "illuminate/support": "^10.0 || ^11.0 || ^12.0 || ^13.0",
        "illuminate/view": "^10.0 || ^11.0 || ^12.0 || ^13.0",
        "laravel/socialite": "^5.0",
        "lbuchs/webauthn": "^2.2"
    },
    "require-dev": {
        "laravel/pint": "^1.13",
        "mockery/mockery": "^1.6",
        "orchestra/testbench": "^8.0 || ^9.0 || ^10.0 || ^11.0",
        "phpstan/phpstan": "^1.10",
        "phpunit/phpunit": "^9.6 || ^10.5 || ^11.5",
        "rector/rector": "^1.0",
        "vimeo/psalm": "^6.0"
    },
    "autoload": {
        "psr-4": {
            "GhostCompiler\\LaravelAuth\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "GhostCompiler\\LaravelAuth\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "analyse": "vendor/bin/phpstan analyse",
        "types": "vendor/bin/psalm --no-cache",
        "lint": "vendor/bin/pint --test",
        "format": "vendor/bin/pint",
        "refactor": "vendor/bin/rector process --dry-run"
    },
    "extra": {
        "laravel": {
            "providers": [
                "GhostCompiler\\LaravelAuth\\LaravelAuthServiceProvider"
            ],
            "aliases": {
                "LaravelAuth": "GhostCompiler\\LaravelAuth\\Facades\\LaravelAuth"
            }
        }
    },
    "config": {
        "sort-packages": true,
        "audit": {
            "ignore": {
                "PKSA-mdq4-51ck-6kdq": "Laravel CRLF injection is in laravel/framework which is only a dev dependency (required by orchestra/testbench) and not required by the package in production.",
                "GHSA-5vg9-5847-vvmq": "Laravel CRLF injection is in laravel/framework which is only a dev dependency (required by orchestra/testbench) and not required by the package in production.",
                "PKSA-m5cs-t1y6-qpcs": "Laravel temporary signed URL confusion is in laravel/framework which is only a dev dependency and not required in production.",
                "GHSA-crmm-hgp2-wgrp": "Laravel temporary signed URL confusion is in laravel/framework which is only a dev dependency and not required in production."
            }
        }
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}