2.0.x-dev
2.0.9999999.9999999-devLaravel 5 Google Core
MIT
The Requires
by Ozan Kurt
laravel api core google
Wallogit.com
2017 © Pedro Peláez
Laravel 5 Google Core
A package to keep all the required google setup together and ready., (*2)
Add ozankurt/google-core to your composer requirements., (*3)
composer require ozankurt/google-core
Create a google developer account which as actually logging in to any of your google accounts., (*4)
From https://developers.google.com/console/., (*5)
Create a new project., (*6)
PS: Skip this step if you already have one., (*7)
, (*8)
Create a new Client ID, type should be Service Account, (*9)
PS: Skip this step if you already have one., (*10)
, (*11)
Generate new P12 key and download it., (*12)
PS: Skip this step if you already have one., (*13)
Copy the P12 file somewhere be used in php., (*14)
<?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., (*15)
'providers' => [
Kurt\Google\CoreServiceProvider::class,
],
Run vendor:publish command from your terminal., (*16)
php artisan vendor:publish
Edit the fields in the configuration file., (*17)
<?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., (*18)
Laravel 5 Google Core
MIT
laravel api core google