Файловый менеджер - Редактировать - /home/clickysoft/public_html/jmapi5.clickysoft.net/carbonphp.tar
Назад
carbon-doctrine-types/composer.json 0000644 00000001436 15021222413 0013475 0 ustar 00 { "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/src/Carbon/Doctrine/DateTimeType.php 0000644 00000000366 15021222413 0017565 0 ustar 00 <?php namespace Carbon\Doctrine; use Carbon\Carbon; use Doctrine\DBAL\Types\VarDateTimeType; class DateTimeType extends VarDateTimeType implements CarbonDoctrineType { /** @use CarbonTypeConverter<Carbon> */ use CarbonTypeConverter; } carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.php 0000644 00000000175 15021222413 0021133 0 ustar 00 <?php namespace Carbon\Doctrine; class CarbonImmutableType extends DateTimeImmutableType implements CarbonDoctrineType { } carbon-doctrine-types/src/Carbon/Doctrine/DateTimeDefaultPrecision.php 0000644 00000001035 15021222413 0022076 0 ustar 00 <?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; } } carbon-doctrine-types/src/Carbon/Doctrine/DateTimeImmutableType.php 0000644 00000000710 15021222413 0021416 0 ustar 00 <?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; } } carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.php 0000644 00000000153 15021222413 0017267 0 ustar 00 <?php namespace Carbon\Doctrine; class CarbonType extends DateTimeType implements CarbonDoctrineType { } carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.php 0000644 00000000554 15021222413 0020764 0 ustar 00 <?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); } carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.php 0000644 00000006753 15021222413 0021173 0 ustar 00 <?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; } } carbon-doctrine-types/README.md 0000644 00000001010 15021222413 0012216 0 ustar 00 # 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/LICENSE 0000644 00000002047 15021222413 0011757 0 ustar 00 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.
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка