From Terminal
# install dependencies
brew install autoconf # required by pecl
brew install libzip
# install zip extenion in your selected MAMP PHP version
ls /Applications/MAMP/bin/php/
From Terminal
# install dependencies
brew install autoconf # required by pecl
brew install libzip
# install zip extenion in your selected MAMP PHP version
ls /Applications/MAMP/bin/php/
<?php | |
/* | |
For a better understanding of ics requirements and time formats | |
please check https://gist.github.com/jakebellacera/635416 | |
*/ | |
// UTILS | |
// Check if string is a timestamp |
<?php | |
/** | |
* Authenticate user via the API | |
* | |
* Documentation: | |
* http://www.yourmembership.com/company/api-reference.aspx | |
*/ | |
define( 'API_ENDPOINT', 'https://api.yourmembership.com' ); | |
define( 'API_VERSION', '2.02' ); |