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
2026-03-09 22:31:36 dependabot/npm_and_yarn/packages/hyde/postcss-8.5.8 8ecf7e4d7b7b09a54240cfbf57830d413cd61cec No type coverage information
2026-03-09 22:31:33 dependabot/npm_and_yarn/packages/hyde/tailwindcss-4.2.1 31d0a014cce83eade2f77d94a5eb837d4195da20 No type coverage information
2026-03-09 22:31:25 dependabot/npm_and_yarn/packages/hyde/tailwindcss/vite-4.2.1 0320020f1c10bcd100c5cbf595fe178e466d11ce No type coverage information
2026-03-09 22:31:18 dependabot/npm_and_yarn/autoprefixer-10.4.27 02940487a0bdf8ec03479e507d9254f25bb71891 No type coverage information
2026-03-09 22:31:12 dependabot/npm_and_yarn/postcss-8.5.8 387ed8aa6d39bb0f5ea714c921209e4f9b4b35ff No type coverage information

Latest test runs

timestamp branch commit
2026-03-08 13:03:03 master b9ef26705c9331cb0a15c790488feb14bfed9ded
2026-03-08 13:02:59 master b9ef26705c9331cb0a15c790488feb14bfed9ded
2026-03-08 13:02:38 master b9ef26705c9331cb0a15c790488feb14bfed9ded
2026-03-08 13:02:34 master b9ef26705c9331cb0a15c790488feb14bfed9ded
2026-03-08 13:02:00 master b9ef26705c9331cb0a15c790488feb14bfed9ded

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"
}