usabilla/api-php

View on GitHub
examples/autoload.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

if (!file_exists(__DIR__ . '/../vendor/autoload.php')) {
    die('Vendor files are not installed; install them with `composer install`.' . PHP_EOL);
}

require_once(__DIR__ . '/../vendor/autoload.php');