A .NET library for working with the PHP serialization format
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-24 17:45:55 +02:00
assets feat: Add package icon 2022-11-10 14:50:58 +01:00
docs Chore: Added docs for the new attribute. 2024-11-16 21:58:07 +01:00
PhpSerializerNET Updated repo information in csproj. 2026-04-25 14:22:41 +02:00
PhpSerializerNET.Benchmark Add basic benchmark suite. 2026-06-24 17:45:55 +02:00
PhpSerializerNET.Test .NET 10. 2026-02-17 20:05:12 +01:00
.editorconfig Added PhpSerializationFilter. Implements #33. 2024-08-15 11:08:59 +02:00
.gitignore Add basic benchmark suite. 2026-06-24 17:45:55 +02:00
azure-pipelines.yml Version 2.0.: Target .NET 9 2024-11-13 19:40:08 +01:00
CHANGELOG.md Increment version. 2026-03-29 15:17:53 +02:00
CONTRIBUTING.md Create CONTRIBUTING.md 2021-12-23 15:46:30 +01:00
Contributors.md Updated Contributers.md 2026-06-24 16:51:50 +02:00
LICENSE First commit. 2021-09-05 18:41:41 +02:00
PhpSerializerNET.slnx Housekeeping: removed omnisharp config, use slnx. 2026-06-24 16:52:20 +02:00
README.md 1.0.0 🥳 2021-12-31 10:07:00 +01:00

Nuget GitHub Azure DevOps builds Build Status


PhpSerializerNET

This is a .NET library for working with the PHP serialization format.

Usage is rather simple:

Serializing

using PhpSerializerNET;

string serializedData = PhpSerialization.Serialize(myObject);

and Deserializing

using PhpSerializerNET;

object myObject = PhpSerialization.Deserialize(serializedData);

Detailed documentation can be found here.

Changelog

Detailed list of changes for each version since initial release here..

Why?

I'm working with some legacy project that uses the format and the only other implementation of a serializer/deserializer I found had no license attached and I needed something GPL compatible. So wrote this one from scratch.

License

This project is licenced under the MPL 2.0.