Download the PHP package skn036/laravel-google-client without Composer

On this page you can find all versions of the php package skn036/laravel-google-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-google-client

Wrapper Around Google Client For Laravel

This package only handles the authentication layer, securely saving, retrieving and revoking tokens around google api client. So it could be a good choice as authentication layer while using any api service from google.

For some common api services from google please check:

Gmail Api: skn036/laravel-gmail-api
Calendar Api: skn036/laravel-google-calendar (coming soon)

For extending your own api service please follow the guidelines below.

Installation

First install the package via composer.

Then publish the config file. It will publishes google.php file in the config directory.

Configuration

Please look into config/google.php for detailed information about the configuration. First you need to enable the required api services and generate credentials in your google developers account. Please see here from detailed instructions. Available .env variables for configuration are:

Authentication Modes:

There are three authentication modes:

Note: You need to set the scopes on .env file which google services you intended to use.

Getting Started

google-dashboard.blade.php:

SPA Authentication

If you are using SPA frontend like React or Vue and entirely handle the Oauth redirect in the frontend, you should call the getAuthUrl method to get the google Oauth url.

After successful login from google, it should add code route query param on redirect uri set on the google console. You need to pass this code the authenticate method or if you pass the code as route query, it will automatically capture on authentication request;

Single Account Per User Mode:

By default, authenticated user is passed to GoogleClient instance using laravel's auth()->id(). If you want to pass a user manually to client instance:

Multiple Account Per User Mode:

When using multiple accounts, first account synced will be set as default account. If you want to change the default account, first get the available accounts:

It will give a array of synced accounts like:

Then you call setDefaultAccount method to change the default account.

Normally it will use the default account to interact with the services. If you want to use other account rather than the default, you should pass the email of the intended account as the second argument of the client constructor.

Extending This Package To Google Api Services

First you should make a api service class extending the GoogleClient class. Then bind it to the api services to interact with the api.

For example we will extend to the Gmail api service:

On the GmailMessage.php:

Now you can get the gmail messages by

Tree Shaking Unused Google Services

There are more than 200 api services shipped together on google api. For tree shaking the unnecessary services, please follow instructions on google api client.

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-google-client with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
google/apiclient Version ^2.17.0
illuminate/contracts Version ^10||^11
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package skn036/laravel-google-client contains the following files

Loading the files please wait ....