How to use a wrapper like the one from Drip?

So I’m very new to programming, so be gentle.

I’m trying to use a wrapper from GetDrip, which is a marketing automation software.

Here’s the documentation: https://github.com/DripEmail/drip-php

How do I even begin to use this with my application? Where would I upload the file? How would I start to implement the functionality inside the wrapper?

Any help would be appreciated.

Start by using a proper Composer-ready wrapper: https://packagist.org/packages/drewm/drip

The package that I linked to seems to be way more usable.

Then you need to study a couple of Yii extensions to see how you can create an extension yourself.

But for starters, just install the composer package and use it directly.

Jacmoe, this is exactly what I needed. Thanks!