Skip to content

Commit

Permalink
Merge pull request #39 from alexdebril/issue/36
Browse files Browse the repository at this point in the history
Fix autoload path when installed with composer
  • Loading branch information
alexdebril authored Aug 8, 2016
2 parents 3e4e205 + 48252ea commit 8385883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/feedio
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

foreach( [__DIR__.'/../vendor/autoload.php', __DIR__.'/../autoload.php'] as $file ) {
foreach( [__DIR__.'/../vendor/autoload.php', __DIR__.'/../../../autoload.php'] as $file ) {
if ( file_exists($file) ) {
require $file;
}
Expand Down

0 comments on commit 8385883

Please sign in to comment.