PHPackages                             ydd/vebra - 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. ydd/vebra

ActiveLibrary[API Development](/categories/api)

ydd/vebra
=========

Vebra API Wrapper

2381517[2 PRs](https://github.com/damonjones/Vebra-PHP-API-Wrapper/pulls)PHP

Since Dec 1Pushed 6y ago3 watchersCompare

[ Source](https://github.com/damonjones/Vebra-PHP-API-Wrapper)[ Packagist](https://packagist.org/packages/ydd/vebra)[ RSS](/packages/ydd-vebra/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Vebra PHP API Wrapper
=====================

[](#vebra-php-api-wrapper)

This is a third-party PHP library which aims to simplify the use of the Vebra XML web service.
The current version of the API is version 9.
NB: This library is not affiliated with [Vebra](http://vebra.com/) in any way.

See the [User Guide](http://webservices.vebra.com/export/xsd/v9/Client_Feed_API_v9_UserGuide.pdf) or the [Vebra API Version 9 schema](http://webservices.vebra.com/export/xsd/v9/exportapi.xsd) for more information.

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

[](#requirements)

PHP 5.3+
The [Buzz](http://github.com/kriswallsmith/Buzz/) lightweight HTTP Request library.

Recommended installation method (using the Composer dependency manager)
-----------------------------------------------------------------------

[](#recommended-installation-method-using-the-composer-dependency-manager)

If you are starting a new project, or if your existing project does not use composer, download and install it:

```
curl -s http://getcomposer.org/installer | php

```

Create a new composer.json file with this library as a dependency:

```
{
    "require": {
        "ydd/vebra": "*@dev"
    }
}
```

If your project is already using composer then edit the composer.json file in your project and add this library as a dependency, as shown above.

Install your project dependencies using composer:

```
php composer.phar install

```

Require the composer autoloader in your script or bootstrap code:

```
