From 97808abca1c61475a8021c947ddc809f2ad33758 Mon Sep 17 00:00:00 2001 From: Dag Date: Sat, 27 Aug 2022 23:01:06 +0200 Subject: [PATCH] refactor: rename rssbridge.php to bootstrap.php (#2987) Fix #2986 --- contrib/prepare_release/fetch_contributors.php | 2 +- index.php | 2 +- lib/{rssbridge.php => bootstrap.php} | 0 phpunit.xml | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename lib/{rssbridge.php => bootstrap.php} (100%) diff --git a/contrib/prepare_release/fetch_contributors.php b/contrib/prepare_release/fetch_contributors.php index e1b56709..ad04458a 100644 --- a/contrib/prepare_release/fetch_contributors.php +++ b/contrib/prepare_release/fetch_contributors.php @@ -2,7 +2,7 @@ /* Generate the "Contributors" list for README.md automatically utilizing the GitHub API */ -require __DIR__ . '/../../lib/rssbridge.php'; +require __DIR__ . '/../../lib/bootstrap.php'; $url = 'https://api.github.com/repos/rss-bridge/rss-bridge/contributors'; $contributors = []; diff --git a/index.php b/index.php index 1835f963..538f1c6e 100644 --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@