{"id":6025668,"name":"equisoft-actions/phpcs","ecosystem":"actions","description":"Lint PHP with PHP_CodeSniffer\n","homepage":null,"licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/equisoft-actions/phpcs","keywords_array":[],"namespace":"equisoft-actions","versions_count":19,"first_release_published_at":"2022-03-22T18:29:16.000Z","latest_release_published_at":"2026-03-02T14:19:40.000Z","latest_release_number":"v2.5.0","last_synced_at":"2026-03-26T11:07:19.691Z","created_at":"2023-01-31T00:14:50.043Z","updated_at":"2026-03-26T11:18:15.597Z","registry_url":"https://github.com/equisoft-actions/phpcs","install_command":null,"documentation_url":null,"metadata":{"name":"PHP_CodeSniffer","description":"Lint PHP with PHP_CodeSniffer\n","inputs":{"standard":{"description":"The name or path of the coding standard to use","default":"./phpcs.xml","required":true},"ignore":{"description":"Comma delimited list of files to ignore","default":"vendor","required":true},"extensions":{"default":"php","description":"Comma delimited list of extensions to lint","required":true},"paths":{"description":"Space delimited list of paths to lint. Not used when only-changed-files is enabled.","default":".","required":true},"report-name":{"description":"The name of the archived report. It must follow the convention detailed by our ADRs.","required":true,"default":"phpcs.junit.xml"},"report-retention-days":{"description":"Duration in days to preserve reports.","required":false,"default":"5"},"extra-args":{"description":"Extra arguments to pass to the phpcs binary","required":false},"default-branch":{"description":"Default branch to compute changed files","required":true,"default":"main"},"only-changed-files":{"description":"Run phpcs only on changed files compared to master. Or previous commit for master branch.\n","required":false,"default":"false"},"changed-files-pattern":{"description":"File path pattern.","default":"\\.php","required":true},"changed-files-threshold":{"description":"If changed file count is greater than this number, perform a full phpcs.","default":"150","required":true},"working-directory":{"description":"Workflow working directory","default":".","required":false}},"runs":{"using":"composite","steps":[{"name":"phpcs","working-directory":"${{ inputs.working-directory }}","shell":"bash","run":"REPORTS_PATH=./reports\nmkdir $REPORTS_PATH\n\ncommand_string=(\n  ./vendor/bin/phpcs\n  -s\n  --standard=${{ inputs.standard }}\n  --ignore=${{ inputs.ignore }}\n  --extensions=${{ inputs.extensions }}\n  --report=junit\n  --report-file=$REPORTS_PATH/${{ inputs.report-name }}\n)\n\nif [ -n \"${{ inputs.extra-args }}\" ]\nthen\n  command_string+=(${{ inputs.extra-args }})\nfi\n\nif [[ \"${{ inputs.only-changed-files }}\" == \"true\" ]] ; then\n  CURRENT_BRANCH=\"$(git rev-parse --abbrev-ref HEAD)\"\n  if [[ \"$CURRENT_BRANCH\" == \"${{ inputs.default-branch }}\" ]] ; then\n    echo \"Running phpcs on all files\"\n    command_string+=(${{ inputs.paths }})\n  else\n    # Compute changed files\n    if [[ -n \"${GITHUB_BASE_REF}\" ]]; then\n      DIFF_TARGET=\"origin/$GITHUB_BASE_REF...\"\n    else\n      DIFF_TARGET=\"origin/${{ inputs.default-branch }}...\"\n    fi\n\n    # Allow to fail early if DIFF_TARGET not found on repo\n    git rev-parse $DIFF_TARGET \u003e /dev/null 2\u003e\u00261 || { echo \"Diff target not found '$DIFF_TARGET'. You probably miss a git fetch step.\" \u003e /dev/stderr; exit 1; }\n\n    # Get changed files which match the pattern.\n    # NOTE:\n    # `|| :` is used to avoid exit by grep, when no line matches the pattern.\n    CHANGED_FILES=$(git diff $DIFF_TARGET --diff-filter=AM --name-only --no-color | grep -e \"${{ inputs.changed-files-pattern }}\" || :)\n    NUM_CHANGED_FILES=$(echo \"$CHANGED_FILES\" | grep -v -e '^\\s*$' | wc -l || :)\n    if [[ $NUM_CHANGED_FILES -le 0 ]] ; then\n      echo \"No file changes. Skip psalm.\"\n      exit 0\n    elif [[ $NUM_CHANGED_FILES -le ${{ inputs.changed-files-threshold }} ]] ; then\n      echo \"Running phpcs on changed files\"\n      echo \"$CHANGED_FILES\"\n      command_string+=($CHANGED_FILES)\n    else\n      echo \"Running psalm on all files\"\n      command_string+=(${{ inputs.paths }})\n    fi\n  fi\nelse\n  command_string+=(${{ inputs.paths }})\nfi\n\necho \"Command: \" \"${command_string[@]}\"\nset +e\noutput=`${command_string[@]} 2\u003e\u00261`\nexit_code=$?\n\nif [ $exit_code != 0 ] \u0026\u0026 [[ \"$output\" == \"ERROR: No files were checked.\"* ]]; then\n  echo \"INFO: No files were checked.\"\n  exit 0\nfi\necho ${output}\nexit $exit_code\n"},{"name":"Upload report","uses":"actions/upload-artifact@v7","if":"!cancelled()","with":{"name":"${{ inputs.report-name }}","retention-days":"${{ inputs.report-retention-days }}","if-no-files-found":"ignore","path":"${{ inputs.working-directory }}/reports/${{ inputs.report-name }}"}},{"name":"Create annotations","uses":"mikepenz/action-junit-report@v6","if":"!cancelled()","with":{"check_name":"PHP_CodeSniffer","annotate_only":true,"report_paths":"${{ inputs.working-directory }}/reports/${{ inputs.report-name }}\n"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":39734020,"uuid":"472788387","full_name":"equisoft-actions/phpcs","owner":"equisoft-actions","description":"phpcs Github Action","archived":false,"fork":false,"pushed_at":"2025-12-15T14:44:29.000Z","size":29,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-24T08:11:59.421Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/equisoft-actions.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-03-22T13:49:51.000Z","updated_at":"2025-12-15T14:44:09.000Z","dependencies_parsed_at":"2023-12-18T19:58:54.658Z","dependency_job_id":"ef16d110-2a6d-42de-940e-5b0749caae85","html_url":"https://github.com/equisoft-actions/phpcs","commit_stats":{"total_commits":14,"total_committers":5,"mean_commits":2.8,"dds":0.6428571428571428,"last_synced_commit":"9f273fdc81354bef20257389a1fa538790402e2a"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/equisoft-actions/phpcs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/equisoft-actions","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30961908,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-26T11:06:23.298Z","status":"ssl_error","status_checked_at":"2026-03-26T11:05:51.250Z","response_time":114,"last_error":"SSL_read: 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"},"owner_record":{"login":"equisoft-actions","name":"Equisoft Actions","uuid":"95788821","kind":"organization","description":"","email":null,"website":null,"location":"Canada","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/95788821?v=4","repositories_count":49,"last_synced_at":"2024-04-28T02:58:16.503Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/equisoft-actions","funding_links":[],"total_stars":3,"followers":1,"following":0,"created_at":"2022-11-14T07:59:45.913Z","updated_at":"2024-04-28T02:58:21.320Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/equisoft-actions","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/equisoft-actions/repositories"},"tags":[{"name":"v2.5.0","sha":"55ae40c92300e9d31c5e967d944e6466687f2852","kind":"commit","published_at":"2026-03-02T14:19:40.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.5.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.5.0/manifests"},{"name":"v2.4.1","sha":"a360f847fe251e1d00fadf75a0688223b7ebe8bc","kind":"commit","published_at":"2025-12-15T14:44:04.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.4.1","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.4.1/manifests"},{"name":"v2.4.0","sha":"34020941c81359c931d5b777a0ab645f5ab890e4","kind":"commit","published_at":"2025-11-03T13:48:24.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.4.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.4.0","dependencies_parsed_at":null,"dependency_job_id":"835574c3-7cd6-4504-b877-8f550cbad1c8","purl":"pkg:github/equisoft-actions/phpcs@v2.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.4.0/manifests"},{"name":"v2.3.3","sha":"d11715096fe5d2533b567a145134f71f49bdb68b","kind":"commit","published_at":"2025-10-21T18:27:06.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.3.3","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.3.3","dependencies_parsed_at":null,"dependency_job_id":"586ef6b3-69b1-4f44-b7b4-d400f275f153","purl":"pkg:github/equisoft-actions/phpcs@v2.3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.3/manifests"},{"name":"v2.3.2","sha":"bd2c7529e394ef57009bb091efa7e21dcb1bfd94","kind":"commit","published_at":"2025-10-21T16:35:54.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.3.2","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.3.2","dependencies_parsed_at":null,"dependency_job_id":"78e054e4-6fe7-4214-8afe-06232cf88952","purl":"pkg:github/equisoft-actions/phpcs@v2.3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.2/manifests"},{"name":"v2.3.1","sha":"45d34b56af5a00cf827bcc3a2dc9e84177a9317b","kind":"commit","published_at":"2024-12-04T21:06:39.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.3.1","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.3.1","dependencies_parsed_at":"2024-12-06T04:42:17.462Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.1/manifests"},{"name":"v2.3.0","sha":"634bd3f6322bd09807a0df6b2c7bba974336ceb8","kind":"commit","published_at":"2024-12-02T14:41:12.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.3.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.3.0","dependencies_parsed_at":"2024-12-06T04:42:17.459Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.3.0/manifests"},{"name":"v2.2.0","sha":"ad14b997284263117e611e82a8793d3e9afb7b18","kind":"commit","published_at":"2023-12-18T17:01:46.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.2.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.2.0","dependencies_parsed_at":"2024-01-27T05:24:30.239Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.2.0/manifests"},{"name":"v2.1.0","sha":"1b284e298ca021e98795aa2ee150b1f3ea84d2ac","kind":"commit","published_at":"2023-09-11T14:26:15.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.1.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.1.0","dependencies_parsed_at":"2023-09-13T05:39:40.086Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.1.0/manifests"},{"name":"v2.0.0","sha":"9f273fdc81354bef20257389a1fa538790402e2a","kind":"commit","published_at":"2022-12-20T19:19:05.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2.0.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2.0.0","dependencies_parsed_at":"2023-06-01T14:44:11.484Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2.0.0/manifests"},{"name":"v2","sha":"9f273fdc81354bef20257389a1fa538790402e2a","kind":"commit","published_at":"2022-12-20T19:19:05.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v2","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v2","dependencies_parsed_at":"2023-06-01T14:44:11.987Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v2/manifests"},{"name":"v1","sha":"57920b52089a57154fa50a2df0cd7e5f96a5d210","kind":"commit","published_at":"2022-08-22T13:44:44.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v1","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v1","dependencies_parsed_at":"2023-05-31T11:58:30.248Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1/manifests"},{"name":"v1.1.3","sha":"57920b52089a57154fa50a2df0cd7e5f96a5d210","kind":"commit","published_at":"2022-08-22T13:44:44.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v1.1.3","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v1.1.3","dependencies_parsed_at":"2023-05-31T11:58:29.777Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v1.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.3/manifests"},{"name":"v1.1.2","sha":"d5de75b22090fdb152d945e51abfd552c44ceead","kind":"commit","published_at":"2022-06-27T13:31:58.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v1.1.2","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v1.1.2","dependencies_parsed_at":"2023-05-31T11:58:30.616Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v1.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.2/manifests"},{"name":"v1.1.1","sha":"4957718b98f04f814bd47f0ce3ec8232d7a34c88","kind":"tag","published_at":"2022-04-28T13:08:59.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v1.1.1","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v1.1.1","dependencies_parsed_at":"2023-05-31T11:58:31.022Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"07d9d4c640b4b5a70e62c3fd96c0755e32718466","kind":"tag","published_at":"2022-04-21T18:00:42.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v1.1.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v1.1.0","dependencies_parsed_at":"2023-05-31T11:58:31.397Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.1.0/manifests"},{"name":"v1.0.1","sha":"ced3159cc1653e171abc19a7ebc7c7a8012f9041","kind":"tag","published_at":"2022-04-08T00:21:57.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v1.0.1","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v1.0.1","dependencies_parsed_at":"2023-05-31T11:58:31.668Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.0.1/manifests"},{"name":"v1.0.0","sha":"075f3570804c8d032b56e20cf03a01337b25eb93","kind":"tag","published_at":"2022-04-07T12:49:29.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v1.0.0","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-31T11:58:31.896Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v1.0.0/manifests"},{"name":"v0.0.1","sha":"720231f4e805bc9eed3e3ca26d2b4e0d7ec74c26","kind":"tag","published_at":"2022-03-22T18:29:16.000Z","download_url":"https://codeload.github.com/equisoft-actions/phpcs/tar.gz/v0.0.1","html_url":"https://github.com/equisoft-actions/phpcs/releases/tag/v0.0.1","dependencies_parsed_at":"2023-05-31T11:58:32.114Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/phpcs@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/tags/v0.0.1/manifests"}]},"repo_metadata_updated_at":"2026-03-26T11:18:15.597Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1,"rankings":{"downloads":null,"dependent_repos_count":24.73459039771827,"dependent_packages_count":0.0,"stargazers_count":48.242750752654096,"forks_count":35.087941689114245,"docker_downloads_count":null,"average":27.016320709871653},"purl":"pkg:githubactions/equisoft-actions/phpcs","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/equisoft-actions/phpcs","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/equisoft-actions/phpcs","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/equisoft-actions/phpcs/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2026-03-01T08:01:00.193Z","issues_count":2,"pull_requests_count":17,"avg_time_to_close_issue":18027.0,"avg_time_to_close_pull_request":359434.70588235295,"issues_closed_count":1,"pull_requests_closed_count":17,"pull_request_authors_count":3,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":17,"bot_issues_count":2,"bot_pull_requests_count":11,"past_year_issues_count":0,"past_year_pull_requests_count":1,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":117933.0,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":1,"past_year_pull_request_authors_count":1,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":1,"past_year_merged_pull_requests_count":1,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fphpcs/issues","maintainers":[],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fphpcs/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fphpcs/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fphpcs/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fphpcs/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fphpcs/codemeta","maintainers":[]}