Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 318,
"has_wiki": true,
"homepage": null,
"languages": {
"PHP": 190047
},
"pushed_at": "2026-07-22T06:38:19Z",
"created_at": "2013-07-15T03:04:40Z",
"owner_type": "User",
"updated_at": "2026-07-14T07:44:27Z",
"description": "Email\\Parse is a multiple (and single) email address parser for php that is reasonably RFC822 / RFC2822 compliant.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "PHP",
"significant_languages": [
"PHP"
]
},
"owner": {
"blog": null,
"name": null,
"type": "User",
"login": "mmucklo",
"company": null,
"location": "Bay Area, California, USA",
"followers": 21,
"avatar_url": "https://avatars.githubusercontent.com/u/245122?v=4",
"created_at": "2010-04-16T00:46:10Z",
"is_verified": null,
"public_repos": 27,
"account_age_days": 5941
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "3.4.0",
"kind": "minor",
"published_at": "2026-07-13T07:28:04Z"
},
{
"tag": "3.3.2",
"kind": "patch",
"published_at": "2026-07-13T00:46:30Z"
}
],
"recent_commits": [
{
"oid": "41763cf6fdf4b1d663404fa0c5af255104d1f8a8",
"body": null,
"is_bot": false,
"headline": "Release v3.4.0",
"author_name": "Matthew J Mucklo",
"author_login": "mmucklo",
"committed_at": "2026-07-13T07:27:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df046fafbc50fd3ad7d0f8405ed06655e5947a24",
"body": "getSeparators(), getBannedChars(), and getUseWhitespaceAsSeparator() were\ncalled inside the per-character loop (up to a few times per character across\nthe hot states). They return immutable config that cannot change during a\nparse, so they are now fetched once into locals before the loop, removing a\n[…]\nsurrounding opcodes from every character iteration.\n\n~19% faster on a mixed-input micro-benchmark (87.8us -> 71.0us/parse), on top\nof the mb_str_split change. No behavioral change — all 91 tests pass.",
"is_bot": false,
"headline": "Perf: hoist loop-invariant option getters out of the main loop (#61)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-07-13T07:23:48Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "30b9e9a0bba3cba1d19f9fa6dc61a647199872d1",
"body": "The main loop called mb_substr($emails, $i, 1, $encoding) for every character,\nplus for each comment/quoted look-ahead. For multi-byte encodings mb_substr\nrescans from the start of the string to locate the Nth character — O(n) per\ncall, O(n^2) across the loop. Splitting once with mb_str_split() and \n[…]\n3.2\nbaseline), largest gains on longer inputs: batch 100 stream 13,415us -> 9,783us\n(-27%), name-addr -24%, obs-route -26%, comment extraction -25%. No behavioral\nchange — all 91 tests pass unchanged.",
"is_bot": false,
"headline": "Perf: split input once with mb_str_split in the main parse loop (#60)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-07-13T06:52:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f109878d3e8887ab1fe547d5371b15a537e86ab3",
"body": "* Establish a benchmark baseline with regression comparison\n\nAdds tooling to record a tagged PhpBench baseline and diff runs against it:\n- composer bench:baseline — record/overwrite the local `baseline` tag\n- composer bench:compare — run and diff each subject vs the baseline\n\nStabilizes the runne\n[…]\nssions (>50% slower per subject) to tolerate shared-runner\nnoise, and never blocks a merge. Surfaces the per-subject comparison table in\nthe job log.\n\n* docs: mark bench CI integration done in ROADMAP",
"is_bot": false,
"headline": "Establish a benchmark baseline with regression comparison (#59)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-07-13T05:49:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1073d4ce89bb6093b4ffa5b7c12a15b1b476417b",
"body": null,
"is_bot": false,
"headline": "Release v3.3.2",
"author_name": "Matthew J Mucklo",
"author_login": "mmucklo",
"committed_at": "2026-07-13T00:46:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4636d267845d34a31dd13e07cffc1a23f6fd4223",
"body": "…(#58)\n\nvalidateDomainName() called mb_regex_encoding()/mb_split(), both of which\nemit E_DEPRECATED under PHP 8.6 (the underlying oniguruma library is\nunmaintained). The domain is already ASCII at that point (post-punycode,\nvia normalizeDomainAscii()), so label splitting now uses explode('.') and\nth\n[…]\nding domain fails gracefully\n- malformed-UTF-8 handling gated on a runtime mbstring probe: 8.1/8.2\n preserve invalid bytes (rejected), 8.3+ substitute them during\n tokenization before the guard runs",
"is_bot": false,
"headline": "Fix PHP 8.6 mb_regex_encoding deprecation in domain validation (#57) …",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-07-13T00:36:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7fd7790debb03ff3ebdf6fdc4c6e088f8cb2e0b4",
"body": "Psalm level 3 with a 66-entry baseline. All findings are either false\npositives (PossiblyUnusedMethod for public API methods Psalm can't see\ncallers for), duplicates of existing PHPStan baseline entries\n(TypeDoesNotContainType, RedundantCondition for state-machine tautologies),\nor already-handled ed\n[…]\non't use, fix requires PHP 8.3+ which would\ndrop our 8.1/8.2 support, no backport to PHPUnit 9.x.\n\nNew: composer psalm script, psalm.xml config, psalm-baseline.xml.\nROADMAP: Psalm item flipped to [x].",
"is_bot": false,
"headline": "Add Psalm cross-check alongside PHPStan (#56)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-20T09:32:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2450702662b280bd9154a4fd724176ec8f32164f",
"body": null,
"is_bot": false,
"headline": "Add CHANGELOG entry for v3.3.1",
"author_name": "Matthew J Mucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-20T05:41:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "217bfccedb0f9830d30283118e3a11ed61214348",
"body": "Property-based tests (tests/PropertyTest.php):\n10 randomized invariant checks, 200 iterations each, across the full\nparseSingle / parseMultiple / parseStream / toArray / Stringable API.\nNo external dependency — uses native PHPUnit + mt_rand with a SEED\nenvvar for deterministic reproduction. 84 total\n[…]\ndates:\n- Property-based testing flipped to [x] with implementation details.\n- CONTRIBUTING.md flipped to [x].\n\nPHPStan baseline regenerated (13 entries, +1 from PropertyTest.php\nuntyped array access).",
"is_bot": false,
"headline": "Property-based tests + CONTRIBUTING.md (#55)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-20T05:39:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "97ad7ac023b01d1aed674085c407afa36f9a70f9",
"body": "…g (#54)\n\nTargeted test-strengthening pass to kill surviving mutants identified by\nInfection, plus a real bug fix uncovered along the way. All additions\nare pure test work except for the one-line parser fix in\nvalidateQuotedContent.\n\nMetrics:\n- Infection MSI: 74% → 80% (+6 pp)\n- Covered Cod\n[…]\nresholds and progress toward 85% goal.\n- Parse.php line-coverage entry updated with current number and a note\n that ≥95% remains aspirational; remaining gaps are defensive /\n unreachable code paths.",
"is_bot": false,
"headline": "Strengthen test assertions — Infection MSI 74% → 80%, fix one real bu…",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-20T04:31:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d8e967cbe21ca1c45b95e17537b113680e8b156e",
"body": "Three quality/infrastructure items from the ROADMAP, plus a short fork\nsurvey that found nothing worth back-porting.\n\nFork survey:\n- 13 forks, 7 with commits ahead of upstream. All were inspected.\n- Nothing to back-port. Upstream's v3.x configurable ParseOptions has\n superseded every fork's patches\n[…]\ntion-summary.log, .infection-tmp/.\n- ROADMAP: Infection marked partial [~], PhpBench and PHPStan 8 marked\n [x] with implementation notes.\n\nTests: 65 tests / 489 assertions (up from 60 / 472 in v3.3).",
"is_bot": false,
"headline": "Quality infrastructure: Infection, PhpBench, PHPStan level 8 (#53)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-13T08:32:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "084b5a3b55bd00b858665529addfc64abbdf1fb1",
"body": "All v3.3 roadmap items (ecosystem bridges deferred by user direction).\nFully additive — no breaking changes for v3.2 callers.\n\nSerialization on value objects:\n- ParsedEmailAddress::toArray(): round-trips to the legacy parse() array\n shape, field order matching the parser output. Useful when mixing \n[…]\nquired name quotes, quoted\n local-part, invalid -> empty string\n- Local-part normalizer: Gmail-style rewrite, domain gating, not\n invoked on invalid inputs, null-clearing via withLocalPartNormalizer",
"is_bot": false,
"headline": "v3.3: serialization, canonical form, local-part normalizer, docs (#52)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-13T05:17:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "77d4d20120a9bba53fb5146810087b355d4184aa",
"body": "All v3.2 roadmap items. Fully additive — no breaking changes for v3.1 callers;\ntwo notable tolerance expansions (inputs previously rejected as invalid now\nparse) that existing \"strict whitespace\" validators may want to know about.\n\nStreaming batch parsing:\n- Parse::parseStream(iterable, string): Gen\n[…]\nes, ROADMAP items flipped to [x], README\nupdated with parseStream example and allowObsRoute rule property.\n\nTooling: composer stan now runs with --memory-limit=512M to accommodate\nthe larger codebase.",
"is_bot": false,
"headline": "v3.2: streaming, severity, obs-route support, CFWS tolerance (#51)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-13T04:19:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e3236cdfe3c812f27aa2774b105d0b7211f29482",
"body": "…on rules (#50)\n\nCompletes the v3.1 roadmap. All additions are non-breaking for v3.0 callers;\nthe one hard cutover is that the 15 ParseOptions rule properties are now\nreadonly (direct assignment throws Error — use the new fluent withX() builders).\nExisting deprecated setters, factory presets, and th\n[…]\ns (265 assertions\n exceeds the 250+ target).\n- README.md: typed output example in Basic Usage; withX() builders in the\n Customizing Rules section; new rule properties added to the reference\n table.",
"is_bot": false,
"headline": "v3.1: immutable ParseOptions, typed output, error codes, new validati…",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-13T00:24:41Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "83669ddd029d8a17dbd1a66f819329642d0477ca",
"body": "Replace the deleted RfcMode string-constant architecture with boolean rule\nproperties on ParseOptions and four factory presets:\n\n ParseOptions::rfc5321() — RFC 5321 Mailbox (strict ASCII, SMTP)\n ParseOptions::rfc6531() — RFC 6531/6532 (full UTF-8, NFC normalization)\n ParseOptions::rfc5322() — \n[…]\nons (§-notation); no Fix #N tags\n\nTest coverage: 224 assertions covering all presets, bug fixes, edge cases\n(trailing dots, C1 controls, UTF-8 octet boundaries, domain NFC, IP\nglobal-range rejection).",
"is_bot": false,
"headline": "Add RFC compliance modes with configurable ParseOptions presets (#49)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-04-12T05:27:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4ea8f3fa6b3b12999f0b8c2fe713dedbc44b0d86",
"body": "- Add LengthLimits configuration section with examples\n- Document comment extraction feature with examples\n- Update ParseOptions constructor signature\n- Add comments field to all return value examples\n- Include simple_address and other missing fields\n- Document default RFC length limits\n- Add examples for createDefault() and createRelaxed() factory methods\n- Make README comprehensive yet easy to understand",
"is_bot": false,
"headline": "Update README with complete documentation (#48)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-02-08T04:21:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c479cc4dd36480aa5e9f7afc6c0d8f1f46c8b74f",
"body": "* Add comment extraction feature (fixes #15)\n\n- Add 'comments' field to email address result array\n- Capture comment text during STATE_COMMENT parsing\n- Store comments as array (supports multiple comments)\n- Handle nested comments correctly\n- Add 7 comprehensive tests for comment extraction\n- Update\n[…]\nield\n- All 111 tests passing (85 original + 19 updated + 7 new)\n\nResolves GitHub issue #15\nhttps://github.com/mmucklo/email-parse/issues/15\n\n* Remove temporary debug files\n\n* change to [] for comments",
"is_bot": false,
"headline": "Capture comments (#47)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-02-08T04:15:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1d508e5853f493748c788895504dc6499d05434f",
"body": "- Add RFC 5321 reference to local part length error messages\n- Add RFC erratum 1690 reference to total length error messages\n- Update domain label error messages to show dynamic limit (not just 'too long')\n- Update all test expectations to match new error message format\n- All 104 tests passing (102 + 2 from re-added coverage tests)",
"is_bot": false,
"headline": "Update error messages to include RFC references and dynamic limits (#46)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-02-07T23:56:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2bdb8213ace8e2716f5e72ef02182ca923da5b9",
"body": "* Fix RFC 5321 length validation\n\n- Fix local part max length to 64 octets (was incorrectly 63)\n- Use strlen instead of mb_strlen to count octets not characters\n- Update error messages to reference RFC 5321 and RFC erratum 1690\n\n* Add RFC 5321 length restriction tests\n\n- Test local part at exactly 6\n[…]\nfactory method\n- Covers previously untested code paths\n- All 102 tests passing (100 original + 2 new coverage tests)\n- Ensures test coverage increases with new features\n\n* Remove temporary debug files",
"is_bot": false,
"headline": "Feature/length (#45)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-02-07T22:36:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "13d5c7e89be7e20f7300e639a4e0cf6ba575c3ae",
"body": "* Add exclusive separator tests and RFC 5322 display name tests\n\n- Add tests for exclusive separator behavior (comma-only, semicolon-only)\n- Add tests for RFC 5322 compliant quoted display names with commas\n- Add tests for unquoted display names with commas (correctly fail)\n- Add 'separators' config\n[…]\niguration option to testspec.yml\n- Update ParseTest.php to read custom separator configurations from tests\n- Update composer.lock for PHP 8.1 compatibility\n- All 92 tests passing (85 original + 7 new)",
"is_bot": false,
"headline": "Feature/separator enhancements (#44)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-02-07T09:38:38Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "19f650ffdc1cff0c941099e8de76b47a1a6f543b",
"body": "* separators implementation plus readme and scrutinizer updates\n\n* Patreon\n\n* cs-fixer and stan fixes\n\n* code cov token\n\n* ParseOptions not optional internally in Parse",
"is_bot": false,
"headline": "Separators (#41)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-02-04T08:12:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27f8209c423a5e8530e2c4e63d224a4023200b10",
"body": "…… (#39)\n\n* PHP 8.1 support, plus github actions support, plus php-cs-fixer, initialize phpstan\n\n* Fix GitHub Actions: Update binary paths from vendor/bin to bin\n\n* Fix operator precedence issue in Parse.php line 621\n\nAdd parentheses to properly group OR conditions with AND operator.\nThis fixes pote\n[…]\novides equivalent functionality across all supported PHP versions.\n\n* special casing for PHP 8.1 backwards compat\n\n* remove var_dump\n\n* add more tests for invalid IP ranges\n\n* fix test\n\n* update rules",
"is_bot": false,
"headline": "PHP 8.1 support, plus github actions support, plus php-cs-fixer, init…",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-02-02T02:07:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3f0df0c9c393f374566e367e3497bf318972a04a",
"body": "…s, update scrutinizer. (#30)\n\n* upgrade phpunit config\n\n* update scrutinizer build\n\n* scrutinizer update\n\n* Fix several edge cases, plus scrutinizer\n\n* removing redundant tests\n\n* fix scrutinizer\n\n* Revert scrutinizer changes",
"is_bot": false,
"headline": "Remove redundant tests, fix a few edge cases, add tests for edge case…",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-01-27T07:12:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "021397d5e9e60bab02e0981780da6aef7c39e80b",
"body": null,
"is_bot": false,
"headline": "Fix | and / in email addresses (#37)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-01-27T06:07:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4dbc2576e6f5b5bb23728e403f51eed65ffd2811",
"body": null,
"is_bot": false,
"headline": "Remove laminas, add support for IPv6, add test cases (#36)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2026-01-26T07:31:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91b8180ebb9d601b7ed1f1fdb770eab6f8462fd5",
"body": null,
"is_bot": false,
"headline": "Fixing deprecation notices and adding types",
"author_name": "Matthew J Mucklo",
"author_login": "mmucklo",
"committed_at": "2025-11-08T02:09:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47e69184fca7e27b2d06646e853751d4f159d8e3",
"body": "* Support PHP 8 and psr/http-message 2.x\r\n\r\n* Migrate to phpunit 9.6\r\n\r\n* Update required PHP version to 8.2\r\n\r\n* Update scrutinizer build image and PHP version\r\n\r\n* Upgrade build image to Ubuntu 20.04 (focal)\r\n\r\n* Upgrade build image to Ubuntu 22.04 (jammy)\r\n\r\n* Drop PHP build version from scrutinizer config\r\n\r\n* Add required envvar\r\n\r\n---------\r\n\r\nCo-authored-by: Jonathon Hill <jonathon@compwright.com>",
"is_bot": false,
"headline": "Support PHP 8 and psr/http-message 2.x (#34)",
"author_name": "Jonathon Hill",
"author_login": "compwright",
"committed_at": "2024-12-05T08:00:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a14db890c77cc5c4bee0a282d6a4f363a181bd40",
"body": null,
"is_bot": false,
"headline": "cleanup more punycode (#31)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2023-01-03T08:41:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c06b23e6ac27b83301b6a2b7411dcb5de8876a29",
"body": null,
"is_bot": false,
"headline": "fix coding style (#29)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2023-01-03T08:30:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b63a118fcbc250b4ef97994738a54db8c02a37f",
"body": null,
"is_bot": false,
"headline": "complete removal of punycode, replace with symfony polyfill (#28)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2023-01-03T08:28:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a8e2aea3c6dc49adcfcc29cc820daeecff4526b",
"body": "Using `${var}` in strings is deprecated in PHP 8.2, use `{$var}`\r\ninstead.\r\n\r\nSee https://php.watch/versions/8.2/$%7Bvar%7D-string-interpolation-deprecated",
"is_bot": false,
"headline": "Fix string interpolation (#25)",
"author_name": "Arne Jørgensen",
"author_login": "arnested",
"committed_at": "2023-01-03T06:35:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c35618d3c3d4b0c21dace47a44beb3d14af34199",
"body": "* Issue #22 - add a parse options so that banned chars can be overridden\r\n\r\n* Add a way to change options",
"is_bot": false,
"headline": "Add ParseOptions in order to address issue #22 (#23)",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2021-07-13T15:45:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c924d0be13d611ff9e270f42098dacdb5eb3c6d",
"body": null,
"is_bot": false,
"headline": "cleanup",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2021-05-10T02:58:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14781b6e5a2345500f7b545ad061d56d92edbd13",
"body": null,
"is_bot": false,
"headline": "Internationalization: support accented names without escaping (#16)",
"author_name": "ArthurHoaro",
"author_login": "ArthurHoaro",
"committed_at": "2021-05-08T17:10:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "708b8568697838d9a3b2272b08a074ac0d7d1870",
"body": "* Migrate zend-validator to laminas-validator\r\n\r\n$ laminas-migration migrate\r\n\r\n* Remove un-needed laminas/laminas-dependency-plugin dependency",
"is_bot": false,
"headline": "Migrate zend-validator to laminas-validator (#21)",
"author_name": "Elan Ruusamäe",
"author_login": "glensc",
"committed_at": "2020-03-02T15:15:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b0d9cc9039af749a9e585700a480b821c6abd16",
"body": "…ing - reevaluate)",
"is_bot": false,
"headline": "up minimum requirements to php 7.1, remove exclamation test (not work…",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2019-08-05T07:46:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "521626cba7f29cfeb311312f22d6230e43aaac7d",
"body": null,
"is_bot": false,
"headline": "clean up gitignore",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2019-08-05T07:35:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c57a96b7e4097550525672237668547ec724c82",
"body": null,
"is_bot": false,
"headline": "some reformatting and an additional test",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2019-08-05T07:33:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "106326e5760c9d1d05c3aa392c1a3fbba72bf9c1",
"body": null,
"is_bot": false,
"headline": "issue #12 - add test",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-05-20T16:27:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "784a36b14a9775cb8701b6b321d20d276a3b9b41",
"body": "Update README.md",
"is_bot": false,
"headline": "Merge pull request #11 from glensc/patch-1",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2017-05-20T16:22:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83af9b90c75c986de65d338c450c6fd34c300067",
"body": "fix markdown. was broken in github and in packagist",
"is_bot": false,
"headline": "Update README.md",
"author_name": "Elan Ruusamäe",
"author_login": "glensc",
"committed_at": "2017-05-20T14:26:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dac20d7632dfff100232627c277a068d0bced5ce",
"body": null,
"is_bot": false,
"headline": "issue #10 - test for underscore",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-05-20T06:29:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d1b481d40e01f314ea4d13c1e7f30df3673a371",
"body": "Scrutinizer Auto-Fixes",
"is_bot": false,
"headline": "Merge pull request #9 from mmucklo/scrutinizer-patch-2",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-15T01:57:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5394a9c9c2376b4fac61bb20adab9c16c9f4305a",
"body": "This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com",
"is_bot": false,
"headline": "Scrutinizer Auto-Fixes",
"author_name": "Scrutinizer Auto-Fixer",
"author_login": "scrutinizer-auto-fixer",
"committed_at": "2017-04-15T01:54:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6152296051aff844d4f2708cec07fd93a490fa9c",
"body": "Scrutinizer Auto-Fixes",
"is_bot": false,
"headline": "Merge pull request #7 from mmucklo/scrutinizer-patch-2",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:51:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce0d81af2780766ad82233b1376340ef92a90342",
"body": "This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com",
"is_bot": false,
"headline": "Scrutinizer Auto-Fixes",
"author_name": "Scrutinizer Auto-Fixer",
"author_login": "scrutinizer-auto-fixer",
"committed_at": "2017-04-14T07:49:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79c8b1dae5dc363d015aa802c9137030d510fb9f",
"body": null,
"is_bot": false,
"headline": "more cleanup - docs, etc.",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:48:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc94f1ce9aa38bd3c5c76d204ab10ae1f89fead1",
"body": null,
"is_bot": false,
"headline": "DRY up a wee bit of code",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:45:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef9fb6fdb6f2ae6175b96fe3392dd43ca364f1ee",
"body": null,
"is_bot": false,
"headline": "more cleanup",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:41:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fdfc55a3e7b2482fbeb5c1a4130155253b64e29d",
"body": null,
"is_bot": false,
"headline": "Merge branch 'master' of https://github.com/mmucklo/email-parse",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:40:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dbb22b3a7f574dbbfd2ab1ec210273f53c84417",
"body": null,
"is_bot": false,
"headline": "small bits of cleanup",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:40:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "062e1c2ed1e31cb334de22c2152a8a4f1e670a83",
"body": "Scrutinizer Auto-Fixes",
"is_bot": false,
"headline": "Merge pull request #5 from mmucklo/scrutinizer-patch-1",
"author_name": "mmucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:28:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "261850af8e5a4ecc0b88a2bce69bc2776074d64f",
"body": null,
"is_bot": false,
"headline": "7.1 build",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:26:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e238a71ec2067c86f9190f963c51c272b85a9693",
"body": "This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com",
"is_bot": false,
"headline": "Scrutinizer Auto-Fixes",
"author_name": "Scrutinizer Auto-Fixer",
"author_login": "scrutinizer-auto-fixer",
"committed_at": "2017-04-14T07:25:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4aa847389678c7dc46ceab51d6a3547f7c48b41",
"body": "…it and libs, psr2 cleanup, and more",
"is_bot": false,
"headline": "Adding in composer.lock, setting up test coverage, and updating phpun…",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:23:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8ebb63662839c58b6de4ba6ec2d87916cbad6cf",
"body": null,
"is_bot": false,
"headline": "remove support for EOL (as of today) PHP Platforms",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:11:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dd7ba419f82915c793d439ecc2f7bd3e8a5b745",
"body": null,
"is_bot": false,
"headline": "remove unnecessary assignment",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T07:08:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "daf7a8323781d09fa3f2077704b3bdd8fd3b4b16",
"body": null,
"is_bot": false,
"headline": "enable scrutinizer",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2017-04-14T06:47:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "797cf655489a0c1a3aa25568bc0f31823ea11b1d",
"body": null,
"is_bot": false,
"headline": "see if this updates composer in travis",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-09-15T15:56:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5d93bf22a82b24fa019084aa8ffccfc91d853ef",
"body": null,
"is_bot": false,
"headline": "try to turn on container building for travis",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-09-15T15:48:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b4c6c0a1260b738bc61bc2a776f40d15e6e325b",
"body": null,
"is_bot": false,
"headline": "Merge branch 'mkraemer-fix-psr4'",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-09-15T15:36:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0e8af26bdbbdaac607617da7129a3f448875a36",
"body": null,
"is_bot": false,
"headline": "fix merge conflict",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-09-15T15:36:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b24b99f67bdb5c2641817b2cf22d56ff7e98c66d",
"body": null,
"is_bot": false,
"headline": "fix composer.json",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-09-15T15:32:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72106b36150f0122dff1af83b43a6894ff23f551",
"body": null,
"is_bot": false,
"headline": "fix psr-4 autoloading",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-09-15T15:31:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "934e6f9fdcf4cfdb107f01ea75cfc1dc991b5bcf",
"body": null,
"is_bot": false,
"headline": "preparing for refactoring",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-09-15T15:26:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6c4ce1dd6df36713170ad58c5c3970afe406dcd",
"body": null,
"is_bot": false,
"headline": "Fix namespace in test",
"author_name": "Marius Krämer",
"author_login": "mkraemer",
"committed_at": "2015-09-15T09:47:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68323d48270100eb5982d300a17e3f2834a1c0ee",
"body": null,
"is_bot": false,
"headline": "Fix psr-4 autoloading",
"author_name": "Marius Krämer",
"author_login": "mkraemer",
"committed_at": "2015-09-15T09:38:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89c411befe50897e9a8b562b2b2b70bcf4f5db2f",
"body": null,
"is_bot": false,
"headline": "remove old references",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T06:08:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a62bb829d931a01827d2ea4f232145d4316d97dc",
"body": null,
"is_bot": false,
"headline": "update composer.json, readme",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T05:58:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c07010363ceff2a56a0e9489c60e13c96b54c0de",
"body": null,
"is_bot": false,
"headline": "Convert tests to a Yaml format for easier readability and updating",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T05:41:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2de594fde315cdca85dc0093eb5b4f4fa5c65cc",
"body": null,
"is_bot": false,
"headline": "PHP CS fix",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T05:11:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "596c4f8c625da2a1b7fbe8c4e19daba0bcba43f3",
"body": null,
"is_bot": false,
"headline": "change psr/log to ~1.0, fix small issues in code",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T05:07:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c8def7e25b2ec9a2bf82c1f67c8f37d784ff75d",
"body": null,
"is_bot": false,
"headline": "seems that travis only has 5.4.37 right now",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T02:05:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69b54e8461e96c5b36d0c602629d4df8bd99d105",
"body": null,
"is_bot": false,
"headline": "update license, remove IDNA (sub-in true/punycode)",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T01:16:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b704c6ae0757364c1cc9ef26d61e7224990b495",
"body": null,
"is_bot": false,
"headline": "add travis badge",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T00:32:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36e911a78438512a9b273ecb98443edd11e884bb",
"body": null,
"is_bot": false,
"headline": "update build script",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T00:29:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea2735dd25dd1a13979f3ae598accc0cfe6ee4e8",
"body": null,
"is_bot": false,
"headline": "update php unit, add php cs fixer",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-07-08T00:21:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6cda7e6ebe1f6dc8292e643f0720c9793d97d76",
"body": null,
"is_bot": false,
"headline": "Change bundle name",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2015-05-31T05:36:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd71a6f6af7808f346edfff478547e8d1ec187e5",
"body": "…'t seem to work",
"is_bot": false,
"headline": "Issue #1 - Hack: include IDNA2 manually as a subloader for pear doesn…",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2013-09-06T18:27:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c17f73bfec8b6f5fa18407cae5ea8b619913cebc",
"body": null,
"is_bot": false,
"headline": "Issue #2 and prep for moving tests into a yaml format",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2013-09-04T19:15:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1877ed75cc44bbe5cd7d65b5a5fd99a5c374d80a",
"body": null,
"is_bot": false,
"headline": "updates",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2013-07-15T03:41:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b009eee37128a06cfba5fb1497ae676bdcbb9dd",
"body": null,
"is_bot": false,
"headline": "update tabs -> spaces",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2013-07-15T03:25:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f43fefa2d4a9b723798914b4a44d8bd542c8360",
"body": null,
"is_bot": false,
"headline": "update README",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2013-07-15T03:14:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74e0d43e1b9cbca3f4c3654b037ff12d5ebb4fae",
"body": null,
"is_bot": false,
"headline": "update readme",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2013-07-15T03:08:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca4886a6ce64e1c7ee44ddf98bcee13dd2911446",
"body": null,
"is_bot": false,
"headline": "initial commit",
"author_name": "Matthew J. Mucklo",
"author_login": "mmucklo",
"committed_at": "2013-07-15T03:06:37Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 26,
"latest_release_at": "2026-07-13T07:28:04Z",
"latest_release_tag": "3.4.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 7,
"days_since_latest_release": 8,
"mean_days_between_releases": 0.3
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 57,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "mmucklo/email-parse",
"exists": true,
"license": "MIT",
"keywords": [
"email",
"parse",
"utf-8",
"RFC822",
"RFC2822",
"email-parse",
"RFC5322",
"multiple-email",
"batch-email",
"RFC6531",
"internationalized-email"
],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/mmucklo/email-parse",
"is_deprecated": false,
"latest_version": "3.4.0",
"repository_url": "https://github.com/mmucklo/email-parse",
"versions_count": 28,
"total_downloads": 890868,
"dependents_count": 1,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 13038,
"first_published_at": null,
"latest_published_at": "2026-07-13T07:27:26Z",
"latest_version_yanked": null,
"days_since_latest_publish": 8
}
]
},
"popularity": {
"forks": 14,
"stars": 45,
"watchers": 7,
"fork_history": {
"days": [
{
"date": "2013-10-22",
"count": 1
},
{
"date": "2014-03-10",
"count": 1
},
{
"date": "2014-12-23",
"count": 1
},
{
"date": "2015-05-15",
"count": 1
},
{
"date": "2017-05-20",
"count": 1
},
{
"date": "2017-10-17",
"count": 1
},
{
"date": "2019-07-31",
"count": 1
},
{
"date": "2022-09-23",
"count": 1
},
{
"date": "2022-11-04",
"count": 1
},
{
"date": "2022-11-11",
"count": 1
},
{
"date": "2023-10-07",
"count": 1
},
{
"date": "2024-05-24",
"count": 1
},
{
"date": "2024-12-04",
"count": 1
}
],
"complete": true,
"collected": 13,
"total_forks": 14
},
"star_history": {
"days": [
{
"date": "2014-03-10",
"count": 1
},
{
"date": "2014-04-25",
"count": 1
},
{
"date": "2014-05-19",
"count": 1
},
{
"date": "2014-07-23",
"count": 1
},
{
"date": "2015-01-28",
"count": 1
},
{
"date": "2015-09-15",
"count": 1
},
{
"date": "2015-12-04",
"count": 1
},
{
"date": "2016-03-06",
"count": 1
},
{
"date": "2016-03-18",
"count": 1
},
{
"date": "2016-03-24",
"count": 1
},
{
"date": "2016-03-25",
"count": 1
},
{
"date": "2016-04-08",
"count": 1
},
{
"date": "2016-07-08",
"count": 1
},
{
"date": "2017-01-30",
"count": 1
},
{
"date": "2017-02-24",
"count": 1
},
{
"date": "2017-06-07",
"count": 1
},
{
"date": "2017-07-12",
"count": 1
},
{
"date": "2017-07-26",
"count": 1
},
{
"date": "2017-11-15",
"count": 1
},
{
"date": "2017-12-07",
"count": 1
},
{
"date": "2017-12-28",
"count": 1
},
{
"date": "2018-01-11",
"count": 1
},
{
"date": "2018-02-19",
"count": 1
},
{
"date": "2018-07-12",
"count": 1
},
{
"date": "2018-07-25",
"count": 1
},
{
"date": "2018-10-14",
"count": 1
},
{
"date": "2019-03-26",
"count": 1
},
{
"date": "2019-09-30",
"count": 1
},
{
"date": "2019-11-11",
"count": 1
},
{
"date": "2020-05-23",
"count": 1
},
{
"date": "2021-05-01",
"count": 1
},
{
"date": "2021-10-09",
"count": 1
},
{
"date": "2021-10-28",
"count": 1
},
{
"date": "2022-07-13",
"count": 1
},
{
"date": "2022-09-06",
"count": 1
},
{
"date": "2023-02-23",
"count": 1
},
{
"date": "2023-03-28",
"count": 2
},
{
"date": "2023-03-29",
"count": 2
},
{
"date": "2023-04-04",
"count": 1
},
{
"date": "2023-09-06",
"count": 1
},
{
"date": "2023-10-07",
"count": 1
},
{
"date": "2023-12-10",
"count": 1
}
],
"complete": true,
"collected": 44,
"total_stars": 45
},
"open_issues_and_prs": 4
},
"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": 77614,
"source_files_sampled": 11,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"composer.json"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 11,
"direct_affected_count": 0
},
"ecosystems": [
"packagist"
],
"dependencies": [
{
"name": "psr/log",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^3.0"
},
{
"name": "symfony/polyfill-intl-idn",
"manifest": "composer.json",
"ecosystem": "packagist",
"version_constraint": "^1.31"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "psr/log",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "symfony/polyfill-intl-idn",
"direct": true,
"version": null,
"ecosystem": "packagist"
},
{
"name": "ext-mbstring",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "friendsofphp/php-cs-fixer",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "infection/infection",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "php",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpbench/phpbench",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpstan/phpstan",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpunit/phpunit",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "symfony/yaml",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "vimeo/psalm",
"direct": false,
"version": null,
"ecosystem": "packagist"
}
],
"collected": true,
"truncated": false,
"total_count": 11,
"direct_count": 2,
"indirect_count": 9
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 37,
"open_issues": 3,
"closed_ratio": 0.85,
"closed_issues": 17,
"closed_unmerged_prs": 5
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "mmucklo",
"commits": 75,
"avatar_url": "https://avatars.githubusercontent.com/u/245122?v=4"
},
{
"type": "User",
"login": "scrutinizer-auto-fixer",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/6253494?v=4"
},
{
"type": "User",
"login": "mkraemer",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/1070200?v=4"
},
{
"type": "User",
"login": "glensc",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/199095?v=4"
},
{
"type": "User",
"login": "arnested",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/190005?v=4"
},
{
"type": "User",
"login": "ArthurHoaro",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1962678?v=4"
},
{
"type": "User",
"login": "compwright",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/138688?v=4"
}
],
"contributors_sampled": 7,
"top_contributor_share": 0.882
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": false,
"linter_configs": [
".php-cs-fixer.dist.php",
"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": 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": 7,
"reason": "18 out of 25 merged PRs checked by a CI test -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 1/30 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": 10,
"reason": "no dangerous workflow patterns detected",
"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": 5,
"reason": "6 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"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": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"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": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"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": "41763cf6fdf4b1d663404fa0c5af255104d1f8a8",
"ran_at": "2026-07-22T06:42:20Z",
"aggregate_score": 3.6,
"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-07-13T07:28:15Z",
"oldest_open_prs": [
{
"number": 63,
"created_at": "2026-07-22T06:40:28Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-13T07:23:48Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 4,
"created_at": "2017-04-14T06:51:50Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 8,
"created_at": "2017-04-14T07:53:29Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 62,
"created_at": "2026-07-17T15:44:49Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/mmucklo/email-parse",
"host": "github.com",
"name": "email-parse",
"owner": "mmucklo"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"security": 36,
"vitality": 75,
"community": 55,
"governance": 58,
"engineering": 67
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 75,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"commits_last_year": 26,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 7
},
"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": "7/52 weeks with commits",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 7
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "26 commits in the last year",
"points": 12.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 26
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "6 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 5,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"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": 100,
"inputs": {
"releases_count": 2,
"latest_release_tag": "3.4.0",
"releases_from_tags": false,
"days_since_latest_release": 8,
"mean_days_between_releases": 0.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "2 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 2
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 8 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 8
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0.3 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.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": "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": 8,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 8 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 8
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 55,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"forks": 14,
"stars": 45,
"watchers": 7,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "below_threshold"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "45 stars",
"points": 26.7,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 45
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "14 forks",
"points": 9.3,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 14
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "7 watchers",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 7
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"packages": [
"mmucklo/email-parse"
],
"dependents": 1,
"ecosystems": "packagist",
"total_downloads": 890868,
"monthly_downloads": 13038
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "13,038 downloads/month across packagist",
"points": 54.9,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 13038,
"ecosystems": "packagist"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "1 packages depend on it",
"points": 2,
"status": "partial",
"details": [
{
"code": "registry_dependents",
"params": {
"count": 1
}
}
],
"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": 58,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 21,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 7,
"top_contributor_share": 0.882
},
"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 88% of commits",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 88
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "7 contributors",
"points": 9.5,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 7
}
}
],
"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": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"merged_prs": 37,
"open_issues": 3,
"closed_issues": 17,
"issue_closed_ratio": 0.85,
"closed_unmerged_prs": 5
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "85% of issues closed",
"points": 39.7,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 85
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "37/42 decided PRs merged",
"points": 33.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 37,
"decided": 42
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/30 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": 53,
"inputs": {
"followers": 21,
"owner_type": "User",
"is_verified": null,
"owner_login": "mmucklo",
"public_repos": 27,
"account_age_days": 5941
},
"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": "21 followers of mmucklo",
"points": 9.7,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 21,
"login": "mmucklo"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "27 public repos, account ~16 yr old",
"points": 22.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 27
}
},
{
"code": "account_age_years",
"params": {
"years": 16
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"mmucklo/email-parse"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 8
},
"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 8 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 8
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "28 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 28
}
}
],
"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": 67,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 78,
"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": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"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": ".php-cs-fixer.dist.php, phpstan.neon",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".php-cs-fixer.dist.php, 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": "18 out of 25 merged PRs checked by a CI test -- score normalized to 7",
"points": 14,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": "at_risk",
"name": "Security",
"value": 36,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 36,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.6
},
"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": "18 out of 25 merged PRs checked by a CI test -- score normalized to 7",
"points": 1.8,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 1/30 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 dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"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": "6 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5",
"points": 3.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"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": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 11
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "at_risk",
"name": "AI Readiness",
"value": 34,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.482,
"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": "41 of 85 human commits state their intent (structured subject or explanatory body)",
"points": 25.7,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 41,
"sampled": 85
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 33,
"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,
"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": ".php-cs-fixer.dist.php, phpstan.neon",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".php-cs-fixer.dist.php, 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": "no agent-authored commits among the last 85",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 85
}
}
],
"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": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"primary_language": "PHP",
"largest_source_bytes": 77614,
"source_files_sampled": 11,
"oversized_source_files": 1
},
"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": "1/11 source files over 60KB",
"points": 50,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 11,
"oversized": 1
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-22T06:42:35.818827Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/m/mmucklo/email-parse.svg",
"full_name": "mmucklo/email-parse",
"license_state": "standard",
"license_spdx": "MIT"
}