Skip to content

Instantly share code, notes, and snippets.

View RobDWaller's full-sized avatar

Rob Waller RobDWaller

View GitHub Profile
@tburry
tburry / composer-bin-autoload.php
Last active May 16, 2019 09:46
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;