CalendR icon indicating copy to clipboard operation
CalendR copied to clipboard

The missing PHP 5.3+ calendar management library.

Results 16 CalendR issues
Sort by recently updated
recently updated
newest added

Is this app still working with php 7 and Laravel 5.8? Because non of the site's bolierplate code is working. I cannot biuld the calendar, it only renders the day...

This PR. add support for Symfony 5.x. It also fixed a error on twig 2 with silex

```php $factory = new \CalendR\Calendar; $month = $factory->getMonth(2020, 6); $events = $factory->getEvents($month); ``` CalendR\Event\Exception\NoProviderFound: in file /home/wwwroot/akstest.gewu.pro/tooth/vendor/yohang/calendr/src/CalendR/Event/Manager.php on line 68

Hi all! I'm working with this library for a while (It works like a charm BTW), and I really missing what I think is a good new feature. The default...

Use DateTime object comparison to avoid Timezone issue

Calendar class uses `PeriodInterface` as return type for `getYear`, `getMonth`, `getWeek`. Such method should return, respectively, `Year`, `Month`, `Week`, that are implementing `\Iterator`. With the current code, a call to...

Hi! I need to show the first and last day of the week with the format `{{ first_monday_number }}-{{ last_saturday_number }} {{ month_name }}`. Example with the week number 24:...

Would be handy I will be able to set the day for Month Period for iterate from actual day or the second option to solve this, class Range must implements...

Hello Yohang Is it at all possible that this package could support [Carbon](https://github.com/briannesbitt/Carbon) along side the Native \DateTime class, because The laravel elougent ORM is using this package out of...