We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just for fun we could add a download stats page on the website.
A bit like https://symfony.com/stats/downloads
Based on Github API we can extract the download for each type of releases.
$ gh api /repos/jolicode/castor/releases | jq ".[] | {name: .name, assets: [.assets[] | {name: .name, count: .download_count}]}"
This API gives for example, for each release:
{ "name": "Release v0.18.2", "assets": [ { "name": "castor.linux-arm64.phar", "count": 3 }, { "name": "castor.darwin-amd64", "count": 9 }, { "name": "castor.windows-amd64.phar", "count": 25 }, { "name": "castor.darwin-amd64.phar", "count": 33 }, { "name": "castor.darwin-arm64.phar", "count": 86 }, { "name": "castor.linux-amd64", "count": 3940 }, { "name": "castor.linux-amd64.phar", "count": 10928 } ...
The text was updated successfully, but these errors were encountered:
Would you like to contribute it?
Sorry, something went wrong.
I wish but I will not have the time, so anyone should feel free to try this :-)
Okay, I'm closing this issue, because it didn't get much traction for 2 months.
I agree it would be cool, but it does not bring anything useful to keep it open.
Thanks for the idea :)
No branches or pull requests
Just for fun we could add a download stats page on the website.
A bit like https://symfony.com/stats/downloads
Based on Github API we can extract the download for each type of releases.
This API gives for example, for each release:
The text was updated successfully, but these errors were encountered: