This is a Flysystem adapter for the MongoDB's GridFS.
composer require league/flysystem-gridfs
<?php
use League\Flysystem\GridFS\GridFSAdapter;
use League\Flysystem\Filesystem;
include __DIR__ . '/vendor/autoload.php';
$mongoClient = new MongoClient();
$gridFs = $mongoClient->selectDB('db_name')->getGridFS();
$adapter = new GridFSAdapter($gridFs);