mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
$ composer require --dev friendsofphp/php-cs-fixer $ echo >.php-cs-fixer.dist.php "<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__); $rules = [ '@PSR12' => true, // '@PSR12:risky' => true, '@PHP74Migration' => true, // '@PHP74Migration:risky' => true, // buggy, duplicates existing comment sometimes 'no_break_comment' => false, 'array_syntax' => true, 'lowercase_static_reference' => true, 'visibility_required' => false, // Too much noise 'binary_operator_spaces' => false, 'heredoc_indentation' => false, 'trailing_comma_in_multiline' => false, ]; $config = new PhpCsFixer\Config(); return $config ->setRules($rules) // ->setRiskyAllowed(true) ->setFinder($finder); " $ vendor/bin/php-cs-fixer --version PHP CS Fixer 3.8.0 BerSzcz against war! by Fabien Potencier and Dariusz Ruminski. PHP runtime: 8.1.7 $ vendor/bin/php-cs-fixer fix $ rm .php-cs-fixer.cache $ vendor/bin/php-cs-fixer fix
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
/* Generate the "Contributors" list for README.md automatically utilizing the GitHub API */
|
|
|
|
require __DIR__ . '/../../lib/rssbridge.php';
|
|
|
|
$url = 'https://api.github.com/repos/rss-bridge/rss-bridge/contributors';
|
|
$contributors = [];
|
|
$next = true;
|
|
|
|
while ($next) { /* Collect all contributors */
|
|
$headers = [
|
|
'Accept: application/json',
|
|
'Content-Type: application/json',
|
|
'User-Agent: RSS-Bridge'
|
|
];
|
|
$result = _http_request($url, ['headers' => $headers]);
|
|
|
|
foreach (json_decode($result['body']) as $contributor) {
|
|
$contributors[] = $contributor;
|
|
}
|
|
|
|
// Extract links to "next", "last", etc...
|
|
$links = explode(',', $result['headers']['link'][0]);
|
|
$next = false;
|
|
|
|
// Check if there is a link with 'rel="next"'
|
|
foreach ($links as $link) {
|
|
[$url, $type] = explode(';', $link, 2);
|
|
|
|
if (trim($type) === 'rel="next"') {
|
|
$url = trim(preg_replace('/([<>])/', '', $url));
|
|
$next = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Example JSON data: https://api.github.com/repos/rss-bridge/rss-bridge/contributors */
|
|
|
|
// We want contributors sorted by name
|
|
usort($contributors, function ($a, $b) {
|
|
return strcasecmp($a->login, $b->login);
|
|
});
|
|
|
|
// Export as Markdown list
|
|
foreach ($contributors as $contributor) {
|
|
echo " * [{$contributor->login}]({$contributor->html_url})\n";
|
|
}
|