🍲dfcv🏰dd⋉(● ∸ ●)⋊@% PNG %k25u25%fgd5n! PNG %k25u25%fgd5n!carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.php000064400000000153152427540020017300 0ustar00 */ use CarbonTypeConverter; } carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.php000064400000000175152427540020021144 0ustar00 */ 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; } } carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.php000064400000000554152427540020020775 0ustar00 */ use CarbonTypeConverter; /** * @return class-string */ protected function getCarbonClassName(): string { return CarbonImmutable::class; } } carbon-doctrine-types/README.md000064400000001010152427540020012227 0ustar00# 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. carbon-doctrine-types/composer.json000064400000001436152427540020013506 0ustar00{ "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" } carbon-doctrine-types/LICENSE000064400000002047152427540020011770 0ustar00MIT 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.