simialbi / yii2-ews
Exchange web services extension for yii2
Installs: 587
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 3
Open Issues: 0
Type:yii2-extension
Requires
- php: >=8.0
- ext-ctype: *
- ext-soap: *
- php-ews/php-ews: ^1.0.0
- simialbi/yii2-simialbi-base: >=0.13.1 <1.0 | ^1.0.0
- simshaun/recurr: ^5.0.0
- yiisoft/yii2: ^2.0.20
Requires (Dev)
- phpunit/phpunit: ^9.5.21
- yiisoft/yii2-coding-standards: ~2.0
This package is auto-updated.
Last update: 2024-11-04 14:10:18 UTC
README
This extension provides an interface to work with Exchange Web Services. It's based on php-ews.
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 ], ],
Usage
TODO
License
yii2-ews is released under MIT license. See bundled LICENSE for details.