rjvim / connect-sentinel-5.4
Connect - Sentinel - OAuth
Installs: 5 002
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.0
- illuminate/config: 5.*
- illuminate/database: 5.*
- illuminate/support: 5.*
This package is auto-updated.
Last update: 2025-05-06 20:56:53 UTC
README
Add to dependencies
"cartalyst/sentinel": "^2.0",
"google/apiclient": "^2.0"
Add to providers
Rjvim\Connect\ConnectServiceProvider::class,
Add to facades
'Connect' => Rjvim\Connect\ConnectFacade::class,
Run: php artisan vendor:publish
Add more columns to users table:
$table->string('name')->nullable();
$table->enum('gender', ['male', 'female', 'others'])->nullable();
Extend User model with Rjvim\Connect\Models\User
Add routes:
Connect::google();