Skip to content

Instantly share code, notes, and snippets.

@tburry
Last active May 16, 2019 09:46
Show Gist options
  • Save tburry/90ae5ba5bfa9140cfb53 to your computer and use it in GitHub Desktop.
Save tburry/90ae5ba5bfa9140cfb53 to your computer and use it in GitHub Desktop.
A snippet for including your composer autoloader in your /bin files.
<?php
$paths = [
__DIR__.'/../vendor/autoload.php', // locally
__DIR__.'/../../../autoload.php' // dependency
];
foreach ($paths as $path) {
if (file_exists($path)) {
require_once $path;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment