microsoft/bingads

This project provides the PHP client library for the SOAP-based Bing Ads API at Microsoft.

Package info

github.com/BingAds/BingAds-PHP-SDK

pkg:composer/microsoft/bingads

Statistics

Installs: 3 209 292

Dependents: 12

Suggesters: 0

Stars: 62

Open Issues: 27

v13.0.28 2026-05-13 09:40 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Apache-2.0 cb43cc1ff8c598fb44f4e3e454033acdb3438334

phpsdkbingadsbing adsmicrosoft advertising

This package is not auto-updated.

Last update: 2026-06-24 10:05:32 UTC


README

You can develop Bing Ads applications with any programming language that supports web services. The Bing Ads PHP Software Development Kit (SDK) enhances the experience of developing Bing Ads applications with the PHP programming language. The SDK includes a proxy to all Bing Ads API web services and abstracts low level details of authentication with OAuth. The SDK follows the PSR-4 standard to support autoloading classes from file paths, so that you don’t have to include each classes manually. Your application can simply require autoload.php: require_once __DIR__ . "/vendor/autoload.php";

Installing the SDK

You can install the Bing Ads PHP SDK using the Composer package manager to fetch from Packagist. We recommend using Composer as a dependency manager so that you don’t have to manually download the proxy classes.

  1. Download and install Composer. Microsoft Windows users should also add composer.phar to your PATH variable.

  2. Make sure your php.ini file has extension=soap.

  3. Open a command prompt and type composer require microsoft/bingads.

    Note: Windows users who did not add composer.phar to the PATH will need to type php composer.phar require microsoft/bingads instead.

  4. To get updates going forward, type composer update. If any updates are available at packagist, composer will install the latest version.

For more information see Get Started Using PHP with Bing Ads Services.