gzero/social

Gzero Social Plugin
1,285
Install
composer require gzero/social
Latest Version:v3.0.0
PHP:>=7.1.0
License:MIT
Last Updated:Oct 9, 2017
Links: GitHub  ·  Packagist
Maintainer: AdrianSkierniewski

GZERO SOCIAL

=== Social package for GZERO CMS

Installation

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
  • create database schema (remember to set env to dev)
php artisan migrate

Configuration

Add the service provider to platform configuration in config/app.php

Gzero\Social\ServiceProvider::class

OAuth credentials

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',
],

Like buttons credentials

Set only client_id for given service in services config file

'facebook' => [
    'client_id'     => 'your client_id',
],

Related Packages

bytpher/cms-laravel-angular-material

CMS with Laravel + Angular Material starter project

251 12
lavalite/cms

Lavalite - The Laravel CMS.

56,376 2,893
mikkokut/prismic-laravel

Integrates the Prismic PHP development kit with Laravel.

1,416 1
matthewfritz/laravel-cms-scaffolding

This project contains the boilerplate functionality that you would expect to see...

43 3
orchid/platform

Platform for back-office applications, admin panel or CMS your Laravel app.

2,563,838 4,788