adeelmemon/sociallogin
Composer 安装命令:
composer require adeelmemon/sociallogin
包简介
A Laravel package for Google, GitHub, and other social logins.
README 文档
README
Installation Guide
1️⃣ Install the Package via Composer
Run the following command to install the package:
composer require adeelmemon/sociallogin OR composer require adeelmemon/sociallogin:dev-main
2️⃣ Run Database Migrations
Your package requires a users table with additional fields like provider, provider_id, avatar, etc.
Run the following command to update the database:
php artisan migrate
User Table Example
Here is how the User table should look:
3️⃣ Publish Configuration File
To publish the package configuration file, run:
php artisan vendor:publish --tag=config
4️⃣ Install Social Login in the User Model
Run the following command to automatically update the User model with the required HasSocialLogin trait and fillable properties:
php artisan sociallogin:install
User Model Example
Here is how the User.php model should look:
protected $fillable = [ 'name', 'email', 'password', 'provider', 'provider_id', 'avatar', 'email_verified_at' ];
Usage Guide
Adding Social Login Buttons in Blade View
Place the following code inside your Blade template to allow users to log in via Google, Facebook, or GitHub:
<a href="{{ route('social', 'google') }}" class="social-button btn-danger mb-2"> <i class="fab fa-google"></i> Login with Google </a> <a href="{{ route('social', 'facebook') }}" class="social-button btn-primary mb-2"> <i class="fab fa-facebook-f"></i> Login with Facebook </a> <a href="{{ route('social', 'github') }}" class="social-button btn-dark mb-2"> <i class="fab fa-github"></i> Login with GitHub </a>
Environment Configuration
Add the following environment variables in your .env file:
GOOGLE_CLIENT_ID=your_google_client_id GOOGLE_CLIENT_SECRET=your_google_client_secret GOOGLE_REDIRECT_URI=http://127.0.0.1:8000/auth/oauth/google/callback GITHUB_CLIENT_ID=your_github_client_id GITHUB_CLIENT_SECRET=your_github_client_secret GITHUB_REDIRECT_URI=http://127.0.0.1:8000/auth/oauth/github/callback FACEBOOK_CLIENT_ID=your_facebook_client_id FACEBOOK_CLIENT_SECRET=your_facebook_client_secret FACEBOOK_REDIRECT_URI=http://127.0.0.1:8000/auth/oauth/facebook/callback
Final Steps
- Ensure your
Usermodel is updated withHasSocialLoginand proper$fillableproperties. - Make sure you have correctly configured your Google, GitHub, and Facebook apps for OAuth authentication.
- Test the login routes to verify that authentication works as expected.
Now your Laravel Social Login package is ready to use! 🚀
1️⃣ Uninstall the Package via Composer
Run the following command to uninstall the package:
composer remove adeelmemon/sociallogin
Contact For any inquiries or support, feel free to reach out:
📧 Email: adeelmemon03000@gmail.com 📞 Business Contact: +92 300 2630498 (WhatsApp available)
adeelmemon/sociallogin 适用场景与选型建议
adeelmemon/sociallogin 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 02 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 adeelmemon/sociallogin 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 adeelmemon/sociallogin 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-02-23

