{"id":26275618,"url":"https://github.com/piedweb/rison","last_synced_at":"2025-10-13T15:38:36.483Z","repository":{"id":281843352,"uuid":"946635527","full_name":"PiedWeb/rison","owner":"PiedWeb","description":"[PHP] Rison : a data serialization format optimized for compactness in URIs","archived":false,"fork":false,"pushed_at":"2025-09-20T17:13:19.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-22T02:55:04.984Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/PiedWeb.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-11T12:53:23.000Z","updated_at":"2025-09-20T17:11:27.000Z","dependencies_parsed_at":"2025-03-11T13:08:56.671Z","dependency_job_id":"3f2d567d-49d7-4b6c-bed8-f5c6312a8150","html_url":"https://github.com/PiedWeb/rison","commit_stats":null,"previous_names":["piedweb/rison"],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/PiedWeb/rison","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PiedWeb%2Frison","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PiedWeb%2Frison/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PiedWeb%2Frison/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PiedWeb%2Frison/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PiedWeb","download_url":"https://codeload.github.com/PiedWeb/rison/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PiedWeb%2Frison/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015934,"owners_count":26085777,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-03-14T10:17:02.937Z","updated_at":"2025-10-13T15:38:36.459Z","avatar_url":"https://github.com/PiedWeb.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://dev.piedweb.com\"\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/PiedWeb/piedweb-devoluix-theme/master/src/img/logo_title.png\" width=\"200\" height=\"200\" alt=\"Open Source Package\" /\u003e\n\u003c/a\u003e\u003c/p\u003e\n\n# PHP Rison encoder - decoder\n\n[![Latest Version](https://img.shields.io/github/tag/PiedWeb/Rison.svg?style=flat\u0026label=release)](https://github.com/PiedWeb/Rison/tags)\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE)\n[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/PiedWeb/Rison/Tests?label=tests)](https://github.com/PiedWeb/Rison/actions)\n[![Quality Score](https://img.shields.io/scrutinizer/g/PiedWeb/Rison.svg?style=flat)](https://scrutinizer-ci.com/g/PiedWeb/Rison)\n[![Code Coverage](https://codecov.io/gh/PiedWeb/Rison/branch/main/graph/badge.svg)](https://codecov.io/gh/PiedWeb/Rison/branch/main)\n[![Type Coverage](https://shepherd.dev/github/PiedWeb/Rison/coverage.svg)](https://shepherd.dev/github/PiedWeb/Rison)\n[![Total Downloads](https://img.shields.io/packagist/dt/piedweb/rison.svg?style=flat)](https://packagist.org/packages/piedweb/rison)\n\nRison is a compact data format optimized for URIs, a slight variation of JSON. This is a port from JS rison, forked from [Marmelatze](https://github.com/Marmelatze/Kunststube-Rison)\n\n## Install\n\nVia [Packagist](https://img.shields.io/packagist/dt/piedweb/rison.svg?style=flat)\n\n```bash\n$ composer require piedweb/rison\n```\n\n## Usage\n\n```php\n\nuse \\PiedWeb\\Rison\\...; \n\n```\n\n## About rison \n\nJSON:\n```json\n{\"a\":0,\"b\":\"foo\",\"c\":\"23skidoo\"}\n```\n\nURI-encoded JSON:\n\n```\n%7B%22a%22:0,%22b%22%3A%22foo%22%2C%22c%22%3A%2223skidoo%22%7D\n```\n\nRison:\n\n```\n(a:0,b:foo,c:'23skidoo')\n```\nURI-encoded Rison:\n```\n(a:0,b:foo,c:'23skidoo')\n```\n\nLearn more about Rison : \n\n- [Mirror of original rison specs and js/python port](https://github.com/Nanonid/rison?tab=readme-ov-file)\n- [ESModule Rison port](https://github.com/othree/rison-esm)\n- [Rison playground](https://rison.dev)\n \n## Contributing\n\nPlease see [contributing](https://dev.piedweb.com/contributing)\n\n## Credits\n\n- Original version by [Marmelatze](https://github.com/Marmelatze/Kunststube-Rison)\n- Forked and updated to modern PHP by [Robin Delattre (Pied Web)](https://piedweb.com)\n- [All Contributors](https://github.com/PiedWeb/:package_skake/graphs/contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiedweb%2Frison","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpiedweb%2Frison","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiedweb%2Frison/lists"}