PHPackages                             marvelley/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. [HTTP &amp; Networking](/categories/http)
4. /
5. marvelley/google-books-api-client

ActiveLibrary[HTTP &amp; Networking](/categories/http)

marvelley/google-books-api-client
=================================

A Google Books API Client

1.0.0(13y ago)112412PHPPHP &gt;=5.3.2

Since Oct 25Pushed 9y ago1 watchersCompare

[ Source](https://github.com/craigmarvelley/google-books-api-client)[ Packagist](https://packagist.org/packages/marvelley/google-books-api-client)[ RSS](/packages/marvelley-google-books-api-client/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (3)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)

```
