- Install Composer
- Execute:
$ composer require marcortola/food-data-central
This wrapper doesn't bundle the HTTP client so you are free to use your preferred one. You can inject it in the FoodDataCentralClient constructor or let the wrapper discover it. If you don't know what I am talking about, the fast solution is to require these packages:
$ composer require php-http/curl-client nyholm/psr7 php-http/message
$foodDataCentralClient = FoodDataCentralClient::create('your_api_key');
// Find food by FDC ID.
$foodItem = $foodDataCentralClient->food()->food(781125);
// Find food nutrients. See the FoodItem interface for more nutrient finders.
$calcium = $foodDataCentralClient->food()->food(781125)->getCalcium();
Read the Food Data Central API documentation here.
Licensed under the MIT License. See License File for more information about it.