kevinkt
(Kevin)
December 30, 2015, 9:56am
1
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.
jacmoe
(Jacob Moena)
December 30, 2015, 10:03am
2
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.
kevinkt
(Kevin)
December 30, 2015, 10:06am
3
jacmoe:
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!