Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [
"12-factor",
"autowiring",
"container",
"dependency-injection",
"environment-variables",
"php",
"psr-11"
],
"is_fork": false,
"size_kb": 236,
"has_wiki": true,
"homepage": null,
"languages": {
"PHP": 128006,
"Shell": 24
},
"pushed_at": "2026-06-25T00:43:43Z",
"created_at": "2019-02-26T18:21:27Z",
"owner_type": "User",
"updated_at": "2026-06-24T23:25:09Z",
"description": "PSR-11 DI Container with autowiring and compilation for PHP",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": null,
"primary_language": "PHP",
"significant_languages": [
"PHP"
]
},
"owner": {
"blog": "https://www.ericstern.com",
"name": "Eric Stern",
"type": "User",
"login": "Firehed",
"company": null,
"location": "San Mateo, CA",
"followers": 49,
"avatar_url": "https://avatars.githubusercontent.com/u/354842?v=4",
"created_at": "2010-08-05T06:44:53Z",
"is_verified": null,
"public_repos": 162,
"account_age_days": 5832
},
"license": {
"state": "absent",
"spdx_id": null,
"raw_spdx": null,
"file_present": false,
"scorecard_found": false,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "1.1.0",
"kind": "minor",
"published_at": "2026-06-10T00:13:25Z"
},
{
"tag": "1.0.0",
"kind": "major",
"published_at": "2026-03-07T00:14:26Z"
},
{
"tag": "0.10.0",
"kind": "minor",
"published_at": "2025-09-19T20:47:34Z"
},
{
"tag": "0.9.1",
"kind": "patch",
"published_at": "2024-08-22T20:43:56Z"
},
{
"tag": "0.9.0",
"kind": "minor",
"published_at": "2024-08-22T18:54:56Z"
},
{
"tag": "0.8.0",
"kind": "minor",
"published_at": "2024-07-17T20:55:26Z"
},
{
"tag": "0.7.0",
"kind": "minor",
"published_at": "2024-02-11T04:38:39Z"
},
{
"tag": "0.6.0",
"kind": "minor",
"published_at": "2024-01-29T18:48:47Z"
},
{
"tag": "0.5.2",
"kind": "patch",
"published_at": "2021-11-16T18:44:22Z"
},
{
"tag": "0.5.1",
"kind": "patch",
"published_at": "2021-11-05T18:54:07Z"
},
{
"tag": "0.5.0",
"kind": "minor",
"published_at": "2021-11-04T19:12:44Z"
},
{
"tag": "0.4.1",
"kind": "patch",
"published_at": "2021-09-09T23:51:42Z"
},
{
"tag": "0.4.0",
"kind": "minor",
"published_at": "2021-06-10T19:17:41Z"
},
{
"tag": "0.3.0",
"kind": "minor",
"published_at": "2020-09-30T00:04:13Z"
},
{
"tag": "0.2.0",
"kind": "minor",
"published_at": "2020-09-01T23:25:33Z"
},
{
"tag": "0.1.1",
"kind": "patch",
"published_at": "2019-03-19T17:25:37Z"
},
{
"tag": "0.1",
"kind": "other",
"published_at": "2019-03-14T22:12:53Z"
}
],
"recent_commits": [
{
"oid": "c1d9b50c42503dd3ffddf3990e7342e71b35525a",
"body": "## Summary\n\n- Adds `AutoDetect::getBuilder()` to return a `Builder` or `Compiler`\nbased on environment detection, without immediately building a container\n- Refactors `AutoDetect::from()` to use these new methods internally\n\nThis enables applications to do leverage the builder-vs-compiler logic\nand still add more data sources than a single directory (e.g. if\nsub-packages expose their own config directories).\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add `AutoDetect::getBuilder()`, update `::from` to use it (#109)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-06-24T23:25:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ac02a31409915335899c39b34275bfdbbff89a89",
"body": "This does what the title implies: builders can now take a directory, and\nthey will add all of the php files contained within, saving callers from\ndoing this common loop themselves. It is not recursive, though a recursive option may be added in the future.\n\nThe logic was already in AutoDetect, so it's been updated to leverage\nthis new API.",
"is_bot": false,
"headline": "Add `addDirectory` to `BuilderInterface` (#110)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-06-24T23:06:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d170d89a399e896ec1821f236b0e0b552855ee4",
"body": "After the changes towards #93, the internals relating to file parsing of\nthe two container builders became, in effect, identical. This change\nmakes that literally true: the logic is moved out to a trait, which\nyields a `key => DefinitionInterface` generator. The two container\nbuilders now use the re\n[…]\n\n`factory()`).\n\nThe changes to ShorthandDefinitionInterface are more of a formality for\nPHPStan, though it does resolve a potential issue if a third party\nimplemented it in an unusual way.\n\nFixes #93.",
"is_bot": false,
"headline": "Unify config file parsing (#104)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-06-10T00:00:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c6d643a30df7bdd42babed6b64d1f82f3494d2ac",
"body": "As noted\nhttps://github.com/Firehed/container/issues/93#issuecomment-4408328449,\nthe builder classes are basically doing duplicate work in definition\nparsing. This change, plus one more similar one for the aliases\n(Interface->Implementation), will enable actual parsing reuse across the\ntwo so that the builders only need to create their respective\ncontainers.\n\nPart of #93.",
"is_bot": false,
"headline": "Convert scalar definitions to DefinitionInterface wrappers (#103)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-06-09T23:01:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "426f049dfb340a85540da6ba794c52a49946452b",
"body": "Consolidates closure handling into a new class, like #97 and #99. \n\nWith this, the container builders are now responsible for getting the\nconfig inputs into `key => defintionInterface`, and the containers they\nyield now resolve or compile from those definitions. Exception: scalars\nare still just scalars.\n\nFixes #96\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Convert Closure handling to DefinitionInterface (#102)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-08T17:16:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "e696482065e1f706856c7a08df67d8cc6040f855",
"body": "## Summary\n\n- Introduces `ShorthandDefinitionInterface` interface with\n`needsClass()` and `withClass()` methods\n- Both `Factory` and `AutowiredClass` implement it, replacing the old\n`FactoryInterface` and `AutowireInterface`\n- Consolidates the two separate finalization checks in `Builder` and\n`Compiler` into one\n\n## Test plan\n\n- [x] All existing tests pass\n- [x] PHPStan clean\n- [x] PHPCS clean\n\nCloses #93\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)",
"is_bot": false,
"headline": "Unify finalization pattern with ShorthandDefinitionInterface (#101)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-08T02:16:25Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5af12534e52fddad5aee94741db5520d092c8de4",
"body": "## Summary\n\n- `AutowiredClass` now implements `DefinitionInterface`, providing\n`resolve()`, `generateCode()`, `getDependencies()`, and `isCacheable()`\nmethods\n- Added `withClass()` to `AutowireInterface` for finalizing definitions\nwhen the class was null (meaning \"use the key\")\n- `Builder` and `Comp\n[…]\n`AutowiredClass` DefinitionInterface methods\n- [x] PHPStan passes\n\nFixes #95\n\n🤖 Generated with [Claude Code](https://claude.ai/code)\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Convert AutowireInterface to DefinitionInterface (#97)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-08T01:27:09Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a75a779e62031c48dd626a13ca12886a5a74b09a",
"body": "## Summary\n\n- `Factory` now implements `DefinitionInterface`\n- Added `withClass()` to `FactoryInterface` for finalizing bare\n`factory()` calls\n- Removed special-cased `instanceof FactoryInterface` handling from\n`Compiler` and `DevContainer`\n\n**Stack:** 2 of 3\n- #98: Extract Autowire::instantiate()\n-\n[…]\n*→ This PR**\n- #95: AutowiredClass implements DefinitionInterface\n\nFixes #94\n\n🤖 Generated with [Claude Code](https://claude.ai/code)\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Convert FactoryInterface to DefinitionInterface (#99)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-08T01:10:52Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7d5c94c06bff0c3f4dab7ba30698f3c2adec86ab",
"body": "## Summary\n\nExtracts runtime autowiring logic from `DevContainer::autowire()` to\n`Autowire::instantiate()`.\n\nThis is the foundation for #94 and #95, which will use this method and\neventually allow `DevContainer::autowire()` to be deleted entirely.\n\n**Stack:** 1 of 3\n- **→ This PR**\n- #94: Factory im\n[…]\nnts DefinitionInterface\n- #95: AutowiredClass implements DefinitionInterface\n\n🤖 Generated with [Claude Code](https://claude.ai/code)\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Extract Autowire::instantiate() for reuse (#98)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-08T00:42:05Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "1173e5816d9f9186992d93a1b95fe1c03ce29238",
"body": "Continuation of #63/#75 - consolidates the paths into avoiding\nspecial-cased `instanceof` checks.\n\nFixes #92\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Update envvar reader to leverage new DefinitionInterface (#76)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-07T22:40:34Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "95011a6a7e3bc6e88482f4e6c3e52a18d9985dd7",
"body": "- Move to .dist format\n- Use locally packaged schema\n- Set the `failOnAllIssues` flag\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Update PHPUnit config and make it stricter (#91)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-07T21:01:38Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "e8f0137593c537633dbcd614205eb9d440112ff8",
"body": "## Summary\n- Updates squizlabs/php_codesniffer from ^3.5 to ^4.0\n\nCloses #89 (this is an update instead of a widening)\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Update phpcs to ^4.0 (#90)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-07T19:46:53Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "be86644ea0e4022d95987c97d6dbfc1cc443fa8f",
"body": "Bumps\n[codecov/codecov-action](https://github.com/codecov/codecov-action) from\n4 to 6.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/codecov/codecov-action/releases\">codecov/codecov-action's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v6.0.0</h2>\n<h2>⚠️ This \n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump codecov/codecov-action from 4 to 6 (#85)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-07T19:35:54Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "febb2f7f055c7179b3429ec38679e1380e4eb3cc",
"body": "Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/actions/cache/releases\">actions/cache's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v5.0.0</h2>\n<blockquote>\n<p>[!IMPORTANT]\n<strong><code>actio\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump actions/cache from 4 to 5 (#88)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-07T19:35:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "afdb56442562d42ed7ccf1d50b0d58bf93f3461f",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to\n6.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a\nhref=\"https://github.com/actions/checkout/releases\">actions/checkout's\nreleases</a>.</em></p>\n<blockquote>\n<h2>v6.0.0</h2>\n<h2>What's Changed</h2>\n<ul>\n<li>Upd\n[…]\nnless you reopen the\nPR or upgrade to it yourself)\n\n\n</details>\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump actions/checkout from 4 to 6 (#87)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-07T19:35:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3a6a1217be8c3b0dd53cc356ea42b2ac69428064",
"body": "## Summary\n- Adds Dependabot configuration for automated dependency updates\n- Composer dependencies checked weekly\n- GitHub Actions versions checked weekly\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add Dependabot configuration (#84)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-07T19:32:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "0603e6d0da933ea1f5e0822a48aa29cab8aae682",
"body": "## Summary\n\n- Bumps minimum PHP version from 8.1 to 8.2 (8.1 is EOL)\n- Updates PHPUnit constraint to `^11.0 || ^12.0 || ^13.0`\n- Converts all PHPUnit annotations to attributes for compatibility with\nPHPUnit 12+\n- Drops nikic/php-parser v4 support (v5 only now)\n- Updates CI matrix to test PHP 8.2-8.6\n[…]\n Removed `ParserLoader` compatibility shim, inlined v5-only parser\ncreation\n\n## Test plan\n\n- [x] CI passes on PHP 8.2 with low deps (PHPUnit 11)\n- [x] CI passes on PHP 8.4+ with high deps (PHPUnit 13)",
"is_bot": false,
"headline": "Update to PHPUnit 11-13, require PHP 8.2+ (#83)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-05-07T19:27:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b24507146f92cf388a2043728672c1670ffa6f19",
"body": "## Summary\n\n- Fixes #81\n- When autowiring, optional constructor parameters now check the\ncontainer for a matching type before falling back to the default value\n- Matches behavior of general expectations, as well as many other DI\ncontainers (Symfony, Laravel, PHP-DI)\n\n## Changes\n\n- Extract shared typ\n[…]\nan\n\n- [x] Added test for optional object param with container entry\n- [x] Existing tests pass (optional scalar params still use defaults)\n\n🤖 Generated with [Claude Code](https://claude.ai/claude-code)",
"is_bot": false,
"headline": "Check container for optional params before using default (#82)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-04-21T21:31:26Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "029055ca2043feee79f03730e198ee662176a795",
"body": "## Summary\n\n- Extracts autowire eligibility logic into a reusable `Autowire` class\n- Updates `DevContainer` and `AutowiredValue` to use the shared utility\n- Filters out `Closure` and `Generator` types which cannot be autowired\n\n## API\n\n```php\n// Check if a class can be fully autowired\nAutowire::isEl\n[…]\nmpiler behavior unchanged)\n- [x] New unit tests for Autowire utility\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n---------\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Extract Autowire utility for shared eligibility checks (#79)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-14T17:13:45Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "acf276d7bb183cb132de978e90c5dc26b5f35161",
"body": "## Summary\n\n- Introduces `DefinitionInterface` which extends\n`CodeGeneratorInterface` and adds `resolve()` and `isCacheable()`\nmethods\n- Both `Compiler` and `DevContainer` now check for `DefinitionInterface`\nfirst, enabling third-party extensibility\n- No changes to existing behavior - purely additiv\n[…]\nting the interface\n- [x] Added tests for string, int, array values\n- [x] Added tests for cacheable vs non-cacheable (factory) behavior\n\nFixes #63 (though existing value accessors are not migrated yet)",
"is_bot": false,
"headline": "Add DefinitionInterface for extensible container definitions (#75)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-10T02:06:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0b77cbfcd0396aca149625dc83030c3b9f383486",
"body": "This further adjusts how `env()` works - basically, prefer `$_ENV` to\n`getenv()`, but still be able to fall back to the latter instead of\nrelying exclusively on the former.\n\n#73\n\nAlso #60, since it now reads the envvars once at initialization for both\ndev and compiled containers.",
"is_bot": false,
"headline": "Handle and test dotenv interoperability (#74)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-07T00:08:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0769fa41e7e13ca27104ff3a79388ea2a83c519a",
"body": "- Fix typos throughout README (including some missed by #72, go figure)\n- Fix syntax errors in example code (missing parenthesis, comma instead\nof semicolon)\n- Fix inconsistencies (asBool documentation, broken section reference)\n- Update `env()` example to reflect actual `$_ENV` implementation",
"is_bot": false,
"headline": "Fix README inconsistencies (#71)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-06T18:10:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "825f8a4e47bda1e2f5b7c21827301732bb454e0d",
"body": null,
"is_bot": false,
"headline": "Set up spellcheck linter (#72)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-06T18:07:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c0dd09047a0bb793c72ddaf0ec11f26a9d39a79f",
"body": "Fixes #62.\n\nThe format is not considered part of an official API.",
"is_bot": false,
"headline": "Set up `__debugInfo()` method (#70)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-06T03:51:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7b4d17586194434d960701187d36d89caa44327",
"body": "While the behavior is commonly the same between the two, this improves\ninterop with the very commonly-used dotenv library which defaults to\nonly modifying $_ENV and not calling putenv().\n\n> [!WARNING]\n> This is technically a breaking change: any pre-config code that was\nrelying on calling putenv() and didn't mirror the value into $_ENV will\nno longer work. It's unlikely but possible.\n\nFixes #61.",
"is_bot": false,
"headline": "Read from $_ENV over getenv() (#69)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-06T02:06:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a951c0dbb05e9dc437ac2fed13c477a004c7a3eb",
"body": "When reading env vars that are an empty string, test to make sure\nthey're handled correctly. They already are, but this helps cover some\nedge cases in #61.",
"is_bot": false,
"headline": "Explicitly test behavior of 'set but empty' (#68)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-06T01:32:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9014020e7d979385b9840dc8fca736236763c069",
"body": "8.5 is out, include 8.6-dev",
"is_bot": false,
"headline": "Bump CI versions (#67)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-05T23:31:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "124ac302a4ab426105588d315492f4c82ecd8690",
"body": "Fixes #64",
"is_bot": false,
"headline": "Allow customization of autodetected environment names (#65)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-05T23:29:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b0156e0f9a39062aa9bbacb6baede5219159f6d",
"body": "Updated PHPStan renders this not only obsolete but as an error.",
"is_bot": false,
"headline": "Remove now-redundant assertion (#66)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2026-03-05T23:24:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a702fb089993372d61ad57c5f8d9a04af383090",
"body": "This adds a quickstart section to the README, putting most of the\nrelevant info in one place. The config definitions have been\nrestructured with hopefully-clearer examples, and some outdated API\nreferences have been removed.",
"is_bot": false,
"headline": "Overhaul README (#59)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2025-11-10T22:55:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51944140aeebc11821730d712c1d3299385fcf80",
"body": "This adds typed accessors to the TypedContainerInterface that the\nlibrary returns. Use of this allows tighter checks within config\ndefinitions, which is especially useful when running static analysis\ntools on them.\n\nI've left out nullables and arrays for now but they may get added in the\nfuture.",
"is_bot": false,
"headline": "More typed value access tooling (#58)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2025-09-19T20:46:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9f1e239a692a4e19df7f13daca240e6b66f4f74",
"body": null,
"is_bot": false,
"headline": "Drop unused parameter in compiler's ProxyValue (#56)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2025-09-19T20:21:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5775f983411baa98478b7ec681d69d8876e51d25",
"body": "This improves accuracy of code coverage, although it's not done strictly\nthrough _unit_ tests.",
"is_bot": false,
"headline": "Add a bunch of covers annotations (#57)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2025-09-19T20:20:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b95954f134a22ab00465198940af0508ed0ccfb",
"body": "This is a series of tooling updates, but nothing of consequence to\nend-users.",
"is_bot": false,
"headline": "Update build matrix for latest PHP; PHPStan; fix some new warnings (#55)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2025-09-19T19:59:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "617f915e43454e075565219684d61041912a15a8",
"body": "The parser version needed to be updated to reflect the availability of\r\nmatch statements (which is technically 8.0, but this might as well match\r\nthe library's own minimum PHP version)\r\n\r\nPrior to this change, the compiler would crash with `PhpParser\\Error:\r\nSyntax error, unexpected T_DOUBLE_ARROW` (and, presumably, interpret\r\n`match()` as a function call rather than language construct).",
"is_bot": false,
"headline": "Ensure config entries with match statements can compile (#53)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-08-22T20:43:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c717c08534e85c1d5678b9386f6216eec78df605",
"body": null,
"is_bot": false,
"headline": "Add more detailed explainer in enum section (#52)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-08-22T18:33:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3860615eee8081080360701749089c02d869ee85",
"body": "Allows `env('FOO')->asEnum(Foo::class)` to make envvars accessible as\r\nthe specified backed enum.\r\n\r\nFixes #39",
"is_bot": false,
"headline": "Support casting env to enum (#43)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-08-22T18:17:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f92d073b5ed8901cea2b0e8dc90e90da63d25d82",
"body": "A lot of `@var`s are now being declared natively, and a handful of\r\nconstructors have been streamlined to use property promotion.\r\n\r\nThis is purely a refactor and should change nothing.",
"is_bot": false,
"headline": "Update internals to native types and constructor promotion (#51)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-08-22T17:18:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26bdc6e2c03c21ffee4b29b334023369ffc30039",
"body": "Since the library has bumped its minimum version to 8.1, these are no\r\nlonger needed.",
"is_bot": false,
"headline": "Remove polyfills redundant with PHP 8.1 (#50)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-08-22T17:03:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a5ad52d43642dae63d8afd53875941bace98ad2",
"body": "For the most part, this updates the CI configs to much newer versions,\r\nwhich should eliminate a bunch of deprecation warnings. In doing so, it\r\nmerges the composer validation into the linter. There should not be any\r\nfunctional changes (tests still are on supported+dev high/low)",
"is_bot": false,
"headline": "Update CI tools+deps (#49)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-08-22T17:01:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c411342ead31eb88a5bd2e9e7ed7d1278991bff",
"body": "PSR/Log adds stricter type info for logging, and PHPUnit changed the\r\ncache directory.\r\n\r\nThis also updates to a newer version of the status badges in the README.",
"is_bot": false,
"headline": "Minor updates for newer dependencies (#48)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-08-22T16:44:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f35af0920b23b30a83b3de3781eff2624cadd2f4",
"body": null,
"is_bot": false,
"headline": "Support nikic/php-parser v5 (#45)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-07-17T20:53:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e1ffc84371f1badf4a8e60ce76db967cfd36d9f0",
"body": "The current-of-writing PHP support is 8.1+ -\r\nhttps://www.php.net/supported-versions.php.\r\n\r\nIf someone is using this on a really old version of PHP, the older\r\nversions of the library will still work. Time to move forward.\r\n\r\nThis also bumps and narrows the supported PHPUnit version, which was\r\nmostly interfering with `--prefer-lowest` (the purpose of which is to\r\ntest a range of _library_ dependencies, not dev ones)",
"is_bot": false,
"headline": "Drop support for legacy versions of PHP (#47)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-07-17T20:43:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "211435872e866e67be84c2040f76e1b4b7ed4727",
"body": "Adds a utility to simplify setup and common use-cases. Fixes #31.",
"is_bot": false,
"headline": "Add an autodetect tool for the common case (#40)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-02-11T04:36:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c885279c924ebcfddc5b382d015196de73c75879",
"body": "Only PHPUnit 10 for now, will address 11 separately.",
"is_bot": false,
"headline": "Support newer PHPUnit versions (#44)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-02-11T03:53:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a67c65b6044d838358ecceb4290daae091e509d7",
"body": "This expands the build matrix to include current+upcoming PHP versions.",
"is_bot": false,
"headline": "Test on 8.3 and 8.4-dev (#42)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2024-01-29T17:48:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00b7c9b71b49a2e1e2f03b3f458fc0a760465f07",
"body": "…ions (#41)",
"is_bot": false,
"headline": "Adopt some readme formatting enhancements and add a couple clarificat…",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2023-12-04T17:19:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ba0ec1a23fd74f4417a4d7db396a92dbed939a6",
"body": "There are two substantial changes here:\r\n\r\n- If an error occurs while retrieving a value (e.g. a closure definition\r\nthrows an `ErrorException`) from the container, that's repackaged into a\r\nnew exception implementing Psr\\Container\\ContainerExceptionInterface and\r\ncontaining the retrieval history\r\n- If a class/interface needed for autowiring is unavailable, the\r\nexception thrown now contains information about both the class being\r\nwired and the one that's missing\r\n\r\nFixes #20",
"is_bot": false,
"headline": "Improve messaging on various errors (#37)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2022-10-19T19:01:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1bd58e71754b09234e95adcad25be698aa52f37",
"body": "* Add Typesafe container interface\r\n\r\n* Add design opinions section to readme to describe new type behavior\r\n\r\n* Fix indentation in example",
"is_bot": false,
"headline": "Improve type safety of containers w/ tools (#34)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2022-10-18T22:32:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98aba7898a5b488e6f2b880f46e2eeecababd305",
"body": "By and large, this is making sure that the compiler doesn't reject Enum instances.",
"is_bot": false,
"headline": "Support Enums (#22)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2022-10-18T21:52:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7449d1374d47c25e615795a40735a0bbe56b1c95",
"body": "* Test on 8.1 and 8.2\r\n\r\n* Bump min phpunit version: https://github.com/sebastianbergmann/phpunit/issues/4575\r\n\r\n* Add attribute for newer php versions\r\n\r\n* Fix warning about possible missing offset",
"is_bot": false,
"headline": "Test on 8.1 and 8.2 (#33)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2022-10-18T21:26:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68e8d8c3fd4704655f5697d519009752378466ce",
"body": null,
"is_bot": false,
"headline": "Provide some additional autowiring examples (#25)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-11-16T17:36:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b1d3876e774a92fc3eb31c8a8f753d92c2ffa89",
"body": "Include keywords, description, and provide fields.",
"is_bot": false,
"headline": "Add additional info to composer.json (#26)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-11-16T17:33:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f899e3da528b0fc342a492d0682d897f1fecb09d",
"body": null,
"is_bot": false,
"headline": "Add step for composer validate (#27)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-11-16T17:32:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a47beca6d5c8669866b4aade87301a578cc65858",
"body": null,
"is_bot": false,
"headline": "Update return type for session handler interface (#28)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-11-16T17:30:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4ba23193e4bc0e5450f07c19012965cb2ea125b",
"body": null,
"is_bot": false,
"headline": "Handle missing target directory for compiled container (#24)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-11-05T18:52:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0da2da83fa130c32f77adea29a2b309e289b9b06",
"body": null,
"is_bot": false,
"headline": "Add .github to export-ignore (#23)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-11-04T19:10:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e7a54c462c766038dbf16cba1c282cfc6217a1f",
"body": null,
"is_bot": false,
"headline": "Support psr/log@3, bump other dependencies (#21)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-11-04T19:06:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3acedefc0321b3d9a9d26ffe6129e19a80117939",
"body": null,
"is_bot": false,
"headline": "Don't use old coversDefaultClass-style coverage annotations (#19)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-09-09T23:50:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9543870da34c269c5dd48d37bf14c71f973588fb",
"body": "* Add gitattributes file\r\n\r\n* Update .gitattributes",
"is_bot": false,
"headline": "Set up gitattributes file (#18)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-09-09T23:47:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "056b6cc1906f6667e4c1da6079ecc1750d9222e4",
"body": null,
"is_bot": false,
"headline": "Remove outdated documentation",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-06-10T19:09:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cefeb8bd344c30d26862fd891d62f073c8be889a",
"body": null,
"is_bot": false,
"headline": "Support psr/container 2.x (#16)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-06-10T18:53:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "107142d2f95907cd720eaf9953afe60191e9a8fd",
"body": null,
"is_bot": false,
"headline": "Switch to codecov action (#15)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-06-10T18:51:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12d65d7ce23efb93639a8700a22a65cb90fd54fd",
"body": null,
"is_bot": false,
"headline": "Improve type information and bad mapping detection (#17)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2021-06-10T18:48:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "312c3c92dcfa79a2aeff9c9432eb8a19449db062",
"body": "This implements a from-scratch closure copying process for container compilation, which resolves some issues in the closure library that was (briefly) used due to [`T_NAME_FULLY_QUALIFIED`](https://wiki.php.net/rfc/namespaced_names_as_token) and related modifications. There are numerous small adjustments to CI to build properly on PHP 8.",
"is_bot": false,
"headline": "Resolve PHP 8 name mangling issues (#13)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2020-09-29T00:39:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b78c5d2e49d78c1ccfd2735808fe5cb76212cf23",
"body": null,
"is_bot": false,
"headline": "Update CI badge (#12)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2020-09-01T23:15:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c2564dd779d8013ac7d6ab1fa562837fa997fd6",
"body": null,
"is_bot": false,
"headline": "Replace abandoned library (#9)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2020-09-01T23:15:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1a3210e52d3ac936250a419c9c163b0db4c6890",
"body": null,
"is_bot": false,
"headline": "Migrate rest of build steps to GH Actions (#11)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2020-09-01T23:00:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44b0403c0684572c0aedbafa42384b6cb4823d78",
"body": null,
"is_bot": false,
"headline": "Update PHPStan and migrate it to GH Actions (#10)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2020-09-01T22:30:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a040c9f35ad409b1b2a9feaca8fd287bbbc83af",
"body": null,
"is_bot": false,
"headline": "Cast default env values correctly (#6)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-03-19T17:22:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1586ebb16c00380c0e87fe992cff54a35c41bccb",
"body": null,
"is_bot": false,
"headline": "Link packagist icon in readme",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-03-14T22:14:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7e424ea62fe30e313281449387b84df2e2b5528",
"body": null,
"is_bot": false,
"headline": "Build badges",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-03-14T22:11:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "07ef0ee713b36373479c4b8acef68235eb9bd898",
"body": null,
"is_bot": false,
"headline": "Minor: lowercase requires",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-03-14T22:09:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0da751681cbb638532647711f63e264f3e21c3b4",
"body": null,
"is_bot": false,
"headline": "Support native casting of environment variables (#2)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-03-14T22:07:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae03e30865d9fd406497b868d451c252efec2767",
"body": null,
"is_bot": false,
"headline": "Add comment to compiled container to indicate source of definition",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-03-08T18:19:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df7f55c11aaf3169dc43d13b74645fb97d4a8241",
"body": null,
"is_bot": false,
"headline": "Add travis config (#1)",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-03-02T01:29:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7f45d673b26ebfa02a3d0c40aeae02e569b4bb7",
"body": null,
"is_bot": false,
"headline": "More minor cleanup",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T20:03:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d122775d89cd6056e82a4a632418efe3901824d1",
"body": null,
"is_bot": false,
"headline": "Split build and compile, avoid compiling twice",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T20:01:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "185fab0e461c0f89ff47c59ac8cd0ed7d11b7fbe",
"body": null,
"is_bot": false,
"headline": "Remove dead code from development",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T20:01:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6a75ba6ef2c7380e10f4da1fa51721c1ac57b8b",
"body": null,
"is_bot": false,
"headline": "Improve detection of missing dependencies",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T19:56:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81cef2beb413e585f0f88886f794193aa36e00f8",
"body": null,
"is_bot": false,
"headline": "Expect exception after files are added but before build",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T19:34:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf1527557c7c0bc72efdf57d1de7cbb73c312be1",
"body": null,
"is_bot": false,
"headline": "Restructure error tests",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T19:31:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ca32f420fea1395fab64018324e29c64677e314",
"body": null,
"is_bot": false,
"headline": "Fix random tab literals",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T19:25:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "112400d43f57d6e2d8e00bc0cf124334ea2896c2",
"body": null,
"is_bot": false,
"headline": "Add open tags to help rendering",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T19:22:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "834eae6ddc7f1213285483c7a4f972471e9f6f1b",
"body": null,
"is_bot": false,
"headline": "More closure definition docs",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T19:20:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a38d4df6669183c127e6c064777417113ee9dcb1",
"body": null,
"is_bot": false,
"headline": "more docs",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T19:08:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f96ee39c948301fbd524c0a577afdd67330ddb76",
"body": null,
"is_bot": false,
"headline": "More docs",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T18:45:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "201401d25c2334d1ab01808ded24dda4f78c823f",
"body": null,
"is_bot": false,
"headline": "Basic factory readme",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T18:09:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa299ffe5a9aafc9c48d7d88d3450af11cb5262f",
"body": null,
"is_bot": false,
"headline": "Tidy compiler",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T17:39:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c296eaffde406c8cba707852651b68098d7a8dc",
"body": null,
"is_bot": false,
"headline": "return types",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T17:37:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aeee30e43a4f7c3bf7e9d1b1731bb643b97fbe32",
"body": null,
"is_bot": false,
"headline": "Resolve static analysis warning",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T17:34:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a618a1f58c7a208741d65896469bbff5287eb685",
"body": null,
"is_bot": false,
"headline": "Add a couple assertions",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T00:56:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4ba20fffad5b305d496b3301b669e26ec6e2d3e",
"body": null,
"is_bot": false,
"headline": "Even shorter-hand autowiring",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T00:56:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02d8d9237c92c42a37002c49d05172ceba978a76",
"body": null,
"is_bot": false,
"headline": "Allow specifying class to autowire",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-28T00:40:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38c467a9476c97c1dab0f2b74eb8c87ca9ad25e3",
"body": null,
"is_bot": false,
"headline": "More docs",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-27T22:03:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c024d683b2a9242dca57b52cf12f5f8fd4e86d1",
"body": null,
"is_bot": false,
"headline": "Add support for optional params",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-27T20:51:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "518b8e519eab5873da260b87694833f1e678a6cc",
"body": null,
"is_bot": false,
"headline": "Rename test cases",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-27T19:18:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebc2a08081bda5ff43ca4cdb69a28a3dee601712",
"body": null,
"is_bot": false,
"headline": "Run error tests, improve autowiring around areas covered",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-27T19:02:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "53e1b9bf4567a43138aa16fc1a06fb0b482f8726",
"body": null,
"is_bot": false,
"headline": "Rework test trait to avoid pointless setup calls",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-27T19:02:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "469ae27da34ffc22915ea50f1bdb6500dae6123e",
"body": null,
"is_bot": false,
"headline": "Prep failure tests",
"author_name": "Eric Stern",
"author_login": "Firehed",
"committed_at": "2019-02-27T19:00:17Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 17,
"commits_last_year": 34,
"latest_release_at": "2026-06-10T00:13:25Z",
"latest_release_tag": "1.1.0",
"releases_from_tags": false,
"days_since_last_push": 30,
"active_weeks_last_year": 9,
"days_since_latest_release": 45,
"mean_days_between_releases": 186.4
},
"community": {
"has_readme": true,
"has_license": false,
"has_description": true,
"has_contributing": false,
"health_percentage": 28,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "firehed/container",
"exists": true,
"license": "MIT",
"keywords": [
"container",
"di",
"ioc",
"autowire",
"container-interop",
"PSR-11",
"psr11",
"container-interface"
],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/firehed/container",
"is_deprecated": false,
"latest_version": "1.1.0",
"repository_url": "https://github.com/Firehed/container",
"versions_count": 17,
"total_downloads": 444593,
"dependents_count": 0,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 143986,
"first_published_at": null,
"latest_published_at": "2026-06-10T00:00:27Z",
"latest_version_yanked": null,
"days_since_latest_publish": 45
}
]
},
"popularity": {
"forks": 0,
"stars": 2,
"watchers": 2,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": null,
"open_issues_and_prs": 22
},
"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": 16687,
"source_files_sampled": 91,
"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": 10,
"direct_affected_count": 0
},
"ecosystems": [
"packagist"
],
"dependencies": [
{
"name": "nikic/php-parser",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^5.0"
},
{
"name": "psr/container",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^1.0 || ^2.0"
},
{
"name": "psr/log",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^1.1 || ^2.0 || ^3.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "nikic/php-parser",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "psr/container",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "psr/log",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "php",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpstan/phpstan",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpstan/phpstan-phpunit",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpstan/phpstan-strict-rules",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpunit/phpunit",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "squizlabs/php_codesniffer",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "vlucas/phpdotenv",
"direct": false,
"version": null,
"ecosystem": "packagist"
}
],
"collected": true,
"truncated": false,
"total_count": 10,
"direct_count": 3,
"indirect_count": 7
}
},
"maintainership": {
"issues": {
"open_prs": 5,
"merged_prs": 71,
"open_issues": 17,
"closed_ratio": 0.514,
"closed_issues": 18,
"closed_unmerged_prs": 2
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "Firehed",
"commits": 132,
"avatar_url": "https://avatars.githubusercontent.com/u/354842?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"lint.yml",
"static-analysis.yml",
"test.yml"
],
"has_docs_dir": false,
"linter_configs": [
"phpcs.xml",
"phpstan.neon"
],
"has_editorconfig": false,
"has_linter_config": true,
"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": 3,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "30 out of 30 merged PRs checked by a CI test -- score normalized to 10",
"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": 0,
"reason": "Found 0/27 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"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": 0,
"reason": "license file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "17 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10",
"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": "c1d9b50c42503dd3ffddf3990e7342e71b35525a",
"ran_at": "2026-07-25T00:56:53Z",
"aggregate_score": 5,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-23T00:43:45Z",
"oldest_open_prs": [
{
"number": 78,
"created_at": "2026-03-13T22:24:23Z",
"last_comment_at": "2026-03-13T22:25:39Z",
"last_comment_author": "codecov"
},
{
"number": 86,
"created_at": "2026-05-07T19:33:27Z",
"last_comment_at": "2026-05-07T19:48:41Z",
"last_comment_author": "codecov"
},
{
"number": 105,
"created_at": "2026-06-11T00:43:32Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 112,
"created_at": "2026-06-25T00:43:38Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 113,
"created_at": "2026-06-25T00:43:43Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-06-24T23:25:04Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 3,
"created_at": "2019-03-14T22:15:52Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 4,
"created_at": "2019-03-14T22:16:10Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 7,
"created_at": "2019-03-21T19:54:53Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 14,
"created_at": "2021-03-26T20:17:16Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 29,
"created_at": "2021-12-01T18:55:04Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 30,
"created_at": "2021-12-06T18:19:48Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 32,
"created_at": "2022-09-12T20:15:57Z",
"last_comment_at": "2022-09-21T17:08:22Z",
"last_comment_author": "Firehed"
},
{
"number": 35,
"created_at": "2022-10-19T00:55:15Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 36,
"created_at": "2022-10-19T00:55:36Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 38,
"created_at": "2022-11-07T18:47:35Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 54,
"created_at": "2024-10-06T17:21:29Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 77,
"created_at": "2026-03-13T19:58:22Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 80,
"created_at": "2026-04-03T23:36:54Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 106,
"created_at": "2026-06-11T21:12:30Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 107,
"created_at": "2026-06-18T17:55:46Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 108,
"created_at": "2026-06-18T17:57:38Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 111,
"created_at": "2026-06-25T00:29:23Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/Firehed/container",
"host": "github.com",
"name": "container",
"owner": "Firehed"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"security": 50,
"vitality": 69,
"community": 26,
"governance": 53,
"engineering": 74
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 69,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"commits_last_year": 34,
"human_commit_share": 0.97,
"days_since_last_push": 30,
"active_weeks_last_year": 9
},
"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": "9/52 weeks with commits",
"points": 6.2,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 9
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "34 commits in the last year",
"points": 13.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 34
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "17 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"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": 17,
"latest_release_tag": "1.1.0",
"releases_from_tags": false,
"days_since_latest_release": 45,
"mean_days_between_releases": 186.4
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "17 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 17
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 45 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 45
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~186.4 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 186.4
}
}
],
"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": 30,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 30 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 30
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 26,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 2,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "2 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 2
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": true,
"has_license": false,
"has_contributing": false,
"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": "no license file detected",
"points": 0,
"status": "missed",
"details": [
{
"code": "license_absent",
"params": {}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"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": 69,
"inputs": {
"packages": [
"firehed/container"
],
"dependents": 0,
"ecosystems": "packagist",
"total_downloads": 444593,
"monthly_downloads": 143986
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "143,986 downloads/month across packagist",
"points": 68.8,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 143986,
"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": "moderate",
"name": "Sustainability & Governance",
"value": 53,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"merged_prs": 71,
"open_issues": 17,
"closed_issues": 18,
"issue_closed_ratio": 0.514,
"closed_unmerged_prs": 2
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "51% of issues closed",
"points": 24,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 51
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "71/73 decided PRs merged",
"points": 37.2,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 71,
"decided": 73
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/27 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 59,
"inputs": {
"followers": 49,
"owner_type": "User",
"is_verified": null,
"owner_login": "Firehed",
"public_repos": 162,
"account_age_days": 5832
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "49 followers of Firehed",
"points": 12.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 49,
"login": "Firehed"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "162 public repos, account ~15 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 162
}
},
{
"code": "account_age_years",
"params": {
"years": 15
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"firehed/container"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 45
},
"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 45 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 45
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "17 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 17
}
}
],
"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": "good",
"name": "Engineering Quality",
"value": 74,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"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": "phpcs.xml, phpstan.neon",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "phpcs.xml, phpstan.neon"
}
}
],
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "30 out of 30 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"topics": [
"12-factor",
"autowiring",
"container",
"dependency-injection",
"environment-variables",
"php",
"psr-11"
],
"has_wiki": true,
"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": "7 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 7
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 50,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"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": 50,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 5
},
"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 is not maximal on development and all release branches",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "30 out of 30 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"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 0/27 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"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 not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "17 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"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": 2
},
"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": "moderate",
"name": "AI Readiness",
"value": 50,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 37,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.691,
"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": "67 of 97 human commits state their intent (structured subject or explanatory body)",
"points": 36.8,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 67,
"sampled": 97
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"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": 57,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.12,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0.03
},
"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": "phpcs.xml, phpstan.neon",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "phpcs.xml, phpstan.neon"
}
}
],
"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": "12 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 12,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "3 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 3,
"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": 16687,
"source_files_sampled": 91,
"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/91 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 91,
"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": [
"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-25T00:57:09.554892Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/f/Firehed/container.svg",
"full_name": "Firehed/container",
"license_state": "absent",
"license_spdx": null
}