├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── composer.json ├── psalm.xml └── src ├── CompressingSerializer.php ├── JsonSerializer.php ├── NativeSerializer.php ├── PassthroughSerializer.php ├── SerializationException.php ├── Serializer.php └── functions.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/composer.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/CompressingSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/src/CompressingSerializer.php -------------------------------------------------------------------------------- /src/JsonSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/src/JsonSerializer.php -------------------------------------------------------------------------------- /src/NativeSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/src/NativeSerializer.php -------------------------------------------------------------------------------- /src/PassthroughSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/src/PassthroughSerializer.php -------------------------------------------------------------------------------- /src/SerializationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/src/SerializationException.php -------------------------------------------------------------------------------- /src/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/src/Serializer.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphp/serialization/HEAD/src/functions.php --------------------------------------------------------------------------------