Skip to content

Commit 05c11f5

Browse files
committed
Add local bootstrap for the local development directory of the parser
1 parent e31dec9 commit 05c11f5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

bootstrap.php

+5
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@
99
elseif (strpos(__FILE__, DIRECTORY_SEPARATOR . "vendor" . DIRECTORY_SEPARATOR) !== false) {
1010
include_once __DIR__ . '/../../autoload.php';
1111
}
12+
13+
// Local development directory
14+
elseif (file_exists(__DIR__ . '/../Parser/bootstrap.php')) {
15+
include_once __DIR__ . '/../Parser/bootstrap.php';
16+
}

0 commit comments

Comments
 (0)