Skip to content

Commit 7d66f6a

Browse files
author
pierrick
committed
Release 62.0.0.
1 parent ab57c1d commit 7d66f6a

File tree

1,876 files changed

+38127
-35395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,876 files changed

+38127
-35395
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 62.0.0
2+
3+
* Added support for v202308.
4+
* Removed support for v202208.
5+
* Removed examples for v202211.
6+
* Added support for PHP 8.2.
7+
* Removed support for PHP 7.4.
8+
19
### 61.0.0
210

311
##### Ad Manager

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,24 @@ This repository hosts the PHP client library for the Google Ad Manager SOAP API.
55
> **The AdWords API is [sunset](https://ads-developers.googleblog.com/2022/04/reminder-requests-to-adwords-api-will.html).
66
> You can use the new client library [google-ads-php](https://github.com/googleads/google-ads-php) to access the new [Google Ads API](https://developers.google.com/google-ads/api/docs/start) instead.**
77
8-
[![PHP version](https://badge.fury.io/ph/googleads%2Fgoogleads-php-lib.svg)](https://badge.fury.io/ph/googleads%2Fgoogleads-php-lib) [![Build Status](https://travis-ci.org/googleads/googleads-php-lib.svg?branch=main)](https://travis-ci.org/googleads/googleads-php-lib)
8+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://www.php.net/supported-versions.php)
9+
[![Latest Stable
10+
Version](https://img.shields.io/packagist/v/googleads/googleads-php-lib.svg)](https://packagist.org/packages/googleads/googleads-php-lib)
11+
[![Total Downloads](https://poser.pugx.org/googleads/googleads-php-lib/downloads.svg)](https://packagist.org/packages/googleads/googleads-php-lib)
12+
[![License](https://poser.pugx.org/googleads/googleads-php-lib/license.svg)](https://packagist.org/packages/googleads/googleads-php-lib)
13+
14+
**IMPORTANT** This client library has been updated to require PHP version 8.0 as the minimum version, as announced in [#777](https://github.com/googleads/googleads-php-lib/issues/777).
15+
This means that the final version of the library that supports PHP 7 is [v61.0.0](https://github.com/googleads/googleads-php-lib/releases/tag/v61.0.0), which supports Google Ad Manager API v202208, v202211, v202302, and v202305.
16+
17+
Google Ad Manager API v202305 is [scheduled to be sunset in May 2024](https://developers.google.com/ad-manager/api/deprecation). Therefore, PHP 7 users have about a year to migrate to the version 8.0 or higher of PHP to avoid disruption.
918

1019
### Requirements and Preparation
1120

1221
* System requirements and dependencies can be found in `composer.json` of this
1322
library. See [this page](https://getcomposer.org/doc/01-basic-usage.md) for
1423
more details.
15-
* From version 60.0.0, this library requires the minimum PHP version to be
16-
7.4. If you have an older version of PHP, `composer` command will
24+
* From version 62.0.0, this library requires the minimum PHP version to be
25+
8.0. If you have an older version of PHP, `composer` command will
1726
download an older version of the `googleads/googleads-php-lib` library.
1827
* This library depends on [Composer](https://getcomposer.org/). If you don't
1928
have it installed on your computer yet, follow the
@@ -259,7 +268,7 @@ $reportDownloader = new ReportDownloader($session, $requestOptionsFactory);
259268

260269
### SSL CA files
261270

262-
PHP >= v5.6 automatically sets
271+
PHP automatically sets
263272
[`verify_peer`](http://php.net/manual/en/context.ssl.php) to `true` and will do
264273
its best to find the most appropriate CA bundle on your system by default.
265274
However, not all systems have a known CA bundle on disk (e.g. Windows). This

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "googleads/googleads-php-lib",
33
"description": "Google Ad Manager SOAP API Client Library for PHP",
44
"require": {
5-
"php": ">=7.4",
5+
"php": ">=8",
66
"ext-mbstring": "*",
77
"ext-openssl": "*",
88
"ext-soap": "*",

examples/AdManager/v202211/CmsMetadataService/ActivateCmsMetadataValues.php

Lines changed: 0 additions & 135 deletions
This file was deleted.

examples/AdManager/v202211/CustomTargetingService/DeleteCustomTargetingKeys.php

Lines changed: 0 additions & 136 deletions
This file was deleted.

0 commit comments

Comments
 (0)