1. Go to this page and download the library: Download amirsanni/php-ews-wrapper library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
amirsanni / php-ews-wrapper example snippets
composer
$ews->contacts->limit = 10;
//Method takes an optional 'pageNumber' of type int
$res = $ews->contacts->get();
$ews->tasks->limit = 10;
//Method takes an optional 'pageNumber' of type int
$res = $ews->tasks->get();