2017 © Pedro Peláez
 

library feed-me-now-api

Client Library for feedmenow.io APIs

image

mcred/feed-me-now-api

Client Library for feedmenow.io APIs

  • Monday, February 12, 2018
  • by mcred
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

PHP Client for feedmenow.io APIs

Build Status Maintainability Test Coverage, (*1)

Installation

composer require mcred/feed-me-now-api

Example Usage

require "./vendor/autoload.php";

$feedMeNow = new FeedMeNow\FeedMeNow();
$response = $feedMeNow->providers()->get("Atlanta, GA");
$providers = $response->getData();
foreach($providers as $provider)
{
    echo $provider->getName();
}

Available Methods

$feedMeNow->providers()->get("Atlanta,GA");
$feedMeNow->search()->get("Pizza", "Atlanta,GA");

Acknowledgements

I wanted to build a library with PSR-7 HTTP Message Interfaces and took a lot of inspiration from the Mailgun PHP Client. They did a great job building a SDK and you should check it out if you want to see some really great code., (*2)

The Versions

12/02 2018

dev-feature/full-provider-model

dev-feature/full-provider-model

Client Library for feedmenow.io APIs

  Sources   Download

MIT

The Requires

 

The Development Requires

by Derek Smart