LaravelPackages.net
Acme Inc.
Toggle sidebar
ozankurt/google-core

Laravel 5 Google Core

17.761
1
v2.0
About ozankurt/google-core

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

Google Core

Latest Stable Version Total Downloads Latest Unstable Version License

A package to keep all the required google setup together and ready.

Installation

Step 1

Add ozankurt/google-core to your composer requirements.

composer require ozankurt/google-core

Getting ready to use

Step 1

Create a google developer account which as actually logging in to any of your google accounts.

From https://developers.google.com/console/.

Step 2

Create a new project.

PS: Skip this step if you already have one.

New Project

Step 3

Create a new Client ID, type should be Service Account

PS: Skip this step if you already have one.

Create a new Client ID Service Account

Step 4

Generate new P12 key and download it.

PS: Skip this step if you already have one.

Step 5

Copy the P12 file somewhere be used in php.

Configuration (Pure PHP)

Example Configuration File

<?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' => [
		//
	],
]);

Configuration (Laravel)

Step 1

Add the service provider to you config/app.php.

'providers' => [
    Kurt\Google\CoreServiceProvider::class,
],

Step 2

Run vendor:publish command from your terminal.

php artisan vendor:publish

Step 3

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' => [
		//
	],

];

License

This open-sourced is software licensed under the MIT license.

Comments