Kyle
Kyle
> That would be for PHP 8.6, isn't it? Correct, moving it.
My 2 cents: Carbon supports internationalization for years now and has back-ported the methods from this project, so there are good chances Laravel 12 / Carbon 3 already has everything...
Hello, having some option to control month overflow for period (like `addMonthWithNoOverflow` can do) sounds like an interesting feature. 👍 Due to other priorities I don't plan to work on...
Hello, this is where you can submit a documentation change proposal: https://github.com/briannesbitt/Carbon/blob/gh-pages/docs/index.src.html#L5110 In Carbon 3, "Real" which was ambiguous get replaced with "UTC". This can give different result with day...
The closer equivalent for `diffInRealDays` is `diffInUTCDays`. Adding UTC here still makes a minor difference for day, week, month, quarter year, decade, century, millenium. Adding UTC no longer make any...
Hello, this is due to an annoying subtility of the `DateInterval`, you can have the whole interval inverted, and/or each unit individually being positive or negative: ```php $i1 = new...
Hello, Yup it's an issue we'll have to fix on next major version (for BC-compatibility). In the meantime you can do: ```php $testNow = Carbon::create(2025, 9, 18, 15, 34, timezone:...