Installation 

Composer 

Install the extension via Composer:

composer require oliverkroener/ok-typo3-helper
Copied!

The required dependencies microsoft/microsoft-graph and zbateson/mail-mime-parser are installed automatically.

Local development 

To use a local checkout during development, add a path repository to your project's composer.json:

{
    "repositories": [
        { "type": "path", "path": "packages/ok_typo3_helper" }
    ]
}
Copied!

Then require the package and activate the extension:

composer require oliverkroener/ok-typo3-helper
vendor/bin/typo3 extension:activate ok_typo3_helper
Copied!