103 |
- |
1 |
Google PHP API Client Services
|
|
|
2 |
==============================
|
|
|
3 |
|
|
|
4 |
## Requirements
|
|
|
5 |
|
|
|
6 |
[Google API PHP Client](https://github.com/google/google-api-php-client/releases)
|
|
|
7 |
|
|
|
8 |
## Usage in v2 of Google API PHP Client
|
|
|
9 |
|
|
|
10 |
This library will be automatically installed with the
|
|
|
11 |
[Google API PHP Client](https://github.com/google/google-api-php-client/releases)
|
|
|
12 |
via composer. Composer will automatically pull down a monthly tag
|
|
|
13 |
from this repository.
|
|
|
14 |
|
|
|
15 |
If you'd like to always be up-to-date with the latest release, rather than
|
|
|
16 |
wait for monthly tagged releases, request the `dev-master` version in composer:
|
|
|
17 |
|
|
|
18 |
```sh
|
|
|
19 |
composer require google/apiclient-services:dev-master
|
|
|
20 |
```
|
|
|
21 |
|
|
|
22 |
## Usage in v1
|
|
|
23 |
|
|
|
24 |
If you are currently using the [`v1-master`](https://github.com/google/google-api-php-client/tree/v1-master)
|
|
|
25 |
branch of the client library, but want to use the latest API services, you can
|
|
|
26 |
do so by requiring this library directly into your project via the same composer command:
|
|
|
27 |
|
|
|
28 |
```sh
|
|
|
29 |
composer require google/apiclient-services:dev-master
|
|
|
30 |
```
|