{"id":20471395,"url":"https://github.com/bitfumes/laravel-breezer","last_synced_at":"2025-09-12T02:16:22.381Z","repository":{"id":47726461,"uuid":"405475644","full_name":"bitfumes/laravel-breezer","owner":"bitfumes","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-20T03:05:32.000Z","size":67,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-25T11:51:06.735Z","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/bitfumes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2021-09-11T20:22:00.000Z","updated_at":"2022-12-14T23:50:31.000Z","dependencies_parsed_at":"2025-01-16T02:21:34.023Z","dependency_job_id":"1c214482-f3d1-4020-804f-d3482e009299","html_url":"https://github.com/bitfumes/laravel-breezer","commit_stats":{"total_commits":24,"total_committers":4,"mean_commits":6.0,"dds":"0.33333333333333337","last_synced_commit":"9849d952c17faf4c0457b9afd0302736f86e1bb6"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/bitfumes/laravel-breezer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitfumes%2Flaravel-breezer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitfumes%2Flaravel-breezer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitfumes%2Flaravel-breezer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitfumes%2Flaravel-breezer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitfumes","download_url":"https://codeload.github.com/bitfumes/laravel-breezer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitfumes%2Flaravel-breezer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274743154,"owners_count":25341133,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-12T02:00:09.324Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-15T14:15:58.492Z","updated_at":"2025-09-12T02:16:22.354Z","avatar_url":"https://github.com/bitfumes.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# breezer\n\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)\n[![GitHub issues](https://img.shields.io/github/issues/bitfumes/laravel-breezer)](https://github.com/bitfumes/laravel-breezer/issues)\n[![Total Downloads](https://img.shields.io/packagist/dt/bitfumes/breezer.svg?style=flat-square)](https://packagist.org/packages/bitfumes/breezer)\n[![Build Status](https://travis-ci.org/bitfumes/laravel-breezer.svg?branch=master)](https://travis-ci.org/bitfumes/laravel-breezer)\n\n# Install\n\n`composer require bitfumes/laravel-breezer`\n\n# Steps to follow\n\n\u003c!-- add mustVerifyEmail interface on user model if want to verify --\u003e\n\u003c!-- user will not be able to login if email is not verified --\u003e\n\n## Steps 1\n\n1. Add `Breezer` trait to your user model.\n\n2. Add Contract `MustVerifyEmail` to your authenticatable model if you want to enable email verification.\n\n```php\n\nuse Bitfumes\\Breezer\\Traits\\Breezer;\nuse Illuminate\\Contracts\\Auth\\MustVerifyEmail;\n\nclass User extends Authenticatable implements MustVerifyEmail\n{\n    use Notifiable, Breezer;\n    ...\n}\n```\n\n## Step 2\n\nNow publish two new migrations\n\n1.  To add avatar field to your use model.\n2.  To add social login profile.\n\n```bash\nphp artisan vendor:publish --tag=breezer:migrations\n```\n\n## Step 3\n\nAfter getting migrations in your laravel application, its time to have these tables in your database.\n\n```bash\nphp artisan migrate\n```\n\n## Step 4\n\nSet your frontend URL on your .env file\nFRONT_URL\n\nSet frontend Verify Email URL  on your .env file\nBREEZER_VERIFY_URL\n\nSet frontend password reset URL  on your .env file\nBREEZER_RESET_URL\n\n## Step 5\n\nBecause every user need to verify its email and to send email we are going to use laravel queue.\n\nNow add queue driver on your `.env` file\n\nThat's it, now enjoy api auth with JWT\n\n```\nQUEUE_DRIVER=database\n```\n\n## Testing\n\nRun the tests with:\n\n```bash\nvendor/bin/phpunit\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security\n\nIf you discover any security-related issues, please email sarthak@bitfumes.com instead of using the issue tracker.\n\n## License\n\nThe MIT License (MIT). Please see [License File](/LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitfumes%2Flaravel-breezer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitfumes%2Flaravel-breezer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitfumes%2Flaravel-breezer/lists"}