Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/amphp/serialization
- Owner: amphp
- License: mit
- Created: 2020-03-18T17:40:22.000Z (almost 5 years ago)
- Default Branch: 1.x
- Last Pushed: 2023-08-29T20:22:27.000Z (over 1 year ago)
- Last Synced: 2024-12-25T06:04:08.358Z (9 days ago)
- Topics: amphp, php, serialization
- Language: PHP
- Homepage:
- Size: 28.3 KB
- Stars: 115
- Watchers: 10
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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