curly_sanders/carbon-normalizer

This package is abandoned and no longer maintained. The author suggests using the rtuin/carbon-normalizer package instead.

Normalizes to (and from) Carbon and native DateTime objects

v0.2.0 2023-03-09 13:13 UTC

This package is not auto-updated.

Last update: 2023-05-16 07:47:51 UTC


README

This is a Normalizer for the Symfony Serializer package that supports normalizing to and from Carbon, CarbonImmutable, Illuminate\Support\Carbon, DateTime and DateTimeImmutable.

Usage example

$normalizer = new \Rtuin\Normalizer\CarbonDateTimeNormalizer();

$normalized = $normalizer->normalize(\Carbon\CarbonImmutable::now());
// $normalized is now a string '2019-05-28T07:25:00+02:00'


$result = $normalizer->denormalize('2019-05-28T07:25:00+02:00', CarbonImmutable::class);
// $result is now a CarbonImmutable instance

License

The MIT License (MIT). Please see License File for more information.