PHPackages                             wickwood-llc/brevo-php - 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. [API Development](/categories/api)
4. /
5. wickwood-llc/brevo-php

ActiveLibrary[API Development](/categories/api)

wickwood-llc/brevo-php
======================

Official Brevo provided RESTFul API V3 php library

0140PHP

Since Jun 10Pushed 1y agoCompare

[ Source](https://github.com/Wickwood-LLC/brevo-php)[ Packagist](https://packagist.org/packages/wickwood-llc/brevo-php)[ RSS](/packages/wickwood-llc-brevo-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Brevo's API v3 Php Library
==========================

[](#brevos-api-v3-php-library)

Brevo's API exposes the entire Brevo features via a standardized programmatic interface. Please refer to the full [documentation](https://developers.brevo.com) to learn more.

This is the wrapper for the API. It implements all the features of the API v3.

Brevo's API matches the [OpenAPI v2 definition](https://www.openapis.org/). The specification can be downloaded [here](https://api.brevo.com/v3/swagger_definition.yml).

This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project and is reviewed and maintained by Brevo:

- API version: 3.0.0
- Build package: io.swagger.codegen.languages.PhpClientCodegen For more information, please visit

Requirements
------------

[](#requirements)

PHP 5.6 and later

Installation &amp; Usage
------------------------

[](#installation--usage)

### Composer

[](#composer)

To install the bindings via [Composer](http://getcomposer.org/):

Create a `composer.json` file in any directory &amp; add below code in composer.json file.

```
{
"require": {
"getbrevo/brevo-php": "1.x.x"
}
}

```

Then run below commands in the same directory

```
composer require getbrevo/brevo-php "1.x.x"

```

Further do:

- run `composer install` to get these dependencies added to your vendor directory
- add the autoloader to your application with this line: `require("vendor/autoload.php")`

Tests
-----

[](#tests)

To run the unit tests:

```
composer install
./vendor/bin/phpunit

```

Getting Started
---------------

[](#getting-started)

Please follow the [installation procedure](#installation--usage) and then run the following:

```
