<?php require_once 'vendor/autoload.php'; // skip this if using a framework / autoloading elsewhere use JasonRoman\NbaApi\Client\Client; use JasonRoman\NbaApi\Request\Stats\Stats\Game\BoxScoreAdvancedRequest; $client = new Client(); $request = BoxScoreAdvancedRequest::fromArrayWithExamples(); $response = $client->request($request); print_r($response); //echo "hello"; ?>