{"id":49893587,"url":"https://github.com/slimani-dev/filament-quick-login","last_synced_at":"2026-05-15T22:44:51.841Z","repository":{"id":354972513,"uuid":"1226265129","full_name":"slimani-dev/filament-quick-login","owner":"slimani-dev","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-08T19:03:25.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-08T19:31:56.197Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/slimani-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-01T07:06:04.000Z","updated_at":"2026-05-08T19:03:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/slimani-dev/filament-quick-login","commit_stats":null,"previous_names":["slimani-dev/filament-quick-login"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/slimani-dev/filament-quick-login","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slimani-dev%2Ffilament-quick-login","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slimani-dev%2Ffilament-quick-login/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slimani-dev%2Ffilament-quick-login/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slimani-dev%2Ffilament-quick-login/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slimani-dev","download_url":"https://codeload.github.com/slimani-dev/filament-quick-login/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slimani-dev%2Ffilament-quick-login/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33082288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"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":[],"created_at":"2026-05-15T22:44:51.275Z","updated_at":"2026-05-15T22:44:51.832Z","avatar_url":"https://github.com/slimani-dev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Filament Quick Login\n\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/slimani-dev/filament-quick-login/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/slimani-dev/filament-quick-login/actions/workflows/run-tests.yml)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/slimani-dev/filament-quick-login/phpstan.yml?branch=main\u0026label=phpstan\u0026style=flat-square)](https://github.com/slimani-dev/filament-quick-login/actions/workflows/phpstan.yml)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/slimani-dev/filament-quick-login/fix-php-code-style-issues.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/slimani-dev/filament-quick-login/actions/workflows/fix-php-code-style-issues.yml)\n[![Total Downloads](https://img.shields.io/packagist/dt/slimani/filament-quick-login.svg?style=flat-square)](https://packagist.org/packages/slimani/filament-quick-login)\n[![License](https://img.shields.io/packagist/l/slimani/filament-quick-login.svg?style=flat-square)](https://github.com/slimani-dev/filament-quick-login/blob/main/LICENSE)\n\nA quick login plugin for Filament login page. It allows you to quickly log in as predefined users, perfect for development and testing environments.\n\n## Features\n\n- **Quick Login Buttons**: Adds buttons to the login page to log in instantly.\n- **Customizable Users**: Define which users are available for quick login.\n- **Environment Aware**: Easily enable or disable the plugin based on your application environment.\n- **Model Support**: Works with any Eloquent user model.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require slimani/filament-quick-login\n```\n\n## Usage\n\n### Registering the Plugin\n\nRegister the plugin in your Panel Provider:\n\n```php\nuse Slimani\\QuickLogin\\QuickLoginPlugin;\n\npublic function panel(Panel $panel): Panel\n{\n    return $panel\n        -\u003eplugin(QuickLoginPlugin::make());\n}\n```\n\n### Customizing the Plugin\n\nYou can customize the plugin's behavior using the following methods:\n\n```php\nQuickLoginPlugin::make()\n    -\u003eenable(app()-\u003eenvironment('local')) // Only enable in local environment\n    -\u003euserModel(\\App\\Models\\Admin::class) // Custom user model\n    -\u003eusers([\n        'admin@example.com',\n        'user@example.com',\n    ]) // Predefined users by email\n```\n\nYou can also pass a Closure or a Collection to the `users()` method:\n\n```php\nQuickLoginPlugin::make()\n    -\u003eusers(fn () =\u003e \\App\\Models\\User::all())\n```\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](SECURITY.md) on how to report security vulnerabilities.\n\n## Credits\n\n- [Mohamed Slimani](https://github.com/slimani-dev)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslimani-dev%2Ffilament-quick-login","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslimani-dev%2Ffilament-quick-login","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslimani-dev%2Ffilament-quick-login/lists"}