Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 162,
"has_wiki": false,
"homepage": null,
"languages": {
"PHP": 55064,
"Dockerfile": 235
},
"pushed_at": "2026-06-22T03:42:06Z",
"created_at": "2022-02-22T15:35:18Z",
"owner_type": "Organization",
"updated_at": "2026-07-05T14:19:30Z",
"description": "Check Exchange Rates for any currency in Laravel.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "PHP",
"significant_languages": [
"PHP"
]
},
"owner": {
"blog": "https://www.worksome.com",
"name": "Worksome",
"type": "Organization",
"login": "worksome",
"company": null,
"location": "Copenhagen, Denmark",
"followers": 70,
"avatar_url": "https://avatars.githubusercontent.com/u/29755027?v=4",
"created_at": "2017-06-28T13:43:30Z",
"is_verified": null,
"public_repos": 56,
"account_age_days": 3310
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v3.0.0",
"kind": "major",
"published_at": "2026-06-10T09:34:54Z"
},
{
"tag": "v2.5.0",
"kind": "minor",
"published_at": "2026-04-07T08:13:49Z"
},
{
"tag": "v2.4.0",
"kind": "minor",
"published_at": "2026-03-25T14:42:38Z"
},
{
"tag": "v2.3.1",
"kind": "patch",
"published_at": "2026-03-25T10:06:11Z"
},
{
"tag": "v2.3.0",
"kind": "minor",
"published_at": "2026-03-02T09:58:43Z"
},
{
"tag": "v2.2.0",
"kind": "minor",
"published_at": "2025-03-12T15:25:10Z"
},
{
"tag": "v2.1.0",
"kind": "minor",
"published_at": "2024-03-22T15:04:24Z"
},
{
"tag": "v2.0.0",
"kind": "major",
"published_at": "2024-03-22T11:19:38Z"
},
{
"tag": "v1.4.0",
"kind": "minor",
"published_at": "2024-02-16T13:15:08Z"
},
{
"tag": "v1.3.0",
"kind": "minor",
"published_at": "2023-02-01T16:51:42Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2022-03-03T12:08:25Z"
}
],
"recent_commits": [
{
"oid": "d3a4946fbb20c0f3dacf4b8faacb93d0e9e195f4",
"body": "feat: remove deprecated `Rates` getters",
"is_bot": false,
"headline": "Merge pull request #41 from worksome/feature/rates-deprecations",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-06-10T09:23:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19844aa25975835e8a650858c5e55365e6dc6e22",
"body": "Add Frankfurter v2 provider (frankfurter_v2 driver)",
"is_bot": false,
"headline": "Merge pull request #39 from anousss007/feat/frankfurter-v2-provider",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-06-10T09:22:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e3b0831d62f2b12b2ed9627fb200030de1fa4e8",
"body": "On pull requests from forks, repository secrets are unavailable, so the\n`*_ACCESS_KEY` env vars resolve to an empty string rather than being\nabsent. The skip guard only checked for `=== false`, so the tests ran\nwith an empty key and failed against the live API (e.g. CurrencyGEO\nreturns 403). Treat an empty string the same as \"not defined\" so these\ntests skip when no real key is available.",
"is_bot": false,
"headline": "test: skip real-API integration tests when the access key is empty",
"author_name": "anousss",
"author_login": null,
"committed_at": "2026-06-10T09:20:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "590ce29988b3846274a17735522d95670d5e1177",
"body": "Per review feedback on #39, collapse the separate `frankfurter_v2` driver\ninto the existing `frankfurter` driver so only one driver is maintained.\nThe `frankfurter` driver now targets the v2 API (`/rates` with `base`/\n`quotes`), which covers a much larger currency set than the ECB-only v1\n(e.g. AED,\n[…]\n_URL` now defaults to\nhttps://api.frankfurter.dev/v2, and the `frankfurter_v2` driver /\n`FRANKFURTER_V2_BASE_URL` config have been removed. Users who need the v1\nAPI should stay on v2 of this package.",
"is_bot": false,
"headline": "refactor!: fold frankfurter_v2 into the single `frankfurter` driver",
"author_name": "anousss",
"author_login": null,
"committed_at": "2026-06-10T09:19:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "57ff3d16d2f09af2f18187c3503736b8a08594be",
"body": "The bundled frankfurter driver targets the v1 API (GET /latest?from=&to= returning {rates:{CODE:rate}}). The v2 API uses GET /v2/rates?base="es= and returns a list of rows shaped {date, base, quote, rate}, so it is not reachable by swapping the base URL alone. v2 also covers a much larger curren\n[…]\nRates, registered as a new 'frankfurter_v2' driver (no API key, base_url configurable via FRANKFURTER_V2_BASE_URL). Includes unit tests, the manager dataset entry, a config block and a README section.",
"is_bot": false,
"headline": "feat: add Frankfurter v2 provider (frankfurter_v2 driver)",
"author_name": "anousss",
"author_login": null,
"committed_at": "2026-06-10T09:19:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c5c3bcc42d5e6b5e2a2b56638ad55e003fee03af",
"body": null,
"is_bot": false,
"headline": "feat: remove deprecated `Rates` getters",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-06-10T08:47:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cc481765148bb67c33d0aeb69566d76c3f0cb01",
"body": "chore: ensure base currency is float",
"is_bot": false,
"headline": "Merge pull request #40 from worksome/bugfix/phpstan-currency-geo",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-06-10T08:42:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12127c5257366d16ff39f873f51cf68f935ce476",
"body": null,
"is_bot": false,
"headline": "chore: update dependencies",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-06-10T08:41:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13f0545d06bda1b5c0895158545a26803b9d3476",
"body": null,
"is_bot": false,
"headline": "chore: ensure base currency is float",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-06-10T08:35:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22c5f820556ad025dff4dfc7f69de660de2265f4",
"body": "…abot/fetch-metadata-3\n\nchore(deps): bump dependabot/fetch-metadata from 2 to 3",
"is_bot": false,
"headline": "Merge pull request #37 from worksome/dependabot/github_actions/depend…",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-06-08T14:18:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4bce53b8a0f1b00bd55e3f04dd78b5d652944f49",
"body": "Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 2 to 3.\n- [Release notes](https://github.com/dependabot/fetch-metadata/releases)\n- [Commits](https://github.com/dependabot/fetch-metadata/compare/v2...v3)\n\n---\nupdated-dependencies:\n- dependency-name: dependabot/fetch-metadata\n dependency-version: '3'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "chore(deps): bump dependabot/fetch-metadata from 2 to 3",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-13T03:42:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "780bea3068fb1f3eee4c0f2360282325c8724cce",
"body": "feat: update `Rates` to use readonly properties",
"is_bot": false,
"headline": "Merge pull request #34 from worksome/feature/readonly-deprecations",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-04-07T08:13:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f57c295e6710aa1eb6574bd0e671a82e7ce0f3d",
"body": null,
"is_bot": false,
"headline": "chore: fix deprecation version",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T14:43:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb7f40df74e17cea98a33d1f2dbc42fb83e2c5fb",
"body": "feat: allow users to set a custom endpoint",
"is_bot": false,
"headline": "Merge pull request #35 from ju5t/frankfurter-custom-endpoint",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T14:42:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bbe5432dea76d4687a5682b5b5a4bb5845a7fbd",
"body": null,
"is_bot": false,
"headline": "style: extract `baseUrl` to variable",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T14:40:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c30949938ab3ae7027c59af5635f80abe8c3a06",
"body": null,
"is_bot": false,
"headline": "chore: add new base url config to readme",
"author_name": "ju5t",
"author_login": "ju5t",
"committed_at": "2026-03-25T14:33:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b8b97c0763238e5e08b01bf22201caca4368311",
"body": null,
"is_bot": false,
"headline": "chore: use base_url instead of endpoint",
"author_name": "ju5t",
"author_login": "ju5t",
"committed_at": "2026-03-25T14:29:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a8e5de63c76bdbd3db406bf28e732ba92f996b2",
"body": null,
"is_bot": false,
"headline": "feat: allow users to set a custom endpoint",
"author_name": "ju5t",
"author_login": "ju5t",
"committed_at": "2026-03-25T11:11:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dbfc0beb0fd8837ba37965f8813c2feb9bd69ccf",
"body": null,
"is_bot": false,
"headline": "feat: update `Rates` to use readonly properties",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T11:01:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94b2de43afb0e3405fc4467bfb02084f9e526100",
"body": "chore: reduce PHPStan errors",
"is_bot": false,
"headline": "Merge pull request #33 from worksome/feature/phpstan",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T10:45:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9790d1ccd2e465a852323232465435be29455640",
"body": null,
"is_bot": false,
"headline": "chore: reduce PHPStan errors",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T10:43:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3afdab60ca488e22e8ecfff6ddc08eb9cbd777ce",
"body": "…/composer-install-4\n\nBump ramsey/composer-install from 3 to 4",
"is_bot": false,
"headline": "Merge pull request #32 from worksome/dependabot/github_actions/ramsey…",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T10:05:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b454efb1d41d46e28697cb99529e1856f6a9c704",
"body": "Updated Frankfurter endpoint",
"is_bot": false,
"headline": "Merge pull request #25 from daannet/main",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-25T10:05:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e0e36c452eb6464c387a5174413fbf5aa9552ed",
"body": "Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 3 to 4.\n- [Release notes](https://github.com/ramsey/composer-install/releases)\n- [Commits](https://github.com/ramsey/composer-install/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: ramsey/composer-install\n dependency-version: '4'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump ramsey/composer-install from 3 to 4",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-16T03:42:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a5e86b08a35ce7008aa847eca6cf18ff5d713c9",
"body": "feat: add support for Laravel 13",
"is_bot": false,
"headline": "Merge pull request #31 from worksome/feature/laravel-13",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-03-02T09:58:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfca3c9fb5d435dd998341d1a19e16d92f9da3b1",
"body": null,
"is_bot": false,
"headline": "feat: add support for Laravel 13",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2026-02-27T17:12:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e135d8af3483d8b6199f964d506a17d9c1cb6664",
"body": "feat: add support for Laravel 12",
"is_bot": false,
"headline": "Merge pull request #27 from worksome/feature/laravel-12",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2025-03-12T15:23:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a4e167d1165e49935be1c37238039ab366b678e",
"body": null,
"is_bot": false,
"headline": "feat: add support for Laravel 12",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2025-03-12T12:04:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "906c95afdde7bd6199591cc9bad89974cb49bb5e",
"body": null,
"is_bot": false,
"headline": "Updated Frankfurter endpoint",
"author_name": "Daniël van der Tang",
"author_login": "daannet",
"committed_at": "2024-12-10T12:34:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a1a9e2ef4f45a944763902d28de032546d9da49",
"body": "Support api.getgeoapi.com.",
"is_bot": false,
"headline": "Merge pull request #19 from Saifallak/main",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-22T14:58:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1bb1cf4e3831eda743c51f078341231b0b65bf9d",
"body": null,
"is_bot": false,
"headline": "test: resolve tests for CurrencyGEO driver",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-22T14:24:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3342850519bb9fa3dc80950b6d36990f67e5dba6",
"body": null,
"is_bot": false,
"headline": "before each.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-22T13:51:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45e65fee25a23325d1d5a3a5041980460b238736",
"body": null,
"is_bot": false,
"headline": "fix test.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-22T13:44:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6bbdb45ef679610a6b9460550537b41304c6fe81",
"body": null,
"is_bot": false,
"headline": "tests.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-22T13:27:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd4ec7d124bbd265040a306831d4c4748be4a3ac",
"body": null,
"is_bot": false,
"headline": "test for currency geo.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-22T13:24:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6ddd7abbdd528d36b795866bad5ec16a7dfb092",
"body": null,
"is_bot": false,
"headline": "revert changes.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-22T13:08:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe20a8e098a8945b81e51e8c6cdedec2a61e0cf5",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into main",
"author_name": "Saif Allah Khaled",
"author_login": "Saifallak",
"committed_at": "2024-03-22T13:06:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30b2f74f20a02005c46510b26fbf986b0f7ac0a6",
"body": "feat: prepare for 2.x release",
"is_bot": false,
"headline": "Merge pull request #24 from worksome/feature/frankfurter",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-22T11:13:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d07f68657fca345405d068f15b593e9dc2e47377",
"body": null,
"is_bot": false,
"headline": "chore: prepare for v2.x release",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-22T10:34:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2f8b7bf4181cfccdfc3f0e8b6851975a38dca17",
"body": null,
"is_bot": false,
"headline": "feat: change the default driver to Frankfurter.app",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-22T10:28:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "216d40654c0b5f0d6005104a9b81250dc6dbfae4",
"body": "fix: resolve issues with ExchangeRate.host",
"is_bot": false,
"headline": "Merge pull request #23 from Saifallak/fix/exhange-host",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-22T10:24:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca53a9709489748d1e740a16a07bd47cf28132db",
"body": null,
"is_bot": false,
"headline": "test: resolve ExchangeRate.host tests",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-22T10:15:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3125a13af4fc50345803d492fc1ccea0953ffbd4",
"body": null,
"is_bot": false,
"headline": "fix exchange host.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-22T10:15:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef679a3ba3e2f98601b581d5a0908b0573b65634",
"body": "This adds support for setting the cache store with the `cache` driver.\r\n\r\n---------\r\n\r\nCo-authored-by: Owen Voke <development@voke.dev>",
"is_bot": false,
"headline": "feat: add support for setting cache store (#14)",
"author_name": "Oliver Nybroe",
"author_login": "olivernybroe",
"committed_at": "2024-03-21T16:48:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46e6c9f3924a8b654ad639578af79f511a2f239b",
"body": null,
"is_bot": false,
"headline": "revert exchange key fix.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-21T15:51:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f12599fdbeaec33dc6ca44ed9aaaf7cc3f67c05f",
"body": null,
"is_bot": false,
"headline": "revert exchange key fix.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2024-03-21T15:50:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d843151736ca3ca932347b23c9d37644bdbe98a8",
"body": "…/composer-install-3\n\nBump ramsey/composer-install from 2 to 3",
"is_bot": false,
"headline": "Merge pull request #21 from worksome/dependabot/github_actions/ramsey…",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-03-20T11:02:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45e9f3bca0220414e713ae06262ce62f425ed297",
"body": "Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 2 to 3.\n- [Release notes](https://github.com/ramsey/composer-install/releases)\n- [Commits](https://github.com/ramsey/composer-install/compare/v2...v3)\n\n---\nupdated-dependencies:\n- dependency-name: ramsey/composer-install\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump ramsey/composer-install from 2 to 3",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-03-04T03:25:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3706057558306b7fb226c738f5006c30d717622",
"body": "feat: add support for Laravel 11",
"is_bot": false,
"headline": "Merge pull request #20 from worksome/feature/laravel-11",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-02-16T13:13:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f75f3d6606c07fcbf66389ded9993a931b97142",
"body": null,
"is_bot": false,
"headline": "ci: update action dependencies",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-02-07T10:53:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d705480f7e66bdef2734272feb2c1514fb54e3c5",
"body": null,
"is_bot": false,
"headline": "feat: add support for Laravel 11",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2024-02-07T10:53:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f6f1b834c739e73a2f6431777122755c4074fe1",
"body": null,
"is_bot": false,
"headline": "lower api calls",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2023-09-29T01:37:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "476a9904ca32b13a267fd11ac51714feccf46ebb",
"body": null,
"is_bot": false,
"headline": "CurrencyGeo",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2023-09-29T01:29:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a5baf13451e514c0beefffb92a4859289662e30",
"body": null,
"is_bot": false,
"headline": "exchange rate fix.",
"author_name": "Saifallak",
"author_login": "Saifallak",
"committed_at": "2023-09-29T00:32:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d31e57edcc19ed63a227062f1ef45bf128b403c2",
"body": "feat: update to Pest 2.x",
"is_bot": false,
"headline": "Merge pull request #15 from worksome/feature/pest-2.x",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2023-03-27T10:55:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2113fa1a14003d6fc68931bff7e8192acde0c5c",
"body": null,
"is_bot": false,
"headline": "feat: update to Pest 2.x",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2023-03-27T10:16:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "782ba461a0fc5977afed175f2e041bfd84c60aca",
"body": "chore(deps): Laravel 10 support",
"is_bot": false,
"headline": "Merge pull request #12 from worksome/l10",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2023-02-01T16:51:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78218d56041b7b8312c96237c71aa0976728e2e3",
"body": "Adds support for the upcoming release of Laravel 10.",
"is_bot": false,
"headline": "chore(deps): Laravel 10 support",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2023-02-01T16:45:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33665b146e73ff04f46b4cc605095ba40bfb15b9",
"body": "Adds support for the upcoming release of Laravel 10.",
"is_bot": false,
"headline": "chore(deps): Laravel 10 support",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2023-02-01T16:43:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e646d0360481cdace08d30508c80a4de2713a8d",
"body": "Adds support for the upcoming release of Laravel 10.",
"is_bot": false,
"headline": "chore(deps): Laravel 10 support",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2023-02-01T15:47:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca1720803041ff7d54f5f57d7788e268d96807d5",
"body": "Adds information to the AboutCommand regarding the active driver",
"is_bot": false,
"headline": "Merge pull request #9 from worksome/laravel_about_command",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2023-02-01T15:35:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16a1daed9ee19da5308dee6dc8efc3c147d3d836",
"body": "Adds support for the upcoming release of Laravel 10.",
"is_bot": false,
"headline": "chore(deps): Laravel 10 support",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2023-02-01T15:34:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "457a08f9d6935f11d76de973042364657d938460",
"body": "Adds support for the upcoming release of Laravel 10.",
"is_bot": false,
"headline": "chore(deps): Laravel 10 support",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2023-02-01T15:15:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b70a291e8a979384b6d52c56c85669543da9c69",
"body": "feat: require PHP 8.2 or later",
"is_bot": false,
"headline": "Merge pull request #11 from worksome/feature/php-8.2",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2023-01-04T10:46:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b0b59c4858d81fc941233f5215ecddb08c1c01e",
"body": null,
"is_bot": false,
"headline": "chore: remove unnecessary PHPStan ignored errors",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2023-01-04T10:41:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0964a7e020a23272fb23d255dd64bc58bf939be8",
"body": null,
"is_bot": false,
"headline": "feat: require PHP 8.2 or later",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2023-01-04T09:41:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "255541152f56c887c4f5e812606dfb7ddd1983e5",
"body": "…/composer-install-2\n\nBump ramsey/composer-install from 1 to 2",
"is_bot": false,
"headline": "Merge pull request #10 from worksome/dependabot/github_actions/ramsey…",
"author_name": "Oliver Nybroe",
"author_login": "olivernybroe",
"committed_at": "2022-11-21T07:37:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38fed43afa26e3b4ca5ccc565c21257d1a7a9fc9",
"body": "Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 1 to 2.\n- [Release notes](https://github.com/ramsey/composer-install/releases)\n- [Commits](https://github.com/ramsey/composer-install/compare/v1...v2)\n\n---\nupdated-dependencies:\n- dependency-name: ramsey/composer-install\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump ramsey/composer-install from 1 to 2",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2022-11-21T03:25:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "285655b73ab794129676cc4e9caa3ff3eaf464d2",
"body": null,
"is_bot": false,
"headline": "Adds information to the AboutCommand regarding the active driver.",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-07-26T12:59:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f1acecabc06f849be64909e8917395a64790742",
"body": null,
"is_bot": false,
"headline": "Updates CHANGELOG",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-07-21T14:44:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7be5de88b1c91159c065f381aefcee6a67a69bbe",
"body": "Update Termwind Layouts",
"is_bot": false,
"headline": "Merge pull request #8 from xiCO2k/fix/update-termwind-layouts",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-07-21T14:43:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b0808bdd2f0d87ac6630ba8eee74ee2a71411d1",
"body": null,
"is_bot": false,
"headline": "fix: Update Termwind Layouts",
"author_name": "Francisco Madeira",
"author_login": "xiCO2k",
"committed_at": "2022-07-21T14:32:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a71081bfcc6f28c0bf121a22d4d3a5c1feefb41",
"body": null,
"is_bot": false,
"headline": "Updates CHANGELOG",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-04-14T08:38:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dbeff45bccd8d8d22de21ff43c4b516d91b97508",
"body": null,
"is_bot": false,
"headline": "Updates CHANGELOG",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-04-14T08:13:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2e048c3ae144a94a3dc994f6e1aa2d50ac1d7a6",
"body": "Add frankfurter.app driver",
"is_bot": false,
"headline": "Merge pull request #7 from julesjanssen/main",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-04-14T08:12:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c65ebd6c072a08b7e36711a482a5b4fffbce1d0a",
"body": null,
"is_bot": false,
"headline": "add frankfurter tests",
"author_name": "jules",
"author_login": "julesjanssen",
"committed_at": "2022-04-13T10:12:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "212b884612acfc4a0694df0dd44426569b390aa0",
"body": null,
"is_bot": false,
"headline": "add frankfurter to readme",
"author_name": "jules",
"author_login": "julesjanssen",
"committed_at": "2022-04-13T10:05:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8cfa1256e545614b55e81bb7eef2653750b93938",
"body": null,
"is_bot": false,
"headline": "add frankfurter.app driver",
"author_name": "jules",
"author_login": "julesjanssen",
"committed_at": "2022-04-13T10:03:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a46fcbc595409aec3cdf5856b324a8bf1d553ec",
"body": "…/checkout-3\n\nBump actions/checkout from 2 to 3",
"is_bot": false,
"headline": "Merge pull request #6 from worksome/dependabot/github_actions/actions…",
"author_name": "Oliver Nybroe",
"author_login": "olivernybroe",
"committed_at": "2022-03-07T07:55:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06719357f29d70240434f1154908a428f9aeb616",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v2...v3)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump actions/checkout from 2 to 3",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2022-03-07T03:15:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edc3a7fb58be38590d55dda5c3d7fc0b40ff9014",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG.md",
"author_name": "Oliver Nybroe",
"author_login": "olivernybroe",
"committed_at": "2022-03-03T12:09:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "857b3543177383f43760dc23719aab07c7c97b3e",
"body": "fix: FlatCurrencyCodeProvider to support all currencies",
"is_bot": false,
"headline": "Merge pull request #5 from sweptsquash/main",
"author_name": "Oliver Nybroe",
"author_login": "olivernybroe",
"committed_at": "2022-03-03T12:06:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b0ec0070fec5d386f4dfc17ea07607d821cae23",
"body": null,
"is_bot": false,
"headline": "fix: FlatCurrencyCodeProvider to support all currencies",
"author_name": "Stewart Marsh",
"author_login": null,
"committed_at": "2022-03-03T11:01:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e81d385b34447a3e38cff132af9031c78180e8a",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T16:00:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "70f81720154db2c3fa6f101efd010a90c629f2c0",
"body": null,
"is_bot": false,
"headline": "Updates CHANGELOG.md",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T15:57:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58a3ae98b5c42a030f17eaffdbd11c9733a3a84d",
"body": "Adds support for https://exchangerate.host/ as a driver",
"is_bot": false,
"headline": "Merge pull request #4 from worksome/exchangerate_support",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T15:55:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "826877e8dd4438837281a43c71d80a03ab1a61e8",
"body": null,
"is_bot": false,
"headline": "Makes exchange_rate the default.",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T15:50:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f1afb8ff014934751a7dde159180c86f0d50004",
"body": null,
"is_bot": false,
"headline": "Adds integration tests",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T15:43:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0d1b42d969b28b46a3b0fa11a6621933ab4b997",
"body": null,
"is_bot": false,
"headline": "Adds support for https://exchangerate.host/",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T15:36:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84aad799be82c30e94388142fd5f958945df0fa2",
"body": null,
"is_bot": false,
"headline": "Adds support for https://exchangerate.host/",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T15:34:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52e411dc795be29254f4210004ca085569bd07b0",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T13:11:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4494359f5b0334660f02a229bcb682b4ae9b06bd",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T13:10:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f061026cf931a614092a2c4247e5e630a008b5f6",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T10:52:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a39984b39d10b34b390c9a32e166b2d59223762d",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T10:45:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "358f7bdccd7f8b0dc4c9d823e05b15c1fd16c36e",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T10:35:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74f5c83d115bf0eb955fdbdb4787518440f0f06b",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T10:35:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a145bed5a4a6dffeb298a14fc620d0dc32e5be5f",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T09:58:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a125196752f0be7636b597c6c4f090648b772ac",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T09:54:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aafab2348f952d198c1efdc1db2c70db6ef6222a",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T09:52:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4409e453522454f12ce842e87441ec710ef73fbe",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Luke Downing",
"author_login": "lukeraymonddowning",
"committed_at": "2022-02-23T09:51:20Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 11,
"commits_last_year": 26,
"latest_release_at": "2026-06-10T09:34:54Z",
"latest_release_tag": "v3.0.0",
"releases_from_tags": false,
"days_since_last_push": 30,
"active_weeks_last_year": 8,
"days_since_latest_release": 41,
"mean_days_between_releases": 136.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 62,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "worksome/exchange",
"exists": true,
"license": "MIT",
"keywords": [
"laravel",
"exchange",
"worksome"
],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/worksome/exchange",
"is_deprecated": false,
"latest_version": "v3.0.0",
"repository_url": "https://github.com/worksome/exchange",
"versions_count": 16,
"total_downloads": 616546,
"dependents_count": 0,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 18529,
"first_published_at": null,
"latest_published_at": "2026-06-10T09:23:03Z",
"latest_version_yanked": null,
"days_since_latest_publish": 41
}
]
},
"popularity": {
"forks": 11,
"stars": 125,
"watchers": 8,
"fork_history": {
"days": [
{
"date": "2022-02-27",
"count": 1
},
{
"date": "2022-03-03",
"count": 1
},
{
"date": "2022-03-19",
"count": 1
},
{
"date": "2022-05-28",
"count": 1
},
{
"date": "2023-04-13",
"count": 1
},
{
"date": "2023-09-29",
"count": 1
},
{
"date": "2024-10-09",
"count": 1
},
{
"date": "2024-12-10",
"count": 1
},
{
"date": "2025-02-17",
"count": 1
},
{
"date": "2025-04-16",
"count": 1
},
{
"date": "2026-03-25",
"count": 1
}
],
"complete": true,
"collected": 11,
"total_forks": 11
},
"star_history": {
"days": [
{
"date": "2022-02-23",
"count": 34
},
{
"date": "2022-02-24",
"count": 8
},
{
"date": "2022-02-25",
"count": 7
},
{
"date": "2022-02-26",
"count": 5
},
{
"date": "2022-02-27",
"count": 2
},
{
"date": "2022-02-28",
"count": 3
},
{
"date": "2022-03-01",
"count": 1
},
{
"date": "2022-03-03",
"count": 4
},
{
"date": "2022-03-04",
"count": 1
},
{
"date": "2022-03-08",
"count": 1
},
{
"date": "2022-03-09",
"count": 2
},
{
"date": "2022-03-10",
"count": 1
},
{
"date": "2022-03-16",
"count": 2
},
{
"date": "2022-03-19",
"count": 1
},
{
"date": "2022-03-25",
"count": 1
},
{
"date": "2022-04-04",
"count": 1
},
{
"date": "2022-04-12",
"count": 1
},
{
"date": "2022-04-14",
"count": 5
},
{
"date": "2022-04-16",
"count": 1
},
{
"date": "2022-05-25",
"count": 1
},
{
"date": "2022-05-28",
"count": 1
},
{
"date": "2022-05-29",
"count": 3
},
{
"date": "2022-06-20",
"count": 1
},
{
"date": "2022-09-10",
"count": 1
},
{
"date": "2022-10-07",
"count": 1
},
{
"date": "2022-10-09",
"count": 1
},
{
"date": "2023-02-01",
"count": 3
},
{
"date": "2023-03-23",
"count": 1
},
{
"date": "2023-05-05",
"count": 1
},
{
"date": "2023-09-25",
"count": 1
},
{
"date": "2023-11-15",
"count": 1
},
{
"date": "2023-11-19",
"count": 1
},
{
"date": "2024-01-31",
"count": 1
},
{
"date": "2024-03-09",
"count": 1
},
{
"date": "2024-03-13",
"count": 1
},
{
"date": "2024-03-31",
"count": 1
},
{
"date": "2024-04-23",
"count": 1
},
{
"date": "2024-05-10",
"count": 1
},
{
"date": "2024-08-21",
"count": 1
},
{
"date": "2024-09-15",
"count": 1
},
{
"date": "2024-09-25",
"count": 1
},
{
"date": "2024-10-17",
"count": 1
},
{
"date": "2024-10-29",
"count": 1
},
{
"date": "2024-11-03",
"count": 1
},
{
"date": "2024-11-26",
"count": 1
},
{
"date": "2025-01-11",
"count": 1
},
{
"date": "2025-01-14",
"count": 1
},
{
"date": "2025-03-05",
"count": 1
},
{
"date": "2025-03-28",
"count": 1
},
{
"date": "2025-04-16",
"count": 1
},
{
"date": "2025-08-05",
"count": 1
},
{
"date": "2025-09-09",
"count": 1
},
{
"date": "2025-10-19",
"count": 1
},
{
"date": "2025-10-31",
"count": 1
},
{
"date": "2025-12-14",
"count": 1
},
{
"date": "2026-01-17",
"count": 1
},
{
"date": "2026-03-04",
"count": 1
},
{
"date": "2026-04-05",
"count": 1
},
{
"date": "2026-07-05",
"count": 1
}
],
"complete": true,
"collected": 125,
"total_stars": 125
},
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": true,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 3981,
"source_files_sampled": 39,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"composer.json"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 11,
"direct_affected_count": 0
},
"ecosystems": [
"packagist"
],
"dependencies": [
{
"name": "illuminate/contracts",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^12.0|^13.0"
},
{
"name": "nunomaduro/termwind",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^2.4"
},
{
"name": "spatie/laravel-package-tools",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^1.93"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "illuminate/contracts",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "nunomaduro/termwind",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "spatie/laravel-package-tools",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "guzzlehttp/guzzle",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "larastan/larastan",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "nunomaduro/collision",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "orchestra/testbench",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "pestphp/pest",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "pestphp/pest-plugin-laravel",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "php",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "worksome/coding-style",
"direct": false,
"version": null,
"ecosystem": "packagist"
}
],
"collected": true,
"truncated": false,
"total_count": 11,
"direct_count": 3,
"indirect_count": 8
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 28,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 2,
"closed_unmerged_prs": 5
},
"bus_factor": 2,
"bot_contributors": 2,
"top_contributors": [
{
"type": "User",
"login": "lukeraymonddowning",
"commits": 43,
"avatar_url": "https://avatars.githubusercontent.com/u/12202279?v=4"
},
{
"type": "User",
"login": "owenvoke",
"commits": 36,
"avatar_url": "https://avatars.githubusercontent.com/u/1899334?v=4"
},
{
"type": "User",
"login": "Saifallak",
"commits": 12,
"avatar_url": "https://avatars.githubusercontent.com/u/6053156?v=4"
},
{
"type": "User",
"login": "olivernybroe",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/5870441?v=4"
},
{
"type": "User",
"login": "ju5t",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/3635751?v=4"
},
{
"type": "User",
"login": "julesjanssen",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/492036?v=4"
},
{
"type": "User",
"login": "daannet",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/3153179?v=4"
},
{
"type": "User",
"login": "xiCO2k",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/823088?v=4"
}
],
"contributors_sampled": 8,
"top_contributor_share": 0.413
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"dependabot-auto-merge.yml",
"static.yml",
"tests.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": true,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 7,
"reason": "9 out of 12 merged PRs checked by a CI test -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 6,
"reason": "Found 6/10 approved changesets -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 12 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 8,
"reason": "10 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "d3a4946fbb20c0f3dacf4b8faacb93d0e9e195f4",
"ran_at": "2026-07-22T03:52:06Z",
"aggregate_score": 6.4,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": true,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-20T03:42:27Z",
"oldest_open_prs": [
{
"number": 16,
"created_at": "2023-04-13T12:05:06Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 42,
"created_at": "2026-06-22T03:42:07Z",
"last_comment_at": "2026-06-22T03:42:19Z",
"last_comment_author": "coderabbitai"
}
],
"last_merged_pr_at": "2026-06-10T09:23:04Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/worksome/exchange",
"host": "github.com",
"name": "exchange",
"owner": "worksome"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"security": 64,
"vitality": 67,
"community": 58,
"governance": 77,
"engineering": 57
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 67,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"commits_last_year": 26,
"human_commit_share": 0.95,
"days_since_last_push": 30,
"active_weeks_last_year": 8
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 30 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 30
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "8/52 weeks with commits",
"points": 5.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 8
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "26 commits in the last year",
"points": 12.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 26
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "10 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8",
"points": 8,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 84,
"inputs": {
"releases_count": 11,
"latest_release_tag": "v3.0.0",
"releases_from_tags": false,
"days_since_latest_release": 41,
"mean_days_between_releases": 136.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "11 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 11
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 41 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 41
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~136.1 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 136.1
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 41,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 41 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 41
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 58,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 47,
"inputs": {
"forks": 11,
"stars": 125,
"watchers": 8,
"growth_state": "organic",
"growth_factor_pct": 100
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "125 stars",
"points": 34,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 125
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "11 forks",
"points": 8.3,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 11
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "8 watchers",
"points": 4.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 8
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"packages": [
"worksome/exchange"
],
"dependents": 0,
"ecosystems": "packagist",
"total_downloads": 616546,
"monthly_downloads": 18529
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "18,529 downloads/month across packagist",
"points": 56.9,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 18529,
"ecosystems": "packagist"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "0 packages depend on it",
"points": 0,
"status": "missed",
"details": [
{
"code": "registry_dependents",
"params": {
"count": 0
}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "good",
"name": "Sustainability & Governance",
"value": 77,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 8,
"top_contributor_share": 0.413
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 41% of commits",
"points": 13.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 41
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "8 contributors",
"points": 10.8,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 8
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 12 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 88,
"inputs": {
"merged_prs": 28,
"open_issues": 0,
"closed_issues": 2,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 5
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 46.8,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "28/33 decided PRs merged",
"points": 32.5,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 28,
"decided": 33
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 6/10 approved changesets -- score normalized to 6",
"points": 9,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"followers": 70,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "worksome",
"public_repos": 56,
"account_age_days": 3310
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "70 followers of worksome",
"points": 13.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 70,
"login": "worksome"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "56 public repos, account ~9 yr old",
"points": 24.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 56
}
},
{
"code": "account_age_years",
"params": {
"years": 9
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"worksome/exchange"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 41
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on packagist",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "packagist"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 41 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 41
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "16 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 16
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 57,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": true,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "9 out of 12 merged PRs checked by a CI test -- score normalized to 7",
"points": 14,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 64,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 64,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 12,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 6,
"scorecard_aggregate": 6.4
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "9 out of 12 merged PRs checked by a CI test -- score normalized to 7",
"points": 1.8,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 6/10 approved changesets -- score normalized to 6",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 12 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "10 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 11
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "at_risk",
"name": "AI Readiness",
"value": 42,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 33,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.611,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "58 of 95 human commits state their intent (structured subject or explanatory body)",
"points": 32.6,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 58,
"sampled": 95
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 44,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": true,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0.05
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "Dockerfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Dockerfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "5 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 5,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "PHP",
"largest_source_bytes": 3981,
"source_files_sampled": 39,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "PHP without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "PHP"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/39 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 39,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-22T03:52:24.000386Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/w/worksome/exchange.svg",
"full_name": "worksome/exchange",
"license_state": "standard",
"license_spdx": "MIT"
}