{"id":25387202,"url":"https://github.com/dreitier/streamline-authentication","last_synced_at":"2026-05-05T21:33:14.184Z","repository":{"id":62647937,"uuid":"561368607","full_name":"dreitier/streamline-authentication","owner":"dreitier","description":"Common authentication methods for multi-tenant Laravel apps","archived":false,"fork":false,"pushed_at":"2023-09-03T09:09:51.000Z","size":129,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-09T19:46:45.606Z","etag":null,"topics":["authentication","laravel","multitenancy","multitenant","oauth","socialite","sso"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dreitier.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-03T14:40:46.000Z","updated_at":"2023-01-18T00:54:29.000Z","dependencies_parsed_at":"2025-02-15T11:44:38.154Z","dependency_job_id":null,"html_url":"https://github.com/dreitier/streamline-authentication","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dreitier/streamline-authentication","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreitier%2Fstreamline-authentication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreitier%2Fstreamline-authentication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreitier%2Fstreamline-authentication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreitier%2Fstreamline-authentication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dreitier","download_url":"https://codeload.github.com/dreitier/streamline-authentication/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dreitier%2Fstreamline-authentication/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32669429,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["authentication","laravel","multitenancy","multitenant","oauth","socialite","sso"],"created_at":"2025-02-15T11:34:18.868Z","updated_at":"2026-05-05T21:33:14.163Z","avatar_url":"https://github.com/dreitier.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Streamline Authentication for Laravel - dreitier/streamline-authentication\n### *Common authentication methods for multi-tenant Laravel apps.*\n\n## Features\n\n- Provide common authentication methods\n  - Form-based logins with principal (e.g. username, email) and password\n  - Password-less logins by sending emails with a magic login link\n  - Logins by selecting pre-defined users for demo/e2e environments\n  - Socialite integration for OAuth\n- Targeted for developers of multi-tenant Laravel SaaS/on-premises applications\n  - Activation of different authentication methods for only specific groups of customers\n  - Configurable authentication methods per tenant\n  - Users can log in through different Socialite drivers in the same tenant\n\n## When to go with Streamline Authentication instead of Laravel Fortify?\nFor the most Laravel applications, [Fortify](https://laravel.com/docs/9.x/fortify) implements all required authentication workflows in a much easier and Laravel-esk way. If you need password-based authentication with optional 2FA enabled, and a registration and password recovery workflow you should go probably go with Fortify.\nIf you need a more configurable and dynamic way of enabling and configuring different authentication methods throughout different tenants, *Streamline Authentication* might be an option for you.\n\n## Installation\n\nInstall the composer package and publish the required configuration:\n```bash\ncomposer require dreitier/streamline-authentication\n\nphp artisan vendor:publish --provider=Dreitier\\\\Streamline\\\\Authentication\\\\StreamlineAuthenticationServiceProvider --tag=config\n```\n\n### Custom views\nIf you want to customize the views and mails, publish the assets with\n```bash\nphp artisan vendor:publish --provider=Dreitier\\\\Streamline\\\\Authentication\\\\StreamlineAuthenticationServiceProvider --tag=assets\n```\n\nYou find the customized assets below `resources/views/vendor/streamline-authentication`.\n\n### Custom routes\nBy default, *Streamline Authentication* registers the authentication method flows at the `/sign-in` endpoint. Only enabled authentication methods are registered.\n\nIf you want to publish the routes by yourself, use\n\n```bash\nphp artisan vendor:publish --provider=Dreitier\\\\Streamline\\\\Authentication\\\\StreamlineAuthenticationServiceProvider --tag=routes\n```\n\nand set in `config/streamline-authentication.php`:\n\n```php\nreturn [\n    // ...\n    'routes' =\u003e false\n    // ...\n];\n```\n\n## Configuration\n`config/streamline-authentication.php` contains annotated configuration options.\n\n## Terminology\n\n| Term | Description                                                                |\n| --- |----------------------------------------------------------------------------|\n| Authentication method | Like form-based authentication, Socialite etc.                             |\n| Authentication provider | Provides the configuration for an authentication method of a given backend |\n\n## FAQ\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdreitier%2Fstreamline-authentication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdreitier%2Fstreamline-authentication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdreitier%2Fstreamline-authentication/lists"}