PHPackages                             nucleus-be/zimbra-api - 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. nucleus-be/zimbra-api

AbandonedArchivedLibrary[API Development](/categories/api)

nucleus-be/zimbra-api
=====================

PHP wrapper library around the Zimbra Soap API (web service)

1.1(10y ago)1267BSD (3-Clause) LicensePHPPHP &gt;=5.4.0

Since Dec 17Pushed 10y agoCompare

[ Source](https://github.com/nucleus-be/zimbra-api)[ Packagist](https://packagist.org/packages/nucleus-be/zimbra-api)[ RSS](/packages/nucleus-be-zimbra-api/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

Zimbra-API
==========

[](#zimbra-api)

This API is a simple Object Oriented wrapper for the zimbra soap api (web service). It's written with PHP 5.4. It allows you to manage zimbra accounts, zimbra domains and zimbra servers easily.

Requirement
-----------

[](#requirement)

- PHP &gt;= 5.4.x with [cURL](http://php.net/manual/en/book.curl.php) extension,
- [Guzzle](https://github.com/guzzle/guzzle) 6/psr7 library,
- [Evenement](https://github.com/igorw/evenement) library,
- [PhpCollection](https://github.com/schmittjoh/php-collection) library,
- (optional) PHPUnit to run tests,
- (optional) [Soap](http://www.php.net/manual/en/book.soap.php) extension for WSDL client and run tests.

Autoload
--------

[](#autoload)

The new version of `zimbra-api` using [Composer](http://getcomposer.org). The first step to use `zimbra-api` is to download composer:

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

Then we have to install our dependencies using:

```
$ php composer.phar install
```

Now we can use autoloader from Composer by:

```
{
    "require": {
        "nucleus-b/zimbra-api": "^1.0"
    }
}
```

> `zimbra-api` follows the PSR-0 convention names for its classes, which means you can easily integrate `zimbra-api` classes loading in your own autoloader.

Basic usage of `zimbra-api` admin client
----------------------------------------

[](#basic-usage-of-zimbra-api-admin-client)

```
