JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [
"unitpay",
"unitpay-sdk",
"payments"
],
"is_fork": false,
"size_kb": 124,
"has_wiki": true,
"homepage": null,
"languages": {
"PHP": 131989
},
"pushed_at": "2026-07-25T00:48:26Z",
"created_at": "2015-01-09T14:26:31Z",
"owner_type": "Organization",
"updated_at": "2026-07-25T00:47:58Z",
"description": "PHP SDK for Unitpay API https://help.unitpay.ru",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "PHP",
"significant_languages": [
"PHP"
]
},
"owner": {
"blog": "https://unitpay.ru",
"name": "Unitpay",
"type": "Organization",
"login": "unitpay",
"company": null,
"location": "Czech Republic",
"followers": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/10464576?v=4",
"created_at": "2015-01-09T14:24:25Z",
"is_verified": null,
"public_repos": 42,
"account_age_days": 4214
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "2.1.0",
"kind": "minor",
"published_at": "2026-07-24T15:18:22Z"
},
{
"tag": "2.0.6",
"kind": "patch",
"published_at": "2025-05-14T13:43:22Z"
},
{
"tag": "2.0.5",
"kind": "patch",
"published_at": "2022-02-04T06:51:53Z"
},
{
"tag": "2.0.4",
"kind": "patch",
"published_at": "2021-03-17T15:00:09Z"
},
{
"tag": "2.0.3",
"kind": "patch",
"published_at": "2021-02-20T07:49:25Z"
},
{
"tag": "2.0.2",
"kind": "patch",
"published_at": "2020-08-31T08:52:52Z"
},
{
"tag": "2.0.1",
"kind": "patch",
"published_at": "2020-03-03T05:43:35Z"
}
],
"recent_commits": [
{
"oid": "17b52083f0b6c211d51f2058ca5e7b92e83b4fef",
"body": null,
"is_bot": false,
"headline": "docs(changelog): date the v2.1.0 and v3.0.0 entries",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-25T00:47:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8eb5c3b9a0f726f56112427b1df143763ce13326",
"body": "Replace the single-file SDK with a layered PSR-4 package",
"is_bot": false,
"headline": "Merge pull request #26 from unitpay/feature/v3-layered-refactor",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-25T00:45:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f97ad6820ccb91e8d9a116cb047556135bd4db0",
"body": "README and docs/ now describe the service API: Unitpay\\Unitpay as the entry\npoint, payments()/subscriptions()/payouts()/reference() for calls, webhook()\nfor inbound verification, and Model\\Enum for the fiscal dictionaries. The API\nreference is grouped by service with full method signatures instead o\n[…]\nity shim ships, and the payment objects\nv2.1.0 announced for \"removal in 3.0\" (excise, gambling_bet, gambling_prize,\nlottery_prize, composite) are kept and deferred to 4.0 instead of lapsing\nsilently.",
"is_bot": false,
"headline": "docs: rewrite for the v3 namespaced API and add a migration guide",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-24T22:50:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "70322f8a551150a34536aa76342e4ede646cb5a3",
"body": "Every example now autoloads from vendor/ and uses the Unitpay\\ namespace:\napi('method', $params) becomes the matching service call, the webhook handler\ngoes through webhook(), and the CashItem dictionaries come from Model\\Enum\n(Nds, PaymentObject, PaymentMethod, Measure, PaymentType).\n\nAccount-level\n[…]\npast parallel-lint, which only sees syntax: every `use Unitpay\\...`\nimport resolves through the real autoloader, and PHPStan level 0 over\nexamples/ is clean, so method names and arity are checked too.",
"is_bot": false,
"headline": "refactor(examples): move to the v3 namespaced API",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-24T22:50:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c7d526d8e9e1b2ef0de854c52415948eef977c67",
"body": "Rework tests/ to mirror src/. The callable transport double becomes\nTests\\Support\\FakeTransport, a TransportInterface implementation that records\nthe URL and headers of each call and replays a queue of canned bodies. Adds\nfocused coverage for the new seams: facade service getters, their memoization,\n[…]\nam validation - now enforced by the service method\nsignatures rather than a runtime dictionary - is pinned via ArgumentCountError.\n\nexamples/ still require the removed file and are updated separately.",
"is_bot": false,
"headline": "test: port suite to Unitpay\\ namespaces and drop the single-file SDK",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-24T22:50:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d280ad52b312f3a87b9ccdd6fb2b4f29fb5167e7",
"body": "Add Unitpay\\Api (AbstractService request pipeline with telemetry fingerprint, PendingParams fluent-param holder, and typed PaymentService/SubscriptionService/PayoutService/ReferenceService whose method names mirror the backend) and the Unitpay\\Unitpay facade (composition root: lazy service getters, fluent setters, form(), webhook() accessor). The global UnitPay.php still powers the SDK and stays until the test port so the single-file removal is one green cutover.",
"is_bot": false,
"headline": "refactor: add Api service layer and thin Unitpay facade",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-24T22:50:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e32f17b68265c44a5100cbf6c87e3aa3a3d14cbf",
"body": "Add Unitpay\\Http (TransportInterface + CurlTransport with the cURL/file_get_contents fallback and TLS on), Unitpay\\Signature\\SignatureBuilder (with the PHP_INT_MAX forgery guard and locale-safe float serialization), and Unitpay\\Webhook (WebhookVerifier + IpAllowlist) covering signature + IP-allowlist verification, fail-safe refresh, and handler responses. Standalone testable units; the facade wiring and single-file removal come next.",
"is_bot": false,
"headline": "refactor: extract Http transport, Signature and Webhook layers",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-24T22:50:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b9f1926d34db9dfbbbdfe467120cc7d47d67b59",
"body": "Add PSR-4 autoload for the Unitpay\\ namespace alongside the existing classmap (strangler bridge) and wire src/ into phpstan, php-cs-fixer and the lint glob. Extract the exception hierarchy into src/Exception/ and CashItem plus the 54-FZ dictionaries (Nds, PaymentObject, PaymentMethod, Measure, PaymentType) into src/Model/ and src/Model/Enum/ as PHP 7.4-safe const-classes. The single-file UnitPay.php still powers the SDK; the new layers only coexist.",
"is_bot": false,
"headline": "refactor: introduce PSR-4 src/ skeleton, Exception and Model layers",
"author_name": "Artem Dragunov",
"author_login": "listopad",
"committed_at": "2026-07-24T22:50:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b9919dbbda6f7d1af7a124c9e1545686f4836827",
"body": "* build: project infrastructure — Composer, autoload, QA tooling and CI\n\n* feat: 54-FZ receipts, full REST API coverage, typed exceptions and cURL transport\n\n* test: baseline coverage — signature, form, API, handler, CashItem, responses\n\n* docs(examples): scenarios for the new API methods — refund, \n[…]\nthe unordered-list style to asterisk (MD004) and disable MD060 and MD013 to match the repository's existing markdown style (padded tables, long lines). Export-ignore the config from the Composer dist.",
"is_bot": false,
"headline": "Modernize SDK: full API, 54-FZ receipts, webhook IPs, and QA (#25)",
"author_name": "Artem",
"author_login": "listopad",
"committed_at": "2026-07-24T14:54:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "77c7b9393e71b520ce26518fbd8b687ae07197c0",
"body": null,
"is_bot": false,
"headline": "Added new IP",
"author_name": "Feralonso",
"author_login": "rakomissarenko",
"committed_at": "2025-05-14T13:42:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76d8ec5406c49bec7ba1e4228e82319bee9d07f5",
"body": null,
"is_bot": false,
"headline": "Обновлен README.md",
"author_name": "unitpayService",
"author_login": "unitpayService",
"committed_at": "2022-03-16T06:37:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94d3e1615fc67ee983bd53344443d373f460d6a7",
"body": null,
"is_bot": false,
"headline": "Обновлен README.md",
"author_name": "unitpayService",
"author_login": "unitpayService",
"committed_at": "2022-03-15T07:55:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d586b7af54c43d9349d2a50768692f19c211ae32",
"body": null,
"is_bot": false,
"headline": "Изменен список IP адресов unitpay",
"author_name": "Alexander Ostroverkhov",
"author_login": "2Garin",
"committed_at": "2022-02-04T06:09:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bda7e66f130ba386e1e7375bbd1fed8a2d9df049",
"body": "code quality",
"is_bot": false,
"headline": "Merge pull request #21 from unitpay/code_quality_v1",
"author_name": "Alexander Ostroverkhov",
"author_login": "2Garin",
"committed_at": "2021-09-23T11:17:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d9103af2cc75bfd87d9df44ac28cad3a3aefe41",
"body": null,
"is_bot": false,
"headline": "code quality",
"author_name": "Alex Gubarev",
"author_login": "AlexGx",
"committed_at": "2021-09-22T17:26:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54777c097caae77ac8160877f0df6c4f6c18415f",
"body": null,
"is_bot": false,
"headline": "Updated links to documentation",
"author_name": "Alexander Ostroverkhov",
"author_login": "2Garin",
"committed_at": "2021-09-21T13:28:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7835fb4aa6c4e8ca06f3c8178dc2560ac7307825",
"body": null,
"is_bot": false,
"headline": "structure & code quality",
"author_name": "Alex Gubarev",
"author_login": "AlexGx",
"committed_at": "2021-06-03T17:07:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cb459699641f938430caa5bff533687c08dfd051",
"body": null,
"is_bot": false,
"headline": "Updated getSignature method",
"author_name": "Alexander Ostroverkhov",
"author_login": "2Garin",
"committed_at": "2021-03-17T14:57:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62da9f20197610b673d1b68f9569699b1c543d58",
"body": null,
"is_bot": false,
"headline": "Filtering signature input parameters",
"author_name": "Alexander Ostroverkhov",
"author_login": "2Garin",
"committed_at": "2021-02-20T07:46:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "653d45efd2ad2c06d002e104acd4093e64e457fd",
"body": "Added nds, type, paymentMethod parameters to CashItem",
"is_bot": false,
"headline": "Merge pull request #17 from unitpay/cash_item_params",
"author_name": "Vadim-Unitpay",
"author_login": "Vadim-Unitpay",
"committed_at": "2020-08-31T08:46:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71d6a039d944a1dfc783ae221ac239e3fddf31c3",
"body": null,
"is_bot": false,
"headline": "Added nds, type, paymentMethod parameters to CashItem",
"author_name": "v.niznevskiy@unitpay.ru",
"author_login": null,
"committed_at": "2020-08-31T05:30:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e44b97273ef871b7f4ee86fc4f7a81ec145d901",
"body": null,
"is_bot": false,
"headline": "Добавлен выбор домена. Добавлен в примеры",
"author_name": "v_niznevskiy",
"author_login": null,
"committed_at": "2020-03-03T05:51:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f293e0479b98a766395d9ad0aa1b4d4b3e892c2",
"body": "Добавлен выбор домена",
"is_bot": false,
"headline": "Merge pull request #14 from unitpay/domain",
"author_name": "Vadim-Unitpay",
"author_login": "Vadim-Unitpay",
"committed_at": "2020-03-03T05:35:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aac31f1a7fb3861eecf55ba4af908afb05d12891",
"body": null,
"is_bot": false,
"headline": "Добавлен выбор домена",
"author_name": "v_niznevskiy",
"author_login": null,
"committed_at": "2020-03-03T05:18:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "896bcae890a242b41f4e6249f3e21a4e650a502e",
"body": null,
"is_bot": false,
"headline": "Update documentation URL",
"author_name": "Alexander Ostroverkhov",
"author_login": "2Garin",
"committed_at": "2019-09-10T13:10:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "301544bdac777e9dc18ef07b87236032d404822f",
"body": "fix array_merge exception - 'Argument #1 is not array'",
"is_bot": false,
"headline": "Merge pull request #10 from bis-gmbh/master",
"author_name": "m16a1",
"author_login": null,
"committed_at": "2018-06-15T09:25:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65d62d3c0f0318871164861895b6c260b116b2d9",
"body": null,
"is_bot": false,
"headline": "License",
"author_name": "Ilya Kovalenko",
"author_login": "agentsib",
"committed_at": "2018-02-08T09:12:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9ceb40fc1e00e61f24b47f9c1a37d6dce219e90",
"body": null,
"is_bot": false,
"headline": "fix composer file",
"author_name": "Ilya Kovalenko",
"author_login": "agentsib",
"committed_at": "2018-02-08T09:04:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "15d6433c183639b333ce617fd292d10a6157ae7a",
"body": null,
"is_bot": false,
"headline": "fix array_merge exception - 'Argument #1 is not array'",
"author_name": "Dmitry A. Nezhelskoy",
"author_login": "nezhelskoy",
"committed_at": "2017-08-16T08:48:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e1cd457dc3f39d10ec7a5f7c379e2e9e9606169f",
"body": "Add customerEmail, customerPhone, cashItems for the payment form",
"is_bot": false,
"headline": "Merge pull request #9 from m16a1/master",
"author_name": "Ilya Kovalenko",
"author_login": "agentsib",
"committed_at": "2017-08-01T07:46:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b37bf0c867255b76ff14d55aa02bc08913edb74",
"body": null,
"is_bot": false,
"headline": "Add customerEmail, customerPhone, cashItems for the payment form",
"author_name": "m16a1",
"author_login": "m16a1",
"committed_at": "2017-07-19T13:34:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3a22da4b5afe61de7ad06d2e9ff9de3815b1054",
"body": "…to michaeltintiuc-master",
"is_bot": false,
"headline": "Merge branch 'master' of https://github.com/michaeltintiuc/php-sdk in…",
"author_name": "Ilya Kovalenko",
"author_login": null,
"committed_at": "2017-04-10T15:16:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cecb294ba12862298d838309a67cff922e30d047",
"body": null,
"is_bot": false,
"headline": "Check signature parameter exists",
"author_name": "Ilya Kovalenko",
"author_login": null,
"committed_at": "2017-04-10T15:15:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b7798b3b7cccca0e2dde17a6af0df990a7054d0",
"body": null,
"is_bot": false,
"headline": "Fix readme file",
"author_name": "Ilya Kovalenko",
"author_login": null,
"committed_at": "2017-04-10T15:08:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d07e4608b9696148d69e8b697863416173d9b898",
"body": null,
"is_bot": false,
"headline": "- Fix url for new documentation",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2016-05-14T19:28:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d3fddb65e254ff7a182087276c1fee97f15c3cb",
"body": null,
"is_bot": false,
"headline": "- Add support new SHA-256 signature",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2016-05-14T19:25:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cacb7bf1f229879b02f1b2f6f81ccd2497be079",
"body": "- Add support SHA-256 for all methods",
"is_bot": false,
"headline": "- Remove support Md5",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2016-05-14T19:20:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1648a2ba22a8f8dd382fbd2b20456c6c43576113",
"body": null,
"is_bot": false,
"headline": "- Add support new SHA-256 signature",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2016-05-11T14:17:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7633d24dd3cf01d2bb87d8df79f2cf9f861f6ca",
"body": null,
"is_bot": false,
"headline": "Added overrideable getIp method",
"author_name": "Michael Tintiuc",
"author_login": "michaeltintiuc",
"committed_at": "2016-05-06T14:13:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89e7532e76a88bb75c4e21873ce3a5d5b218a51f",
"body": null,
"is_bot": false,
"headline": "- Add new supported IP address",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2016-03-01T12:54:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9fd757c0c3c2b5022a9f1d646f1678d9c998838",
"body": "- Add sample orderInfo.php for new API method \"getPayment\"\n- Transfer order information in a separate file",
"is_bot": false,
"headline": "- Add support for new API method \"getPayment\"",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2015-11-02T13:58:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27d4e918537401f363327605e930f8855f5a5a87",
"body": null,
"is_bot": false,
"headline": "- Secret key is now a required parameter for API",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2015-11-02T13:09:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3293e8eadf52e54345ac3748ddada452f96261ae",
"body": "- Update samples and readme",
"is_bot": false,
"headline": "- Param \"statusUrl\" is deprecated and now replaced \"receiptUrl\"",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2015-06-15T16:55:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a89283b719b8e83c65bce6ee808f3eb407e4c3e5",
"body": null,
"is_bot": false,
"headline": "Remove \"refund\" support",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2015-05-18T16:53:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef91de7ce065584ccd268e6d2da6d147cda126b5",
"body": null,
"is_bot": false,
"headline": "remove refund",
"author_name": "lobster",
"author_login": "lobster-tm",
"committed_at": "2015-05-18T16:51:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13d9a1c30da04a33fd3f7e4d2862553a4206233e",
"body": null,
"is_bot": false,
"headline": "Update handler.php sample in Readme",
"author_name": "Aleksey Dranyaev",
"author_login": "lobster-tm",
"committed_at": "2015-03-23T10:49:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cf7fb4c922298aa198c4304e88b3e7582db37b2",
"body": null,
"is_bot": false,
"headline": "Add \"error\" and \"refund\" method to sample handler.php",
"author_name": "Aleksey Dranyaev",
"author_login": "lobster-tm",
"committed_at": "2015-03-23T10:46:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fff93ec65b4f02c10fe37523107a77b591e32487",
"body": null,
"is_bot": false,
"headline": "Add support for partner methods: \"error\" and \"refund\"",
"author_name": "Aleksey Dranyaev",
"author_login": "lobster-tm",
"committed_at": "2015-03-23T10:34:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca314b54d90c98627fbc11d06f45725bf7b81104",
"body": null,
"is_bot": false,
"headline": "Fix API url",
"author_name": "Aleksey Dranyaev",
"author_login": "lobster-tm",
"committed_at": "2015-02-02T15:14:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aebbbc90fddffc80a2bb555e99ab35f8d9955025",
"body": null,
"is_bot": false,
"headline": "Rename billingCode to paymentType",
"author_name": "Aleksey Dranyaev",
"author_login": "lobster-tm",
"committed_at": "2015-01-12T13:44:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f35b47676cbd4f71e280188af555050c210366a8",
"body": null,
"is_bot": false,
"headline": "Rename billingCode to paymentType",
"author_name": "Aleksey Dranyaev",
"author_login": "lobster-tm",
"committed_at": "2015-01-12T13:41:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a73369d98cad0c034c24fb017b088cf2f02e48b7",
"body": null,
"is_bot": false,
"headline": "Readme examples update",
"author_name": "adranyaev",
"author_login": "unitpayService",
"committed_at": "2015-01-09T16:08:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66310bf652700be569e9cd1b9721df36e3ab9123",
"body": null,
"is_bot": false,
"headline": "Integrate composer",
"author_name": "adranyaev",
"author_login": "unitpayService",
"committed_at": "2015-01-09T15:25:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b4d818b97ffe8c9b67cf0fdfb789d7da9bae678",
"body": null,
"is_bot": false,
"headline": "initial commit",
"author_name": "Aleksey Dranyaev",
"author_login": "lobster-tm",
"committed_at": "2015-01-09T15:11:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee515409ced72bf6aa8d34a0bfe43dad9a6fee5b",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "adranyaev",
"author_login": "unitpayService",
"committed_at": "2015-01-09T14:26:31Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 7,
"commits_last_year": 1,
"latest_release_at": "2026-07-24T15:18:22Z",
"latest_release_tag": "2.1.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 1,
"days_since_latest_release": 0,
"mean_days_between_releases": 389.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 87,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "unitpay/php-sdk",
"exists": true,
"license": "MIT",
"keywords": [
"payment processing",
"Payment service",
"unitpay"
],
"ecosystem": "packagist",
"matches_repo": true,
"registry_url": "https://packagist.org/packages/unitpay/php-sdk",
"is_deprecated": false,
"latest_version": "2.1.0",
"repository_url": "https://github.com/unitpay/unitpay-php",
"versions_count": 8,
"total_downloads": 92056,
"dependents_count": 0,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2633,
"first_published_at": null,
"latest_published_at": "2026-07-24T14:54:42Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 29,
"stars": 40,
"watchers": 5,
"fork_history": {
"days": [
{
"date": "2015-05-18",
"count": 1
},
{
"date": "2016-05-06",
"count": 1
},
{
"date": "2016-06-10",
"count": 1
},
{
"date": "2017-06-06",
"count": 1
},
{
"date": "2017-08-16",
"count": 1
},
{
"date": "2017-10-10",
"count": 1
},
{
"date": "2018-04-21",
"count": 1
},
{
"date": "2018-08-01",
"count": 1
},
{
"date": "2018-09-14",
"count": 1
},
{
"date": "2018-10-29",
"count": 1
},
{
"date": "2019-02-17",
"count": 1
},
{
"date": "2019-03-15",
"count": 1
},
{
"date": "2019-05-30",
"count": 1
},
{
"date": "2020-04-09",
"count": 1
},
{
"date": "2020-04-20",
"count": 1
},
{
"date": "2020-07-25",
"count": 1
},
{
"date": "2020-08-19",
"count": 1
},
{
"date": "2020-09-09",
"count": 1
},
{
"date": "2020-12-06",
"count": 1
},
{
"date": "2021-01-27",
"count": 1
},
{
"date": "2021-02-08",
"count": 1
},
{
"date": "2021-02-17",
"count": 1
},
{
"date": "2021-04-27",
"count": 1
},
{
"date": "2021-05-12",
"count": 1
},
{
"date": "2023-04-26",
"count": 1
},
{
"date": "2025-04-09",
"count": 1
}
],
"complete": true,
"collected": 26,
"total_forks": 29
},
"star_history": null,
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"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": 9137,
"source_files_sampled": 56,
"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": 7,
"direct_affected_count": 0
},
"ecosystems": [
"packagist"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "ext-json",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "friendsofphp/php-cs-fixer",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "php",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "php-parallel-lint/php-parallel-lint",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpmd/phpmd",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpstan/phpstan",
"direct": false,
"version": null,
"ecosystem": "packagist"
},
{
"name": "phpunit/phpunit",
"direct": false,
"version": null,
"ecosystem": "packagist"
}
],
"collected": true,
"truncated": false,
"total_count": 7,
"direct_count": 0,
"indirect_count": 7
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 8,
"open_issues": 2,
"closed_ratio": 0.833,
"closed_issues": 10,
"closed_unmerged_prs": 6
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "lobster-tm",
"commits": 17,
"avatar_url": "https://avatars.githubusercontent.com/u/111749?v=4"
},
{
"type": "User",
"login": "listopad",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/10154034?v=4"
},
{
"type": "User",
"login": "2Garin",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/801729?v=4"
},
{
"type": "User",
"login": "unitpayService",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/10451515?v=4"
},
{
"type": "User",
"login": "agentsib",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/1577055?v=4"
},
{
"type": "User",
"login": "AlexGx",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/1571119?v=4"
},
{
"type": "User",
"login": "Vadim-Unitpay",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/58877466?v=4"
},
{
"type": "User",
"login": "nezhelskoy",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/2945846?v=4"
},
{
"type": "User",
"login": "rakomissarenko",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/87639285?v=4"
},
{
"type": "User",
"login": "michaeltintiuc",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1321256?v=4"
}
],
"contributors_sampled": 11,
"top_contributor_share": 0.354
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": true,
"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": 2,
"reason": "2 out of 7 merged PRs checked by a CI test -- score normalized to 2",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 1,
"reason": "Found 3/20 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 7,
"reason": "9 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7",
"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": 10,
"reason": "security policy file 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": "17b52083f0b6c211d51f2058ca5e7b92e83b4fef",
"ran_at": "2026-07-25T00:49:05Z",
"aggregate_score": 4.2,
"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-25T00:48:27Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-25T00:45:38Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 5,
"created_at": "2017-03-17T08:17:20Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 23,
"created_at": "2025-01-21T17:03:14Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/unitpay/unitpay-php",
"host": "github.com",
"name": "unitpay-php",
"owner": "unitpay"
},
"metrics": {
"overall": {
"key": "overall",
"band": "critical",
"name": "Overall health",
"note": "High-Risk Jurisdiction Policy applies a 50% multiplier to weighted overall health and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "jurisdiction_overall_adjustment",
"params": {
"cap": 49,
"pct": 50
}
}
],
"value": 29,
"inputs": {
"security": 22,
"vitality": 58,
"community": 60,
"governance": 67,
"engineering": 75,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 50,
"weighted_overall_before_jurisdiction": 58,
"overall_after_jurisdiction_multiplier": 29
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 58,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"commits_last_year": 1,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 1
},
"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": "1/52 weeks with commits",
"points": 0.7,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 1
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "1 commits in the last year",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 1
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "9 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7",
"points": 7,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 76,
"inputs": {
"releases_count": 7,
"latest_release_tag": "2.1.0",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": 389.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "7 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 7
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~389.1 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 389.1
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 60,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 41,
"inputs": {
"forks": 29,
"stars": 40,
"watchers": 5,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "40 stars",
"points": 25.8,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 40
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "29 forks",
"points": 12.1,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 29
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "5 watchers",
"points": 3.3,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 5
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": true
},
"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": 13.5,
"status": "met",
"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": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "at_risk",
"name": "Ecosystem adoption (downloads)",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"packages": [
"unitpay/php-sdk"
],
"dependents": 0,
"ecosystems": "packagist",
"total_downloads": 92056,
"monthly_downloads": 2633
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "2,633 downloads/month across packagist",
"points": 45.6,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 2633,
"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": 67,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 11,
"top_contributor_share": 0.354
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 35% of commits",
"points": 14.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 35
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "11 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 11
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"merged_prs": 8,
"open_issues": 2,
"closed_issues": 10,
"issue_closed_ratio": 0.833,
"closed_unmerged_prs": 6
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "83% of issues closed",
"points": 38.9,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 83
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "8/14 decided PRs merged",
"points": 21.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 8,
"decided": 14
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 3/20 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"followers": 2,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "unitpay",
"public_repos": 42,
"account_age_days": 4214
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "2 followers of unitpay",
"points": 3.4,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 2,
"login": "unitpay"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "42 public repos, account ~11 yr old",
"points": 23.9,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 42
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"unitpay/php-sdk"
],
"ecosystems": "packagist",
"any_deprecated": false,
"min_days_since_publish": 0
},
"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 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "8 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 8
}
}
],
"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": 75,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": 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": "2 out of 7 merged PRs checked by a CI test -- score normalized to 2",
"points": 4,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"topics": [
"unitpay",
"unitpay-sdk",
"payments"
],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"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": 25,
"status": "met",
"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": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"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": "critical",
"name": "Security",
"value": 22,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized. High-Risk Jurisdiction Policy applies a 50% multiplier to Security posture and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "jurisdiction_posture_adjustment",
"params": {
"cap": 49,
"pct": 50
}
}
],
"value": 22,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 4.2,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 50,
"security_posture_after_multiplier": 22,
"security_posture_before_jurisdiction": 43
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "2 out of 7 merged PRs checked by a CI test -- score normalized to 2",
"points": 0.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 3/20 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "9 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7",
"points": 5.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 5,
"status": "met",
"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": "moderate",
"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": 50,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": true,
"exposures": [
{
"role": "top_contributor",
"count": 2,
"country": "Russia"
}
],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 7
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "Russia: top_contributor (2)",
"points": 50,
"status": "partial",
"details": [
{
"code": "jurisdiction_exposure",
"params": {
"role": "top_contributor",
"count": 2,
"country": "Russia"
}
}
],
"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": 16,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.291,
"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": "16 of 55 human commits state their intent (structured subject or explanatory body)",
"points": 15.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 16,
"sampled": 55
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 37,
"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 55",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 55
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "PHP",
"largest_source_bytes": 9137,
"source_files_sampled": 56,
"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/56 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 56,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"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:49:20.465420Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/u/unitpay/unitpay-php.svg",
"full_name": "unitpay/unitpay-php",
"license_state": "standard",
"license_spdx": "MIT"
}