mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-05-04 11:26:16 +01:00
Update autoload paths
This commit is contained in:
parent
215dd5525e
commit
a1e7d3f03d
1 changed files with 6 additions and 1 deletions
|
@ -4,7 +4,12 @@ use Opdavies\GmailFilterBuilder\Console\Command\GenerateCommand;
|
|||
use Opdavies\GmailFilterBuilder\Container\Container;
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
require_once __DIR__.'/../vendor/autoload.php';
|
||||
if (file_exists(__DIR__.'/../vendor/autoload.php')) {
|
||||
require_once __DIR__.'/../vendor/autoload.php';
|
||||
}
|
||||
elseif (file_exists(__DIR__.'/../../../autoload.php')) {
|
||||
require_once __DIR__.'/../../../autoload.php';
|
||||
}
|
||||
|
||||
$container = new Container();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue