Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexmasterov/msgpack.php
A pure and efficient MessagePack serialization library [experimental]
https://github.com/alexmasterov/msgpack.php
messagepack msgpack php serialization
Last synced: about 5 hours ago
JSON representation
A pure and efficient MessagePack serialization library [experimental]
- Host: GitHub
- URL: https://github.com/alexmasterov/msgpack.php
- Owner: AlexMasterov
- License: mit
- Created: 2018-03-05T12:11:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-03-25T20:12:48.000Z (over 6 years ago)
- Last Synced: 2024-04-16T23:44:56.512Z (7 months ago)
- Topics: messagepack, msgpack, php, serialization
- Language: PHP
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## MsgPack
[![Latest Stable Version](https://poser.pugx.org/alexmasterov/msgpack/v/stable)](https://packagist.org/packages/alexmasterov/msgpack)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/AlexMasterov/msgpack.php/master/LICENSE)
[![Build Status](https://travis-ci.org/AlexMasterov/msgpack.php.svg)](https://travis-ci.org/AlexMasterov/msgpack.php)
[![Code Coverage](https://scrutinizer-ci.com/g/AlexMasterov/msgpack.php/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/AlexMasterov/msgpack.php/?branch=master)A pure and efficient [MessagePack](https://msgpack.org) serialization library.
It is influenced by the design of [rybakit/msgpack](https://github.com/rybakit/msgpack.php), but reworked internal with focus on performance.
## Installation
The suggested installation method is via [composer](https://getcomposer.org/):
```sh
$ composer require alexmasterov/msgpack
```_WIP_..