Looking to hire Laravel developers? Try LaraJobs

laravel-zimbra maintained by ogestor

Description
A Laravel wrapper to interact with Zimbra API.
Last update
2022/11/21 18:51 (dev-master)
Downloads
7
Tags

Comments
comments powered by Disqus

laravel-zimbra

Quick start

Install the package:

composer require ogestor/laravel-zimbra --dev

Publish the configuration file using:

php artisan vendor:publish --provider="DiegoSouza\Zimbra\ZimbraServiceProvider"

Then provide the values to config/zimbra.php.

Usage

The wrapper class is DiegoSouza\Zimbra\ZimbraApiClient. You can have it injected somewhere:

namespace App\Http\Controllers;
  
use DiegoSouza\Zimbra\ZimbraApiClient;
  
class YourController extends Controller
{
    public function index(ZimbraApiClient $zimbra)
    {
        $result = $zimbra->getAllCos();

        // use the api result
    }
}

Or you can use it's methods through the Facade:

namespace App\Http\Controllers;
  
use DiegoSouza\Zimbra\Facades\Zimbra;
  
class YourController extends Controller
{
    public function index()
    {
        $result = Zimbra::getAllCos();

        // use the api result
    }
}