Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [
"php",
"testing",
"snapshots"
],
"is_fork": false,
"size_kb": 68,
"has_wiki": false,
"homepage": "https://pestphp.com",
"languages": {
"PHP": 4998
},
"pushed_at": "2026-07-29T15:37:19Z",
"created_at": "2020-05-18T19:11:27Z",
"owner_type": "Organization",
"updated_at": "2026-06-04T15:41:24Z",
"description": "Add snapshot testing capabilities to Pest",
"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://spatie.be/open-source",
"name": "Spatie",
"type": "Organization",
"login": "spatie",
"company": null,
"location": "Antwerp, Belgium",
"followers": 3808,
"avatar_url": "https://avatars.githubusercontent.com/u/7535935?v=4",
"created_at": "2014-05-09T16:26:39Z",
"is_verified": null,
"public_repos": 524,
"account_age_days": 4463
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "2.3.1",
"kind": "patch",
"published_at": "2026-04-27T15:52:41Z"
},
{
"tag": "2.3.0",
"kind": "minor",
"published_at": "2026-02-09T08:41:39Z"
},
{
"tag": "2.2.1",
"kind": "patch",
"published_at": "2025-08-24T20:39:16Z"
},
{
"tag": "2.2.0",
"kind": "minor",
"published_at": "2024-09-20T14:13:08Z"
},
{
"tag": "2.1.0",
"kind": "minor",
"published_at": "2023-09-11T14:42:20Z"
},
{
"tag": "2.0.1",
"kind": "patch",
"published_at": "2023-03-29T15:58:20Z"
},
{
"tag": "2.0.0",
"kind": "major",
"published_at": "2023-02-09T13:37:10Z"
},
{
"tag": "1.1.0",
"kind": "minor",
"published_at": "2021-07-08T18:01:52Z"
},
{
"tag": "0.3.1",
"kind": "patch",
"published_at": "2020-09-30T23:37:32Z"
}
],
"recent_commits": [
{
"oid": "983185f92f64536aa47d7f3813f5fc27d90a9ae2",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2026-04-27T15:52:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "188c77074815c633d6b21c2392ace9989659b1c3",
"body": "PHP 8.1 reached end-of-life in November 2025 and the Pest ecosystem has moved on:\nPest 2.36+ requires PHP 8.2, and earlier Pest 2.x versions hit unresolvable\nphpunit/paratest version conflicts on PHP 8.1. Bump the package's PHP\nrequirement to ^8.2 to match.\n\nAlso flip fail-fast to false so a single matrix failure no longer cancels the\nother jobs and hides their results.",
"is_bot": false,
"headline": "Drop PHP 8.1 support and stop fail-fast in CI",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2026-04-27T15:44:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f47ee9a34ad1ba2874e8126ea24b3373ff75d012",
"body": "…ions constraint\n\nThe --ignore-platform-req=php flag was forcing PHP 8.2+ packages (sebastian/version 5.x with readonly properties) onto the PHP 8.1 matrix job, causing the test runner to crash before any test ran.\n\nBump spatie/phpunit-snapshot-assertions to ^5.3.2 since the recently merged double-i\n[…]\ning the snapshot ID, which only happens from 5.3.2 onward.\n\nAlso expand matrix to PHP 8.3 / 8.4 and update actions/checkout to v4.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix CI by removing --ignore-platform-req=php and bump snapshot-assert…",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2026-04-27T15:41:38Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "05761047ae8ea1ede5126804423bf6f36faefa13",
"body": "…r to fix duplicate increment (#23)",
"is_bot": false,
"headline": "Remove redundant incrementing of SnapshotIdAware::$snapshotIncremento…",
"author_name": "Philip Iezzi (Pipo)",
"author_login": "onlime",
"committed_at": "2026-04-27T15:35:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa8649bd554cceb6fe5f20b5fab810ab50daf555",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2026-02-09T08:41:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82bb5771f2900b035e3709b6cca6d42c9bdf6cb5",
"body": "Version 5.3.1 moved $snapshotIncrementor and the incrementing logic\nfrom MatchesSnapshots into SnapshotIdAware. Since this package overrides\nSnapshotIdAware via exclude-from-classmap, we need to mirror those\nchanges here.\n\n- Declare $snapshotIncrementor property\n- Add setUpSnapshotIncrementor() befo\n[…]\n accept optional $id parameter and handle\n incrementing (matching the upstream signature)\n- Bump minimum phpunit-snapshot-assertions to ^5.3.1\n\nCo-authored-by: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Support phpunit-snapshot-assertions 5.3.1",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2026-02-09T08:41:28Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "03d07de655894228cb8b5cbb91eaefff1ca63fc1",
"body": "Update issue template",
"is_bot": false,
"headline": "Merge pull request #21 from spatie/fix-issue-template",
"author_name": "Alex Vanderbist",
"author_login": "AlexVanderbist",
"committed_at": "2025-09-15T09:23:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8603fe51cb97a38be3669020549a472559f6dfcf",
"body": null,
"is_bot": false,
"headline": "Update issue template",
"author_name": "Alex Vanderbist",
"author_login": "AlexVanderbist",
"committed_at": "2025-09-08T06:58:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c0c8be2e81f39289b20e5bee190ef3b88b4184e6",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2025-08-24T20:39:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "103a6746709a79033510d891c6393821fc3905d5",
"body": null,
"is_bot": false,
"headline": "Update pestphp/pest version requirement to include 4.0",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2025-08-24T20:38:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30a1ad28074cfd454f9071478617a7bc86f4c271",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG",
"author_name": "Nielsvanpach",
"author_login": "Nielsvanpach",
"committed_at": "2024-09-20T14:13:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7e600811fe056cd2a29e7716edb48e8c4b96c96",
"body": null,
"is_bot": false,
"headline": "Fix styling",
"author_name": "Nielsvanpach",
"author_login": "Nielsvanpach",
"committed_at": "2024-09-20T14:13:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c304dee48c041b660881d70743468537f58f85d2",
"body": "Support PEST v3",
"is_bot": false,
"headline": "Merge pull request #20 from onlime/pest3-support",
"author_name": "Niels Vanpachtenbeke",
"author_login": "Nielsvanpach",
"committed_at": "2024-09-20T14:12:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "396bb27f7925e94041d249d200857566b5d243d3",
"body": null,
"is_bot": false,
"headline": "Support PEST v3",
"author_name": "Philip Iezzi",
"author_login": "onlime",
"committed_at": "2024-09-10T07:07:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a24ea0b2e3e9379d042aa8683beb3352644ef2d1",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2023-09-11T14:42:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32c99071724a904be1843acdb39089fe20d24b60",
"body": null,
"is_bot": false,
"headline": "Fix styling",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2023-09-11T14:41:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b49f900bf46957c43adc304986e4eced380cbc3e",
"body": null,
"is_bot": false,
"headline": "add support for image snapshots",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-09-11T14:41:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "499d23571f6acb4ba59a46d4f7a1ec9ba6904d2d",
"body": "fix: include dataset and remove prefix",
"is_bot": false,
"headline": "Merge pull request #16 from owenvoke/patch-1",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-03-29T15:57:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "219b287071594975c668c57ef94c842113b56347",
"body": null,
"is_bot": false,
"headline": "fix: include dataset and remove prefix",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2023-03-29T15:04:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2bd182f082bc2ee0e58dbd92df63c601980abd49",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2023-02-09T13:37:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3faed90c28ebbcbcfd0ecb99a8d93897e5fc30b",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-02-09T13:36:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c990d993b721ab677988791552909994265d6ff0",
"body": "v2 - update for Pest 2",
"is_bot": false,
"headline": "Merge pull request #14 from spatie/v2",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-02-09T13:36:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89cc5034705da0c3610243b4521f67cbaed1c963",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into v2",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-02-09T13:35:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2af14c196666466f0038fb9f5871bf896810d0d2",
"body": null,
"is_bot": false,
"headline": "Update run-tests.yml",
"author_name": "Niels Vanpachtenbeke",
"author_login": "Nielsvanpach",
"committed_at": "2023-01-10T14:11:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62ef7224222ef3a076fad6d86556c3249c6cb22f",
"body": null,
"is_bot": false,
"headline": "Merge branch 'v2' of github.com:spatie/pest-plugin-snapshots into v2",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-01-10T14:04:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a1aa6b7a9621948fbb0f30fb8956be969a1483b",
"body": null,
"is_bot": false,
"headline": "wip",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-01-10T14:04:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d898744acba6b5b2d75094bfd8b38f2ba59d5ef8",
"body": null,
"is_bot": false,
"headline": "wip",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-01-10T14:03:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f75beb06e5ff429eb93d667218f642aea8416f3",
"body": null,
"is_bot": false,
"headline": "Fix styling",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2023-01-10T13:25:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de267b89b4f2ee4e97552d99033642e0b250a141",
"body": null,
"is_bot": false,
"headline": "wip",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-01-10T13:25:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad914c9e3da3596900b8d885ea3925375233a72b",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2023-01-10T09:00:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3dcd198f3390b96560139353f2cd0f928f6ca851",
"body": null,
"is_bot": false,
"headline": "Use organisation-wide community health files",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2022-03-21T14:38:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1002de96a1997a16a1295f761768bd6303beb57e",
"body": null,
"is_bot": false,
"headline": "Change copy",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2022-03-21T12:40:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa59e5c2df3323873ad4cad89c97b00448a44534",
"body": null,
"is_bot": false,
"headline": "Change copy",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2022-03-21T12:11:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "669e38242d3071e9e78ae8eb7e297bf131aa246c",
"body": null,
"is_bot": false,
"headline": "Add banner",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2022-03-09T16:23:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51d5964cb0abf1c415a84c26e54f8493327034a8",
"body": null,
"is_bot": false,
"headline": "Update run-tests.yml",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2021-11-18T09:19:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0828a439143a9594c52da96471f3c5cf7cb676d8",
"body": null,
"is_bot": false,
"headline": "Add changelog workflow (automated commit)",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2021-11-15T12:29:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39f21e2379b81f1a708b5c37e5a61a7e623d2ed1",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' of github.com:spatie/pest-plugin-snapshots",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2021-07-17T12:11:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cbc22af1255bf5d1f4302c3d057106dbfc5d4b7d",
"body": null,
"is_bot": false,
"headline": "wip",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2021-07-17T12:11:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34309b85522e017425b7a492a3fe428e319eaf07",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2021-07-08T18:02:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7932ba9a44f9c5d010bcda4dc06ceb0474e13d6d",
"body": null,
"is_bot": false,
"headline": "add example",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2021-07-08T18:00:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93a6006cefd73914dd467631af98dd21859cabeb",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' of github.com:spatie/pest-plugin-snapshots",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2021-07-08T17:59:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d859b5481e2628e3097a2a39d6336eb003e6af1f",
"body": null,
"is_bot": false,
"headline": "Fix styling",
"author_name": "freekmurze",
"author_login": "freekmurze",
"committed_at": "2021-07-08T17:59:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e3c3ca149721444f3883d27f2adc595b2838892",
"body": null,
"is_bot": false,
"headline": "wip",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2021-07-08T17:59:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25bed076676c768718104772462cca1c7ed65864",
"body": null,
"is_bot": false,
"headline": "support expectation API",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2021-07-08T17:58:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72288d57cb37eb9a654113ee684a6d94c32a97a7",
"body": "chore: migrate to PHP-CS-Fixer 3.x",
"is_bot": false,
"headline": "Merge pull request #11 from owenvoke/feature/php-cs-fixer-3",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2021-05-12T17:29:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3c9a25d327e1f966ddbd906b6936e2ecfb4eb8e",
"body": null,
"is_bot": false,
"headline": "ci: fix config path for php-cs-fixer",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2021-05-12T16:17:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b67fe3ceb72590df58964c1015dc6ae386688062",
"body": null,
"is_bot": false,
"headline": "chore: migrate to PHP-CS-Fixer 3.x",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2021-05-12T16:04:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "121745d813121f7cd4eac55e0ab1c851600a823a",
"body": null,
"is_bot": false,
"headline": "docs: updates changelog",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2021-01-03T15:31:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e5c22f8fb87962c0a07682bde0b9b86d9088fc5",
"body": null,
"is_bot": false,
"headline": "chore: updates dependencies",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2021-01-03T15:30:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c52eb349a77be27435ba92a19f43ddc260d0fbe",
"body": null,
"is_bot": false,
"headline": "docs: updates changelog",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2021-01-03T15:28:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd36538f3bae068560b0ae39e25c68997a5d2104",
"body": null,
"is_bot": false,
"headline": "Update README img tag",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2020-10-12T09:08:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "adbaf0988418b8908a15e364936de97512cb4e83",
"body": null,
"is_bot": false,
"headline": "Update README with new \"Support us\" section",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2020-10-07T08:56:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb136e29a052ee201a51dc930056640b41621164",
"body": null,
"is_bot": false,
"headline": "Update CHANGELOG.md",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2020-09-30T23:37:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7de67bb2461ad64651e8d7b24cae9ef2d5690906",
"body": "exclude original concerns from classmap",
"is_bot": false,
"headline": "Merge pull request #7 from Gummibeer/fix-issue-6",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2020-09-30T23:36:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1d6466c53805689d462c765c7a4e5acd835315b",
"body": null,
"is_bot": false,
"headline": "docs: updates changelog",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-08-27T20:14:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0519ec04c17104f1d2addd8eef690d03d8eda811",
"body": "feat: add support for PHP 8",
"is_bot": false,
"headline": "Merge pull request #9 from owenvoke/feature/php-8",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-08-11T13:47:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7020a5a79ac96169dd41f996535cfba28c9562c4",
"body": null,
"is_bot": false,
"headline": "ci: update to run tests against PHP 8",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2020-08-11T13:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2572f07560ad7cb72a80595eeda73651d3faf953",
"body": null,
"is_bot": false,
"headline": "feat: add support for PHP 8",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2020-08-11T13:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2c9fb9d8da231dc10c32bda3d9503387ce2621b",
"body": "feat: update to support Pest 0.3",
"is_bot": false,
"headline": "Merge pull request #8 from owenvoke/feature/pest-0.3",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-08-11T13:03:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "693bee4e7406f04814e7bc02b7b2d479b39f8cd1",
"body": null,
"is_bot": false,
"headline": "feat: add branch alias for v0.3.x-dev",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2020-08-11T12:10:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78f0f602fe4cc0108e7e8b01125d13725306c174",
"body": null,
"is_bot": false,
"headline": "tests: update test suite to use new methods",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2020-08-10T21:53:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16890cab85099444f8777fa9fe2cd93fc781d544",
"body": null,
"is_bot": false,
"headline": "feat: update to use Pest 0.3",
"author_name": "Owen Voke",
"author_login": "owenvoke",
"committed_at": "2020-08-10T21:53:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d630ba37627b30f1f3c719d2638f838f92546bd",
"body": null,
"is_bot": false,
"headline": "add relative paths",
"author_name": "Tom Witkowski",
"author_login": "Gummibeer",
"committed_at": "2020-07-03T09:40:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50ce478d8c71c673fe3567dbeb83837502503d62",
"body": null,
"is_bot": false,
"headline": "exclude original concerns from classmap",
"author_name": "Tom Witkowski",
"author_login": "Gummibeer",
"committed_at": "2020-07-03T09:24:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6906bf70236c81bf1d4d86345f9f5fdeaaada2f1",
"body": null,
"is_bot": false,
"headline": "Updates readme examples",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-06-14T01:42:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f3b36405d6870a7937f3e202438f3a2f35ac377",
"body": null,
"is_bot": false,
"headline": "Fixes typo on readme",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-06-14T00:31:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e01a9d716caa9513e5475775788cd79433c2f0f5",
"body": null,
"is_bot": false,
"headline": "Updates changelog",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-06-11T21:39:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2587172b05975f42981939568831c26c984d828",
"body": "feat: namespaces functions",
"is_bot": false,
"headline": "Merge pull request #4 from spatie/feat/namespaces-functions",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-06-11T21:35:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbf6cb0fa74e241261b2586e4af714c4d138b827",
"body": null,
"is_bot": false,
"headline": "feat: namespaces functions",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-06-11T19:33:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8101c752e5dfdb535067e918ef96353e8ce33cd6",
"body": null,
"is_bot": false,
"headline": "Bumps pest",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-06-01T21:22:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5171008df54caabdc24468bce5c9c7c731d939e",
"body": null,
"is_bot": false,
"headline": "Updates changelog",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-06-01T21:22:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfaa48968196c9dc1a26bef37426b0395a705e35",
"body": "Uses default snapshots path",
"is_bot": false,
"headline": "Merge pull request #2 from spatie/fix/snapshots-path",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2020-06-01T08:17:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61655bbd2922db337e5a70ca5e24a4534726fd5b",
"body": null,
"is_bot": false,
"headline": "Fix styling",
"author_name": "nunomaduro",
"author_login": "nunomaduro",
"committed_at": "2020-05-28T19:11:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5314b835e028ae3a6c79cf6f4d0b235d180f5e3",
"body": null,
"is_bot": false,
"headline": "Uses default snapshots path",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-05-28T19:11:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "120ab5a2362002a06dcf01e77d8ee5fc74444876",
"body": null,
"is_bot": false,
"headline": "Update README with new \"Support us\" section",
"author_name": "Adriaan Marain",
"author_login": "AdrianMrn",
"committed_at": "2020-05-27T13:18:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f031d2349bd4f1bc9b39e2968f861c53519527b",
"body": null,
"is_bot": false,
"headline": "Removes non needed phpdocs",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-05-22T16:43:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8afaa16901a07f4ecc326ab6ba135545c40c2bd7",
"body": null,
"is_bot": false,
"headline": "Removed windows build",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-05-21T23:37:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fb1a909e9eb1f392a8d0ecd3c70e346d33f07da",
"body": null,
"is_bot": false,
"headline": "wip",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2020-05-21T23:15:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfc7b059957cfc1fdb194a2c9cadfed806d3a419",
"body": null,
"is_bot": false,
"headline": "nitpicks",
"author_name": "freek",
"author_login": "freekmurze",
"committed_at": "2020-05-21T23:14:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7df48bf8403a7672052d36b194a03a684e086cad",
"body": "[WIP] First",
"is_bot": false,
"headline": "Merge pull request #1 from spatie/feat/first",
"author_name": "Freek Van der Herten",
"author_login": "freekmurze",
"committed_at": "2020-05-21T23:02:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9b04664ece3e559ebedd6ec2dc69e408bc64497",
"body": null,
"is_bot": false,
"headline": "Drops php@7.3",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-05-21T20:36:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00a10303217f42538fb8a5188d31302f7b389c03",
"body": null,
"is_bot": false,
"headline": "First",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-05-21T20:36:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3b2c25aec617fcca2267b0c4a5040f53e73d3a5",
"body": null,
"is_bot": false,
"headline": "First",
"author_name": "Nuno Maduro",
"author_login": "nunomaduro",
"committed_at": "2020-05-21T20:33:21Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 9,
"commits_last_year": 10,
"latest_release_at": "2026-04-27T15:52:41Z",
"latest_release_tag": "2.3.1",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 5,
"days_since_latest_release": 92,
"mean_days_between_releases": 254.3
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 50,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "spatie/pest-plugin-snapshots",
"exists": true,
"license": "MIT",
"keywords": [
"plugin",
"spatie",
"snapshots",
"pest"
],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/spatie/pest-plugin-snapshots",
"is_deprecated": false,
"latest_version": "2.3.1",
"repository_url": "https://github.com/spatie/pest-plugin-snapshots",
"versions_count": 14,
"total_downloads": 1885650,
"dependents_count": 161,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 50786,
"first_published_at": null,
"latest_published_at": "2026-04-27T15:44:01Z",
"latest_version_yanked": null,
"days_since_latest_publish": 93
}
]
},
"popularity": {
"forks": 11,
"stars": 40,
"watchers": 3,
"fork_history": {
"days": [
{
"date": "2020-08-10",
"count": 1
},
{
"date": "2021-01-04",
"count": 1
},
{
"date": "2022-04-28",
"count": 1
},
{
"date": "2023-03-25",
"count": 1
},
{
"date": "2023-03-30",
"count": 1
},
{
"date": "2024-04-08",
"count": 1
},
{
"date": "2024-04-11",
"count": 1
},
{
"date": "2024-09-10",
"count": 2
},
{
"date": "2024-09-11",
"count": 1
},
{
"date": "2024-09-19",
"count": 1
}
],
"complete": true,
"collected": 11,
"total_forks": 11
},
"star_history": null,
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 2692,
"source_files_sampled": 5,
"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": 3,
"direct_affected_count": 0
},
"ecosystems": [
"packagist"
],
"dependencies": [
{
"name": "pestphp/pest",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^2.0|^3.0|^4.0"
},
{
"name": "spatie/phpunit-snapshot-assertions",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^5.3.2"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "pestphp/pest",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "spatie/phpunit-snapshot-assertions",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "php",
"direct": false,
"version": null,
"ecosystem": "packagist"
}
],
"collected": true,
"truncated": false,
"total_count": 3,
"direct_count": 2,
"indirect_count": 1
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 13,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 7,
"closed_unmerged_prs": 3
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "freekmurze",
"commits": 36,
"avatar_url": "https://avatars.githubusercontent.com/u/483853?v=4"
},
{
"type": "User",
"login": "nunomaduro",
"commits": 21,
"avatar_url": "https://avatars.githubusercontent.com/u/5457236?v=4"
},
{
"type": "User",
"login": "AdrianMrn",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/12762044?v=4"
},
{
"type": "User",
"login": "owenvoke",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/1899334?v=4"
},
{
"type": "User",
"login": "Nielsvanpach",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/10651054?v=4"
},
{
"type": "User",
"login": "AlexVanderbist",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/6287961?v=4"
},
{
"type": "User",
"login": "Gummibeer",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/6187884?v=4"
},
{
"type": "User",
"login": "onlime",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/2759561?v=4"
}
],
"contributors_sampled": 8,
"top_contributor_share": 0.434
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"pint.yml",
"run-tests.yml",
"update-changelog.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": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 3,
"reason": "2 out of 6 merged PRs checked by a CI test -- score normalized to 3",
"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": 1,
"reason": "Found 3/21 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 23 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": 0,
"reason": "no 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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": "983185f92f64536aa47d7f3813f5fc27d90a9ae2",
"ran_at": "2026-07-29T15:44:14Z",
"aggregate_score": 3.1,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-04-27T15:53:00Z",
"oldest_open_prs": [
{
"number": 24,
"created_at": "2026-07-29T10:41:28Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 25,
"created_at": "2026-07-29T15:37:35Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-04-27T15:35:41Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/spatie/pest-plugin-snapshots",
"host": "github.com",
"name": "pest-plugin-snapshots",
"owner": "spatie"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 58 is calibrated to 62 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 58,
"calibrated": 62,
"calibration": "2026-08-02"
}
}
],
"value": 62,
"inputs": {
"security": 31,
"vitality": 59,
"community": 58,
"governance": 77,
"calibration": "2026-08-02",
"engineering": 62,
"ai_readiness": 30,
"weighted_overall_raw": 58
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 59,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "weak",
"name": "Development activity",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"commits_last_year": 10,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 5
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "5/52 weeks with commits",
"points": 3.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 5
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "10 commits in the last year",
"points": 9.4,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 10
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": 74,
"inputs": {
"releases_count": 9,
"latest_release_tag": "2.3.1",
"releases_from_tags": false,
"days_since_latest_release": 92,
"mean_days_between_releases": 254.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "9 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 9
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 92 days ago",
"points": 27,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 92
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~254.3 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 254.3
}
}
],
"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": "exceptional",
"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": 99,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 99 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 99
}
}
],
"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.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 36,
"inputs": {
"forks": 11,
"stars": 40,
"watchers": 3,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "40 stars",
"points": 25.8,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 40
}
}
],
"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": "3 watchers",
"points": 1.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 3
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"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": "good",
"name": "Ecosystem adoption (downloads)",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"packages": [
"spatie/pest-plugin-snapshots"
],
"dependents": 161,
"ecosystems": "packagist",
"total_downloads": 1885650,
"monthly_downloads": 50786
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "50,786 downloads/month across packagist",
"points": 62.7,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 50786,
"ecosystems": "packagist"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "161 packages depend on it",
"points": 14.7,
"status": "partial",
"details": [
{
"code": "registry_dependents",
"params": {
"count": 161
}
}
],
"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.23,
"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.434
},
"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 43% of commits",
"points": 12.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 43
}
}
],
"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 23 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 78,
"inputs": {
"merged_prs": 13,
"open_issues": 0,
"closed_issues": 7,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 3,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 42,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "13/16 decided PRs merged",
"points": 24.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 13,
"decided": 16
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 3/21 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "excellent",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"followers": 3808,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "spatie",
"public_repos": 524,
"account_age_days": 4463
},
"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": "3,808 followers of spatie",
"points": 25,
"status": "met",
"details": [
{
"code": "owner_followers",
"params": {
"count": 3808,
"login": "spatie"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "524 public repos, account ~12 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 524
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"spatie/pest-plugin-snapshots"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 93
},
"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 93 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 93
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "14 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 14
}
}
],
"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": 62,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 60,
"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": "2 out of 6 merged PRs checked by a CI test -- score normalized to 3",
"points": 6,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [
"php",
"testing",
"snapshots"
],
"has_wiki": false,
"homepage": "https://pestphp.com",
"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": "https://pestphp.com",
"points": 15,
"status": "met",
"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": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"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": "at_risk",
"name": "Security",
"value": 31,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 31,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 3.1
},
"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": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "2 out of 6 merged PRs checked by a CI test -- score normalized to 3",
"points": 0.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 3/21 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 23 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": "no update tool detected",
"points": 0,
"status": "missed",
"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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "exceptional",
"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"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 18
},
"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": 30,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 17,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.325,
"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": "27 of 83 human commits state their intent (structured subject or explanatory body)",
"points": 17.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 27,
"sampled": 83
}
}
],
"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": 30,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.024,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "2 of the last 83 commits agent-authored or agent-credited",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 2,
"sampled": 83
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"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": 2692,
"source_files_sampled": 5,
"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/5 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 5,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"top": [
"library"
],
"labels": [
"library"
],
"scores": {
"plugin": 2,
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:packagist",
"weight": 6
},
{
"tier": "tags",
"label": "plugin",
"source": "tag:plugin",
"weight": 2
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-29T15:44:28.584574Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/spatie/pest-plugin-snapshots.svg",
"full_name": "spatie/pest-plugin-snapshots",
"license_state": "standard",
"license_spdx": "MIT"
}