{"id":15023251,"url":"https://github.com/basemax/jpophp","last_synced_at":"2025-08-05T08:16:46.353Z","repository":{"id":62492094,"uuid":"138731261","full_name":"BaseMax/JPOPHP","owner":"BaseMax","description":"JSON Parser Object PHP is a library for parsing the data in JSON format.","archived":false,"fork":false,"pushed_at":"2019-06-11T10:18:57.000Z","size":152,"stargazers_count":26,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-30T08:29:37.980Z","etag":null,"topics":["json","json-parser","json-parsing","json-parsing-library","json-serialization","lexer","parser","parsers","php","php-5","php-7","php-json-library","php-json-parser","php-library","token","token-authentication","token-authetication","token-authorization","tokenizer","tokens"],"latest_commit_sha":null,"homepage":"https://www.phpclasses.org/package/11110-PHP-Encode-and-decode-data-in-JSON-format.html","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BaseMax.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}},"created_at":"2018-06-26T11:55:44.000Z","updated_at":"2024-04-25T09:57:04.000Z","dependencies_parsed_at":"2022-11-02T11:16:58.749Z","dependency_job_id":null,"html_url":"https://github.com/BaseMax/JPOPHP","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/BaseMax/JPOPHP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FJPOPHP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FJPOPHP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FJPOPHP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FJPOPHP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BaseMax","download_url":"https://codeload.github.com/BaseMax/JPOPHP/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BaseMax%2FJPOPHP/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268859288,"owners_count":24318917,"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-08-05T02:00:12.334Z","response_time":2576,"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":["json","json-parser","json-parsing","json-parsing-library","json-serialization","lexer","parser","parsers","php","php-5","php-7","php-json-library","php-json-parser","php-library","token","token-authentication","token-authetication","token-authorization","tokenizer","tokens"],"created_at":"2024-09-24T19:58:52.551Z","updated_at":"2025-08-05T08:16:46.015Z","avatar_url":"https://github.com/BaseMax.png","language":"PHP","readme":"# JPOPHP (Json Parser Object PHP)\n\n## Json Parser Object PHP\n\n**Tiny Library for parse JSON.**\n\nJPOPHP (PHPJsonParser) can encode and decode data in JSON format.\n\nWe provides a pure PHP solution to take a value and generates a string that represents that value in JSON format.\n\nThe package can also take a JSON encoded string and decodes it to retrieve the original data value.\n\n![JsonParser.php File Size](https://img.shields.io/badge/Library%20Size-26.0%20KB-blue.svg)\n![JsonParser.min.php File Size](https://img.shields.io/badge/Compressed%20Size-10.3%20KB-blue.svg)\n![JsonParser.php Validation Code](https://img.shields.io/badge/Validation%20Code-No%20Error-green.svg)\n\n## JPOPHP Features\n\n- Small and light library\n- Hand-coded scanner\n- Analyze and found Errors\n- Unicode Support\n- No dependencies (only suitable version of the `PHP`)\n- Written and run on `PHP 7.2.6`, `PHP 7.3.4`\n\n## Type of supported values\n  \n- [x] Integer\n- [x] Float\n- [x] Boolean (`true` , `false`)\n- [x] Null\n- [x] String\n- [x] Char (Now this is same as a string)\n- [x] Sub Array\n- [x] Sub Object\n\n## JPOPHP TODO\n\n- Improve speed and performance (Speed does not reach `C Language`!)\n  \n## Usage\n\nAll public functions are accessible through the `$json` variable.\n\n- `array $json-\u003edecode(string);`\n- `string $json-\u003eencode(array);`\n\n## Samples\n\nTo view the full details, run the [Example.php](https://github.com/BaseMax/JsonParser/blob/master/Example.php) file.\n\n## JSON Grammar\n\nYou can check the **[JSONGrammar.txt](https://github.com/BaseMax/JsonParser/blob/master/JSONGrammar.txt)** file to view the JSON standard grammar.\n\n\n## JPO-PHP Performance\n\nCompetition between `json_encode(...)` and `$json-\u003eencode(...)`\n\n\nThe basic PHP functions are written in C itself.\n\nDo not expect to reach it quickly.\n\nHowever, there is always way for improvement.\n\n\n## JPO PHP History\n\n- **Version 1.0 (first)** :\n2018-06-26 - 2018-06-26\n\n- **Version 2.1** :\n2018-06-27 - 2019-03-13\n\n- **Version 2.2** :\n2019-03-25 - 2019-04-03\n\n- **Version 2.2.1** :\n2019-04-04\n\n\n# License\n\nJsonParser (PHP JSON Parser) is licensed under the [GNU General Public License](https://github.com/BaseMax/JsonParser/blob/master/LICENSE).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbasemax%2Fjpophp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbasemax%2Fjpophp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbasemax%2Fjpophp/lists"}