ozankurt/google-core is a Laravel package for laravel 5 google core.
It currently has 1 GitHub stars and 17.761 downloads on Packagist (latest version v2.0).
Install it with composer require ozankurt/google-core.
Discover more Laravel packages by ozankurt
or browse all Laravel packages to compare alternatives.
Last updated
A package to keep all the required google setup together and ready.
Add ozankurt/google-core to your composer requirements.
composer require ozankurt/google-core
Create a google developer account which as actually logging in to any of your google accounts.
From https://developers.google.com/console/.
Create a new project.
PS: Skip this step if you already have one.

Create a new Client ID, type should be Service Account
PS: Skip this step if you already have one.

Generate new P12 key and download it.
PS: Skip this step if you already have one.
Copy the P12 file somewhere be used in php.
<?php
require 'vendor/autoload.php';
use Kurt\Google\Core;
use Kurt\Google\Analytics;
$googleCore = new Core([
'applicationName' => 'MyProject',
'p12FilePath' => 'MyProject-1b6e6bbb8826.p12',
'serviceClientId' => '122654635465-u7io2injkjniweklew48knh7158.apps.googleusercontent.com',
'serviceAccountName' => '122654635465-u7io2injkjniweklew48knh7158@developer.gserviceaccount.com',
'scopes' => [
//
],
]);
Add the service provider to you config/app.php.
'providers' => [
Kurt\Google\CoreServiceProvider::class,
],
Run vendor:publish command from your terminal.
php artisan vendor:publish
Edit the fields in the configuration file.
<?php
return [
/**
* Application Name
*
* Name of your project in `https://console.developers.google.com/`.
*/
'applicationName' => 'MyProject',
/**
* P12 File
*
* After creating a project, go to `APIs & auth` and choose `Credentials` section.
*
* Click `Create new Client ID` and select `Service Account` choose `P12` as the `Key Type`.
*
* After downloading the `p12` file copy and paste it in the `storage` directory.
* Example:
* storage/MyProject-2a4d6aaa4413.p12
*
*/
'p12FilePath' => 'MyProject-2a4d6aaa4413.p12',
/**
* You will find this information under `Service Account` > `Client ID`
*
* Example:
* 122654635465-u7io2injkjniweklew48knh7158.apps.googleusercontent.com
*/
'serviceClientId' => '',
/**
* You will find this information under `Service Account` > `Email Address`
*
* Example:
* 122654635465-u7io2injkjniweklew48knh7158@developer.gserviceaccount.com
*/
'serviceAccountName' => '',
/**
* Here you should pass an array of needed scopes depending on what service you will be using.
*
* Example:
* For analytics service:
*
* 'scopes' => [
* 'https://www.googleapis.com/auth/analytics.readonly',
* ],
*/
'scopes' => [
//
],
];
This open-sourced is software licensed under the MIT license.