Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amphp/serialization

Serialization tools for IPC and data storage in PHP.
https://github.com/amphp/serialization

amphp php serialization

Last synced: 1 day ago
JSON representation

Serialization tools for IPC and data storage in PHP.

Awesome Lists containing this project

README

        

# amphp/serialization

AMPHP is a collection of event-driven libraries for PHP designed with fibers and concurrency in mind.
`amphp/serialization` is a library providing serialization tools for IPC and data storage in PHP.

[![Latest Release](https://img.shields.io/github/release/amphp/serialization.svg?style=flat-square)](https://github.com/amphp/serialization/releases)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/amphp/serialization/blob/master/LICENSE)

## Installation

This package can be installed as a [Composer](https://getcomposer.org/) dependency.

```bash
composer require amphp/serialization
```

## Serializer

The main interface of this library is `Amp\Serialization\Serializer`.

```php