simialbi/yii2-ews

Exchange web services extension for yii2

Installs: 502

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 3

Open Issues: 1

Type:yii2-extension

0.2.0 2023-10-26 08:23 UTC

This package is auto-updated.

Last update: 2024-04-26 09:29:14 UTC


README

This extension provides an interface to work with Exchange Web Services. It's based on php-ews.

Latest Stable Version Total Downloads License Build Status

Resources

Installation

The preferred way to install this extension is through composer.

Either run

$ php composer.phar require --prefer-dist simialbi/yii2-ews

or add

"simialbi/yii2-ews": "^1.0.0"

to the require section of your composer.json.

Configuration

To use this extension, configure ews component in your application config:

    'components' => [
        'ews' => [
            'class' => 'simialbi\yii2\ews\Connection',
            'server' => 'my-exchange.server.com',
            'username' => 'administrator',
            'password' => 'superSafePassword',
            // 'enableLogging' => true
            //TODO extend 
        ],
    ],
Parameter Description

Usage

TODO

License

yii2-ews is released under MIT license. See bundled LICENSE for details.