<?php
require 'vendor/autoload.php';

$whiskies = (new MongoDB\Client)->dramio->whisky;

// Create normal index
$whiskies->createIndex( [ 'distiller_slug' => );

// Create unique index
$whiskies->createIndex( [ 'name' => ], [ 'unique' => true ] );

// Create nested index
$whiskies->createIndex( [ 'attributes.age' => ] );

// Create compound index
$whiskies->createIndex( [ 'brand' => 1', 'age' => 1 ] );
?>