Download the PHP package ncsuwebdev/gclient without Composer

On this page you can find all versions of the php package ncsuwebdev/gclient. 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 gclient

Google API Client for Laravel

The ncsuwebdev/gclient package allows you to more easily integrate the use of Google APIs into your Laravel Application. This package's original focus was aiding in the development of applications that needed tighter integration with an organization's G Suite domain to provide domain management and support. However, this package can be used for other Google APIs.

This package was inspired by the Google API Client Wrapper package.

Requirements

Installation

You can install the package via composer:

The package will automatically register itself.

Configuration

There are numerous steps to get API credentials properly working with the Google API.

Setup Credential File Storage

The Google API will provide several json files used to store credentials. These should be stored outside your web-servicable directory space. We recommend creating a new directory called googleapi in the root of your project. You can name this whatever you'd like but be sure to reference it properly in the config file.

Create Project in Google Developer Console

Visit the Google Developer Console to create a new project that will have it's own API credentials.

  1. Specify the necessary API scopes for your project. Make note of the API's selected to ensure you can add them to the config file.

  2. Setup an OAuth 2.0 client ID with application type of Other. Once setup is complete, download the client_secrets.json file and save to the googleapi directory.

Domain Wide Delegation

If working with a G Suite domain and Domain Wide Delegation is needed, you'll need to setup and configure a Service Account inside the Developer Console along with an associated user. Download the provided oauth2service.json file and save it to the googleapi directory.

You'll also need to authorize the API scope list for the service account client ID inside the G Suite Admin Console. Check out the wiki for a default list to get you started.

Initialize Configuration Variables

You may optionally run

To publish a copy of the default configuration values into your application. If you wish to alter any of the Google API Scopes used, you'll need to publish a configuration file.

You'll need to configure the following configuration values in your .env file:

Multiple Domains

If you need to handle multiple domains but don't want to worry about constantly changing your .env or credentials file, you can set GOOGLE_ENV in your .env file to be a string that will prefix your config variables.

For example if you set GOOGLE_ENV='TESTING' the config file will search for the necessary variables prefixed with TESTING_ such as TESTING_GOOGLE_CLIENT_ID.

Authorization

To authorize your application to talk to the Google API run the following command:

Follow the prompts to authorize API access using the Google Account that you used with the developer console.

If you change any API scopes after authorization, you should run

to grab a fresh token with the proper scopes.


All versions of gclient with dependencies

PHP Build Version
Package Version
Requires php Version ^5.6|^7.0|^8.0
ext-json Version *
google/apiclient Version ^2.0
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 ncsuwebdev/gclient contains the following files

Loading the files please wait ....