| Package Data | |
|---|---|
| Maintainer Username: | AdrianSkierniewski | 
| Maintainer Contact: | adrian.skierniewski@gmail.com (Adrian Skierniewski) | 
| Package Create Date: | 2015-03-28 | 
| Package Last Update: | 2017-10-09 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-11-02 15:09:55 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 1,260 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 0 | 
| Total Watchers: | 8 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
=== Social package for GZERO CMS
Begin by installing this package through Composer. Edit your project's composer.json file to require gzero/social.
"require": {
    "gzero/social": "3.*",
},
"minimum-stability" : "stable"
Next, update Composer from the Terminal:
composer update
php artisan migrate
Add the service provider to platform configuration in config/app.php
Gzero\Social\ServiceProvider::class
Set required credentials for given service in services config file
'google' => [
    'client_id'     => 'your client_id',
    'client_secret' => 'your client_secret',
],
'facebook' => [
    'client_id'     => 'your client_id',
    'client_secret' => 'your client_secret',
],
'twitter' => [
    'client_id'     => 'your client_id',
    'client_secret' => 'your client_secret',
],
Set only client_id for given service in services config file
'facebook' => [
    'client_id'     => 'your client_id',
],