File manager - Edit - /home/linknsbh/sabel-eltaqwa.com/assets/lfm/files/shares/events/thumbs/carbonphp.zip
Back
PK j>�\��- carbon-doctrine-types/README.mdnu �[��� # carbonphp/carbon-doctrine-types Types to use Carbon in Doctrine ## Documentation [Check how to use in the official Carbon documentation](https://carbon.nesbot.com/symfony/) This package is an externalization of [src/Carbon/Doctrine](https://github.com/briannesbitt/Carbon/tree/2.71.0/src/Carbon/Doctrine) from `nestbot/carbon` package. Externalization allows to better deal with different versions of dbal. With version 4.0 of dbal, it no longer sustainable to be compatible with all version using a single code. PK j>�\�t.�' ' carbon-doctrine-types/LICENSEnu �[��� MIT License Copyright (c) 2023 Carbon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK j>�\�qy # carbon-doctrine-types/composer.jsonnu �[��� { "name": "carbonphp/carbon-doctrine-types", "description": "Types to use Carbon in Doctrine", "type": "library", "keywords": [ "date", "time", "DateTime", "Carbon", "Doctrine" ], "require": { "php": "^7.4 || ^8.0" }, "require-dev": { "doctrine/dbal": "^3.7.0", "nesbot/carbon": "^2.71.0 || ^3.0.0", "phpunit/phpunit": "^10.3" }, "conflict": { "doctrine/dbal": "<3.7.0 || >=4.0.0" }, "license": "MIT", "autoload": { "psr-4": { "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" } }, "authors": [ { "name": "KyleKatarn", "email": "kylekatarnls@gmail.com" } ], "minimum-stability": "dev" } PK j>�\���� � A carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.phpnu �[��� <?php namespace Carbon\Doctrine; use Carbon\Carbon; use Carbon\CarbonInterface; use DateTimeInterface; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Platforms\DB2Platform; use Doctrine\DBAL\Platforms\OraclePlatform; use Doctrine\DBAL\Platforms\SqlitePlatform; use Doctrine\DBAL\Platforms\SQLServerPlatform; use Doctrine\DBAL\Types\ConversionException; use Exception; /** * @template T of CarbonInterface */ trait CarbonTypeConverter { /** * This property differentiates types installed by carbonphp/carbon-doctrine-types * from the ones embedded previously in nesbot/carbon source directly. * * @readonly */ public bool $external = true; /** * @return class-string<T> */ protected function getCarbonClassName(): string { return Carbon::class; } public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform): string { $precision = min( $fieldDeclaration['precision'] ?? DateTimeDefaultPrecision::get(), $this->getMaximumPrecision($platform), ); $type = parent::getSQLDeclaration($fieldDeclaration, $platform); if (!$precision) { return $type; } if (str_contains($type, '(')) { return preg_replace('/\(\d+\)/', "($precision)", $type); } [$before, $after] = explode(' ', "$type "); return trim("$before($precision) $after"); } /** * @SuppressWarnings(PHPMD.UnusedFormalParameter) * * @return T|null */ public function convertToPHPValue($value, AbstractPlatform $platform) { $class = $this->getCarbonClassName(); if ($value === null || is_a($value, $class)) { return $value; } if ($value instanceof DateTimeInterface) { return $class::instance($value); } $date = null; $error = null; try { $date = $class::parse($value); } catch (Exception $exception) { $error = $exception; } if (!$date) { throw ConversionException::conversionFailedFormat( $value, $this->getTypeName(), 'Y-m-d H:i:s.u or any format supported by '.$class.'::parse()', $error ); } return $date; } /** * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function convertToDatabaseValue($value, AbstractPlatform $platform): ?string { if ($value === null) { return $value; } if ($value instanceof DateTimeInterface) { return $value->format('Y-m-d H:i:s.u'); } throw ConversionException::conversionFailedInvalidType( $value, $this->getTypeName(), ['null', 'DateTime', 'Carbon'] ); } private function getTypeName(): string { $chunks = explode('\\', static::class); $type = preg_replace('/Type$/', '', end($chunks)); return strtolower(preg_replace('/([a-z])([A-Z])/', '$1_$2', $type)); } private function getMaximumPrecision(AbstractPlatform $platform): int { if ($platform instanceof DB2Platform) { return 12; } if ($platform instanceof OraclePlatform) { return 9; } if ($platform instanceof SQLServerPlatform || $platform instanceof SqlitePlatform) { return 3; } return 6; } } PK j>�\�#� F carbon-doctrine-types/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpnu �[��� <?php namespace Carbon\Doctrine; class DateTimeDefaultPrecision { private static $precision = 6; /** * Change the default Doctrine datetime and datetime_immutable precision. * * @param int $precision */ public static function set(int $precision): void { self::$precision = $precision; } /** * Get the default Doctrine datetime and datetime_immutable precision. * * @return int */ public static function get(): int { return self::$precision; } } PK j>�\�E.�k k 8 carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.phpnu �[��� <?php namespace Carbon\Doctrine; class CarbonType extends DateTimeType implements CarbonDoctrineType { } PK j>�\�rG� � C carbon-doctrine-types/src/Carbon/Doctrine/DateTimeImmutableType.phpnu �[��� <?php namespace Carbon\Doctrine; use Carbon\CarbonImmutable; use Doctrine\DBAL\Types\VarDateTimeImmutableType; class DateTimeImmutableType extends VarDateTimeImmutableType implements CarbonDoctrineType { /** @use CarbonTypeConverter<CarbonImmutable> */ use CarbonTypeConverter; /** * @return class-string<CarbonImmutable> */ protected function getCarbonClassName(): string { return CarbonImmutable::class; } } PK j>�\S`jl l @ carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.phpnu �[��� <?php namespace Carbon\Doctrine; use Doctrine\DBAL\Platforms\AbstractPlatform; interface CarbonDoctrineType { public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform); public function convertToPHPValue($value, AbstractPlatform $platform); public function convertToDatabaseValue($value, AbstractPlatform $platform); } PK j>�\�ߕ�} } A carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.phpnu �[��� <?php namespace Carbon\Doctrine; class CarbonImmutableType extends DateTimeImmutableType implements CarbonDoctrineType { } PK j>�\a!F� � : carbon-doctrine-types/src/Carbon/Doctrine/DateTimeType.phpnu �[��� <?php namespace Carbon\Doctrine; use Carbon\Carbon; use Doctrine\DBAL\Types\VarDateTimeType; class DateTimeType extends VarDateTimeType implements CarbonDoctrineType { /** @use CarbonTypeConverter<Carbon> */ use CarbonTypeConverter; } PK j>�\��- carbon-doctrine-types/README.mdnu �[��� PK j>�\�t.�' ' W carbon-doctrine-types/LICENSEnu �[��� PK j>�\�qy # � carbon-doctrine-types/composer.jsonnu �[��� PK j>�\���� � A < carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.phpnu �[��� PK j>�\�#� F � carbon-doctrine-types/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpnu �[��� PK j>�\�E.�k k 8 + carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.phpnu �[��� PK j>�\�rG� � C � carbon-doctrine-types/src/Carbon/Doctrine/DateTimeImmutableType.phpnu �[��� PK j>�\S`jl l @ 9 carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.phpnu �[��� PK j>�\�ߕ�} } A carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.phpnu �[��� PK j>�\a!F� � : ! carbon-doctrine-types/src/Carbon/Doctrine/DateTimeType.phpnu �[��� PK � c"