From 7f316cad8f9628b9e14cbf7863db014510c02f81 Mon Sep 17 00:00:00 2001 From: Jun Sekine Date: Tue, 7 Jan 2025 22:53:13 +0900 Subject: [PATCH 1/2] Add link to php serialization --- formats/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/formats/README.md b/formats/README.md index 62d59c41bc..be0e13e01e 100644 --- a/formats/README.md +++ b/formats/README.md @@ -37,4 +37,5 @@ For convenience, they have same `groupId`, versioning and release cycle as core | DynamoDB | [DynaMap](https://github.com/codanbaru/dynamap)
`com.codanbaru.kotlin:dynamap` | JVM | Allows serialization and deserialization of objects to and from [AttributeValue](https://sdk.amazonaws.com/kotlin/api/latest/dynamodb/aws.sdk.kotlin.services.dynamodb.model/-attribute-value/index.html) of Amazon [DynamoDB](https://aws.amazon.com/dynamodb/) | | Bencoding | [iseki0/kotlinx-serialization-bencoding](https://github.com/iseki0/kotlinx-serialization-bencoding)
`space.iseki.bencoding:kotlinx-serialization-bencoding`| JVM, JavaScript | Allows serialization and deserialization of objects to and from [Bencoding](https://www.bittorrent.org/beps/bep_0003.html#bencoding) of BitTorrent. | | Smile | [vooft/kotlinx-serialization-smile](https://github.com/vooft/kotlinx-serialization-smile)
`io.github.vooft:kotlinx-serialization-smile-core` | all supported platforms | Allows serialization and deserialization of objects to and from [Smile](https://en.wikipedia.org/wiki/Smile_(data_interchange_format)). | +| PHP | [jsoizo/kotlinx-serialization-php](https://github.com/jsoizo/kotlinx-serialization-php)
`com.jsoizo:kotlinx-serialization-php` | JVM, Android, Native | Allows serialization and deserialization of objects to and from [PHP Serialization](https://www.php.net/manual/en/function.serialize.php). | From 921398d5828ca9d80525ff2f8fc86ff29b14c202 Mon Sep 17 00:00:00 2001 From: Jun Sekine Date: Wed, 8 Jan 2025 00:44:13 +0900 Subject: [PATCH 2/2] fix serialization-php supporting platform --- formats/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formats/README.md b/formats/README.md index be0e13e01e..f1f047bf74 100644 --- a/formats/README.md +++ b/formats/README.md @@ -37,5 +37,5 @@ For convenience, they have same `groupId`, versioning and release cycle as core | DynamoDB | [DynaMap](https://github.com/codanbaru/dynamap)
`com.codanbaru.kotlin:dynamap` | JVM | Allows serialization and deserialization of objects to and from [AttributeValue](https://sdk.amazonaws.com/kotlin/api/latest/dynamodb/aws.sdk.kotlin.services.dynamodb.model/-attribute-value/index.html) of Amazon [DynamoDB](https://aws.amazon.com/dynamodb/) | | Bencoding | [iseki0/kotlinx-serialization-bencoding](https://github.com/iseki0/kotlinx-serialization-bencoding)
`space.iseki.bencoding:kotlinx-serialization-bencoding`| JVM, JavaScript | Allows serialization and deserialization of objects to and from [Bencoding](https://www.bittorrent.org/beps/bep_0003.html#bencoding) of BitTorrent. | | Smile | [vooft/kotlinx-serialization-smile](https://github.com/vooft/kotlinx-serialization-smile)
`io.github.vooft:kotlinx-serialization-smile-core` | all supported platforms | Allows serialization and deserialization of objects to and from [Smile](https://en.wikipedia.org/wiki/Smile_(data_interchange_format)). | -| PHP | [jsoizo/kotlinx-serialization-php](https://github.com/jsoizo/kotlinx-serialization-php)
`com.jsoizo:kotlinx-serialization-php` | JVM, Android, Native | Allows serialization and deserialization of objects to and from [PHP Serialization](https://www.php.net/manual/en/function.serialize.php). | +| PHP | [jsoizo/kotlinx-serialization-php](https://github.com/jsoizo/kotlinx-serialization-php)
`com.jsoizo:kotlinx-serialization-php` | all supported platforms | Allows serialization and deserialization of objects to and from [PHP Serialization](https://www.php.net/manual/en/function.serialize.php). |