diff options
author | 2024-02-09 22:51:10 +0100 | |
---|---|---|
committer | 2024-02-09 22:51:10 +0100 | |
commit | ff7840d60f212dd5f395378103bc22f0c273641d (patch) | |
tree | d874ae62311a70a6239bce9c32bc225602536467 /lib/bootstrap.php | |
parent | df7b91a2a32762d015478bb8862e22367d18b898 (diff) | |
download | rss-bridge-ff7840d60f212dd5f395378103bc22f0c273641d.tar.gz rss-bridge-ff7840d60f212dd5f395378103bc22f0c273641d.tar.zst rss-bridge-ff7840d60f212dd5f395378103bc22f0c273641d.zip |
chore: prepare for introduction of php-webdriver/webdriver (Selenium) (#3975)
Diffstat (limited to 'lib/bootstrap.php')
-rw-r--r-- | lib/bootstrap.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/bootstrap.php b/lib/bootstrap.php index 29c8b97d..bfc7be39 100644 --- a/lib/bootstrap.php +++ b/lib/bootstrap.php @@ -1,5 +1,9 @@ <?php +if (is_file(__DIR__ . '/../vendor/autoload.php')) { + require __DIR__ . '/../vendor/autoload.php'; +} + const PATH_LIB_CACHES = __DIR__ . '/../caches/'; const PATH_CACHE = __DIR__ . '/../cache/'; |