1. Go to this page and download the library: Download willemo/flightstats library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
willemo / flightstats example snippets
$client = new Willemo\FlightStats\FlexClient([
'appId' => 'yourAppId',
'appKey' => 'yourAppKey',
]);
// Get information about flight AA100 departing on September 5th:
$response = $client->schedules()->getFlightByDepartureDate(
'AA',
100
new DateTime('2017-09-05')
);