2017 © Pedro Peláez
 

library freshmail

image

wizjo/freshmail

  • Thursday, July 14, 2016
  • by rzeka
  • Repository
  • 2 Watchers
  • 0 Stars
  • 1,325 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 2 Versions
  • 2 % Grown

The README.md

FreshMail

A PHP library that easies usage of FreshMail REST API, (*1)

Installation

The easiest way to get install the library is by using composer:, (*2)

composer require wizjo/freshmail, (*3)

Basic usage

$fm = new \Wizjo\FreshMail(API_KEY, API_SECRET);

//get request
$action = $fm->request('/ping');
$data = $action->getData();
echo $data['data']; //will print "pong"

//post request
$action = $fm->request('/ping', ['test' => 'data']);
$data = $action->getData();
echo $data['data']['test']; //will print "data"

The Versions

14/07 2016

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

The Development Requires

by Piotr Rzeczkowski

api freshmail

11/07 2016

v1.0.0

1.0.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Piotr Rzeczkowski

api freshmail