PHPackages                             bazo/google-books-api-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. bazo/google-books-api-client

ActiveLibrary[API Development](/categories/api)

bazo/google-books-api-client
============================

A Google Books API Client

110PHP

Since Mar 2Pushed 13y ago1 watchersCompare

[ Source](https://github.com/bazo/google-books-api-client)[ Packagist](https://packagist.org/packages/bazo/google-books-api-client)[ RSS](/packages/bazo-google-books-api-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Google Books API Client
=======================

[](#google-books-api-client)

About
-----

[](#about)

A PHP client for the Google Books API. Based on the [Guzzle](http://guzzlephp.org/) library

Installation
------------

[](#installation)

### Installing via Composer

[](#installing-via-composer)

The recommended way to install the library is via [Composer](http://getcomposer.org).

1. Add `marvelley/google-books-api-client` as a dependency in your project's `composer.json` file:

    ```
     {
         "require": {
             "marvelley/google-books-api-client": "*"
         }
     }

    ```

    Consider tightening your dependencies to a known version when deploying mission critical applications (e.g. `2.8.*`).
2. Download and install Composer:

    ```
     curl -s http://getcomposer.org/installer | php

    ```
3. Install your dependencies:

    ```
     php composer.phar install

    ```
4. Require Composer's autoloader

    Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process:

    ```
     require 'vendor/autoload.php';

    ```

You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at [getcomposer.org](http://getcomposer.org).

Using the client
----------------

[](#using-the-client)

```
