{"id":25952124,"url":"https://github.com/devknown/alpha-id","last_synced_at":"2026-04-21T05:33:19.506Z","repository":{"id":176023660,"uuid":"654842408","full_name":"devknown/alpha-id","owner":"devknown","description":"Convert any integer to a short alphanumeric version.","archived":false,"fork":false,"pushed_at":"2024-05-10T09:15:57.000Z","size":40,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T23:19:39.807Z","etag":null,"topics":["alphanumeric-strings","encoding-decoding","javascript","number-to-alphanumeric","obfuscation","php7","php8","python","random-id","short-string"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devknown.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-17T05:30:33.000Z","updated_at":"2024-09-18T14:36:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"65facf76-b9bd-45ff-b888-14b6ec5d4218","html_url":"https://github.com/devknown/alpha-id","commit_stats":null,"previous_names":["devknown/alpha-id"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/devknown/alpha-id","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devknown%2Falpha-id","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devknown%2Falpha-id/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devknown%2Falpha-id/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devknown%2Falpha-id/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devknown","download_url":"https://codeload.github.com/devknown/alpha-id/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devknown%2Falpha-id/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32078920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T02:38:07.213Z","status":"ssl_error","status_checked_at":"2026-04-21T02:38:06.559Z","response_time":128,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alphanumeric-strings","encoding-decoding","javascript","number-to-alphanumeric","obfuscation","php7","php8","python","random-id","short-string"],"created_at":"2025-03-04T14:42:53.820Z","updated_at":"2026-04-21T05:33:19.486Z","avatar_url":"https://github.com/devknown.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch4 align=\"center\"\u003eAlphaID - Convert any integer to a short alphanumeric version\u003c/h4\u003e\n\n\u003cp align=\"center\"\u003e\n   \u003ca href=\"https://github.com/devknown/alpha-id/releases\"\u003e\n   \u003cimg alt=\"Release\" src=\"https://img.shields.io/github/v/release/devknown/alpha-id\"\u003e\n   \u003ca href=\"https://github.com/devknown/alpha-id/actions/workflows/php.yml\"\u003e\n   \u003cimg alt=\"PHP Composer\" src=\"https://github.com/devknown/alpha-id/actions/workflows/php.yml/badge.svg\"\u003e\n   \u003ca href=\"https://github.com/devknown/alpha-id/blob/main/LICENSE\"\u003e\n   \u003cimg alt=\"License\" src=\"https://img.shields.io/github/license/devknown/alpha-id\"\u003e\n   \u003ca href=\"https://packagist.org/packages/devknown/alpha-id\"\u003e\n   \u003cimg alt=\"PHP version\" src=\"https://img.shields.io/packagist/dependency-v/devknown/alpha-id/php\"\u003e\n\u003c/p\u003e\n\n# AlphaID\n\nAlphaID let you convert any integer to a short alphanumeric version. It can be useful for generating short, unique, and obfuscated identifiers.\n\n## AlphaID Library Versions\nThese versions should all function harmoniously, allowing for encoding in one language and decoding in another.\n- [PHP Version](https://github.com/devknown/alpha-id)\n- [JavaScript Version](https://github.com/devknown/alpha-id-js)\n- [Python Version](https://github.com/devknown/alpha-id-py)\n\n## Requirements\n\nPHP 7.3 and later.\n\n## Installation (Composer)\n\nYou can install the bindings via [Composer](http://getcomposer.org/). Run the following command:\n\n```bash\ncomposer require devknown/alpha-id\n```\n\nTo use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading):\n\n```php\nrequire_once('vendor/autoload.php');\n```\n\n## Getting Started\n\nSimple usage looks like:\n\n```php\n\n// convert number to a short string\necho \\Devknown\\AlphaID::convert(258456357951); // Output: '4y7exoH'\n\n// recover the original number from the short string\necho \\Devknown\\AlphaID::recover('4y7exoH'); // Output: 258456357951\n\n```\n\nConvert with key:\n\n```php\nuse Devknown\\AlphaID;\n\nAlphaID::config('my_key');\n\necho AlphaID::convert(258456357951);\n// the output this time will be '4ymMZq9'\n\necho AlphaID::recover('4ymMZq9');\n// the recover output this time will be 258456357951\n\n```\n\n## License\n\nAlphaID is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevknown%2Falpha-id","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevknown%2Falpha-id","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevknown%2Falpha-id/lists"}