{"id":18248256,"url":"https://github.com/district09/php_scripts_github","last_synced_at":"2026-02-14T19:03:21.032Z","repository":{"id":28232523,"uuid":"117548748","full_name":"district09/php_scripts_github","owner":"district09","description":"Scripts to retrieve information from the Github repositories.","archived":false,"fork":false,"pushed_at":"2025-02-12T10:38:03.000Z","size":105,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"develop","last_synced_at":"2025-04-05T09:11:11.929Z","etag":null,"topics":["d09check22","web"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/district09.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-15T13:26:53.000Z","updated_at":"2025-02-12T10:38:07.000Z","dependencies_parsed_at":"2024-11-05T09:38:23.168Z","dependency_job_id":"e74681c7-5726-4889-acbc-9ea5d1491ed9","html_url":"https://github.com/district09/php_scripts_github","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/district09/php_scripts_github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/district09%2Fphp_scripts_github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/district09%2Fphp_scripts_github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/district09%2Fphp_scripts_github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/district09%2Fphp_scripts_github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/district09","download_url":"https://codeload.github.com/district09/php_scripts_github/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/district09%2Fphp_scripts_github/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29452594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["d09check22","web"],"created_at":"2024-11-05T09:36:23.879Z","updated_at":"2026-02-14T19:03:21.015Z","avatar_url":"https://github.com/district09.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PHP Scripts GitHub\n\nScripts to retrieve information from the Github repositories.\n\n[![Maintainability](https://api.codeclimate.com/v1/badges/0c4bdd5079dfb66f3803/maintainability)](https://codeclimate.com/github/digipolisgent/php_scripts_github/maintainability)\n\n\n\n## Requirements\n\n* PHP 7.1 or newer\n* Composer\n\n\n\n## Installation\n\nGit clone the repository or download.\n\nRun the composer install command:\n\n```bash\ncomposer install\n```\n\n\n\n## Usage\n\n### Get a list of available commands\n\nGet a list of available commands:\n\n```bash\nbin/github list\n```\n\n### Get a list of repositories\n\nGet a list of repositories for the given team name:\n\n```bash\nbin/github repo:list --access-token='GithubPersonalAccessToken' digipolisgent\n```\n\n### Get a list of repositories filtered by type(s)\n\nGet a list of repositories filtered by the provided type.\n\nThe supported types are:\n* drupal_profile\n* drupal_module\n* drupal_theme\n* php_package\n\n```bash\nbin/github repo:list --access-token='GithubPersonalAccessToken' --type=drupal_module digipolisgent`\n```\n\nYou can filter for multiple types at once (OR):\n\n```bash\nbin/github repo:list --access-token='GithubPersonalAccessToken' --type=drupal_module --type=drupal_theme digipolisgent\n```\n\n### Get a list of repositories filtered by pattern\n\nGet a list of repositories filtered by a regular expression. The pattern will\nbe applied to the repository name.\n\n```bash\nbin/github repo:list --access-token='GithubPersonalAccessToken' --pattern=\"/^drupal\\_/\" digipolisgent\n```\n\nYou can filer by multiple patterns at once (OR):\n\n```bash\nbin/github repo:list --access-token='GithubPersonalAccessToken' --pattern=\"/^drupal\\_/\" --pattern=\"/^php\\_/\" digipolisgent\n```\n\n### Find usages of a project within MakeFile sites\n\nList all drupal sites where a project (install profile, module or theme) is\nused.\n\n```bash\nbin/github makefile:usage --access-token='GithubPersonalAccessToken' digipolisgent project_name\n```\n\nYou can search usages for multiple projects at once:\n\n```bash\nbin/github makefile:usage --access-token='GithubPersonalAccessToken' digipolisgent project_name1 project_name2 project_name3\n```\n\n### Find usages of a project within Composer sites\n\nList all drupal sites where a project (install profile, module or theme) is\nused.\n\n```bash\nbin/github composer:usage --access-token='GithubPersonalAccessToken' digipolisgent project_name\n```\n\nYou can search usages for multiple projects at once:\n\n```bash\nbin/github composer:usage --access-token='GithubPersonalAccessToken' digipolisgent project_name1 project_name2 project_name3\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdistrict09%2Fphp_scripts_github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdistrict09%2Fphp_scripts_github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdistrict09%2Fphp_scripts_github/lists"}