tum-dev/fmeat

This package is abandoned and no longer maintained. No replacement package was suggested.

PHP Library for accessing the FMeat API

Installs: 17 162

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 4

Open Issues: 2

pkg:composer/tum-dev/fmeat


README

GitHub Actions Status Build Status Scrutinizer Code Quality Code Coverage Total Downloads

PHP Library for accessing the FMeat API.

Installation

composer require jpbernius/fmeat

Usage

use JPBernius\FMeat\FMeatClient;

$fmeat = new FMeatClient();
$week = $fmeat->getCurrentWeek();

foreach ($week as $day) {
  foreach ($day as $dish) {
	echo($dish->getName());
  }
}

Credits

eat-api by @srehwald