mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 01:25:28 +03:00
parent
1ca4dd69f7
commit
97808abca1
4 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
/* Generate the "Contributors" list for README.md automatically utilizing the GitHub API */
|
/* 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';
|
$url = 'https://api.github.com/repos/rss-bridge/rss-bridge/contributors';
|
||||||
$contributors = [];
|
$contributors = [];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once __DIR__ . '/lib/rssbridge.php';
|
require_once __DIR__ . '/lib/bootstrap.php';
|
||||||
|
|
||||||
$rssBridge = new RssBridge();
|
$rssBridge = new RssBridge();
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<phpunit
|
<phpunit
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
||||||
bootstrap="./lib/rssbridge.php"
|
bootstrap="./lib/bootstrap.php"
|
||||||
colors="true"
|
colors="true"
|
||||||
processIsolation="false"
|
processIsolation="false"
|
||||||
timeoutForSmallTests="1"
|
timeoutForSmallTests="1"
|
||||||
|
|
Loading…
Reference in a new issue