Skip to content

Commit 97808ab

Browse files
authored
refactor: rename rssbridge.php to bootstrap.php (RSS-Bridge#2987)
Fix RSS-Bridge#2986
1 parent 1ca4dd6 commit 97808ab

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

contrib/prepare_release/fetch_contributors.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/* Generate the "Contributors" list for README.md automatically utilizing the GitHub API */
44

5-
require __DIR__ . '/../../lib/rssbridge.php';
5+
require __DIR__ . '/../../lib/bootstrap.php';
66

77
$url = 'https://api.github.com/repos/rss-bridge/rss-bridge/contributors';
88
$contributors = [];

index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
require_once __DIR__ . '/lib/rssbridge.php';
3+
require_once __DIR__ . '/lib/bootstrap.php';
44

55
$rssBridge = new RssBridge();
66

File renamed without changes.

phpunit.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<phpunit
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
4-
bootstrap="./lib/rssbridge.php"
4+
bootstrap="./lib/bootstrap.php"
55
colors="true"
66
processIsolation="false"
77
timeoutForSmallTests="1"

0 commit comments

Comments
 (0)