HydePHP CI Services
HydePHP CI Service vD9EB4B5

About

Welcome to the public frontend for the HydePHP Continuous Integration server!

This website powers many of the custom static analysis tools and code checks run for each commit to the HydePHP/Develop monorepository.

Latest commits

timestamp branch commit type coverage
2025-09-10 02:03:03 dependabot/npm_and_yarn/packages/vite-plugin/vite-6.3.6 112214958501270867df17ee4202aca3d192839d No type coverage information
2025-09-08 21:27:12 dependabot/npm_and_yarn/vite-7.1.5 92a96f99d299b12a5545b53481f9a83297bc06df No type coverage information
2025-09-08 21:24:38 dependabot/npm_and_yarn/packages/hyde/vite-7.1.5 b1f5da237d5f0dfd67352daa36a3b04e58d142f0 No type coverage information
2025-09-04 21:10:42 dependabot/npm_and_yarn/packages/hyde/tailwindcss-4.1.13 ee541312eef04256af70bc732fb298888697cf89 No type coverage information
2025-09-04 21:10:35 dependabot/npm_and_yarn/packages/hyde/tailwindcss/vite-4.1.13 5aa91d17df5b1c20332460da7faa4e806a784cb1 No type coverage information

Latest test runs

timestamp branch commit
2025-09-01 10:48:46 2277/merge 3919f0763ae6c0acf9f642383d736c1d78cf13c5
2025-08-31 18:30:19 2277/merge 0403a7766aa1a0ea05e28cb6f87032543139ccc1
2025-08-31 18:28:38 2277/merge 0403a7766aa1a0ea05e28cb6f87032543139ccc1
2025-08-31 18:19:29 master 0d314d57acae78703f5f99dc6b401c9a81584ce7
2025-08-31 18:19:17 master 0d314d57acae78703f5f99dc6b401c9a81584ce7

API Documentation

Please note that the API is not stable, and may change without notice.

List Commits

Endpoint:

  • HTTP Method: GET
  • URL: /api/commits

Description:

This endpoint retrieves a list of the most recent commits. It returns an array of commit objects, each containing information about the commit, such as SHA, branch, creation date, and type coverage.

Request Parameters:

None

Response:

  • Status Code: 200 (OK)
  • Content Type: JSON
  • Response Body Example:
[
    {
        "sha": "aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d",
        "branch": "master",
        "created_at": "2023-11-08 12:34:56",
        "type_coverage": "99.60"
    },
    {
        "sha": "7c211433f02071597741e6ff5a8ea34789abbf43",
        "branch": "feature/example",
        "created_at": "2023-11-07 14:22:10",
        "type_coverage": "100.00"
    }
]

Please note that this is limited to the last 25 commits for unauthenticated users. Need more? Please contact us.

Show Commit Details

Endpoint:

  • HTTP Method: GET
  • URL: /api/commits/{commit}

Description:

This endpoint retrieves details of a specific commit identified by its unique sha identifier. It returns information about the specified commit, including SHA, branch, creation date, and type coverage.

Request Parameters:

  • {commit}: The unique identifier of the commit.

Response:

  • Status Code: 200 (OK)
  • Content Type: JSON
  • Response Body Example:
{
    "sha": "aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d",
    "branch": "master",
    "created_at": "2023-11-08 12:34:56",
    "type_coverage": "100.00"
}