I've Downloaded the code from github https://github.com/mike42/escpos-php
<?php
require __DIR__ . '/vendor/autoload.php';
use Mike42\Escpos\PrintConnectors\FilePrintConnector;
use Mike42\Escpos\Printer;
$connector = new FilePrintConnector("/dev/usb/lp0");
$printer = new Printer($connector);
$printer -> text("Hello World!\n");
$printer -> cut();
$printer -> close();
In this code vendor directory is missing
That would be a PHP Composer feature.
COMPOSER
Autoloading
Please refer to the explanation linked above.