/yii2-ews

AR like Implementation for Exchange Web Services for the Yii2 Framework

Primary LanguagePHPMIT LicenseMIT

Exchange Web Services for yii2 (ActiveRecord-like models)

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.