asorasoft / chhankitek
Convert from AD (Anno Domini) to Lunar (Chhankitek) format.
Installs: 2 872
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 1
Forks: 8
Open Issues: 0
Requires
- php: ^8.2
- illuminate/support: ^10.0|^11.0|^12.0
Requires (Dev)
- orchestra/testbench: ^8.0
- phpunit/phpunit: ^10.0
README
A Laravel package to convert dates to Lunar (Chhankitek) format. Learn more about Khmer calendar.
Installation
You can install the package via composer:
composer require asorasoft/chhankitek
Usage
// In your Laravel controller, use this trait use HasChhankitek; // Convert a date to lunar format $toLunarDate = $this->chhankiteck(Carbon\CarbonImmutable::now()->setTimezone('Asia/Phnom_Penh')); $toLunarDate->toString(); // ថ្ងៃច័ន្ទ ៤ រោច ខែបឋមាសាឍ ឆ្នាំឆ្លូវ ត្រីស័ក ពុទ្ធសករាជ ២៥៦៥
Available Methods
// In your Laravel controller, use this trait use HasChhankitek; $toLunarDate = $this->chhankiteck(Carbon\CarbonImmutable::now()->setTimezone('Asia/Phnom_Penh')); // Get specific lunar date components $toLunarDate->getDayOfWeek(); // អាទិត្យ, ច័ន្ទ... $toLunarDate->getLunarDay(); // ១កើត, ២កើត... $toLunarDate->getLunarMonth(); // ចេត្រ... $toLunarDate->getLunarZodiac(); // ជូត, ឆ្លូវ... $toLunarDate->getLunarEra(); // ត្រីស័ក... $toLunarDate->getLunarYear(); // ២៥៦៥, ២៥៦៦..
Alternatively, you can use the toLunarDate
helper function:
toLunarDate(Carbon\CarbonImmutable::now()->setTimezone('Asia/Phnom_Penh')); // ថ្ងៃច័ន្ទ ៤ រោច ខែបឋមាសាឍ ឆ្នាំឆ្លូវ ត្រីស័ក ពុទ្ធសករាជ ២៥៦៥
Caching
The Chhankitek package implements caching to improve performance when converting dates to lunar format. When you convert a date using the package, the result is cached for one year (365 days) to minimize computational overhead for frequently accessed dates.
How caching works
- Each converted date is cached
- Cache duration: 365 days (60 * 60 * 24 * 365 seconds)
- The package leverages Laravel's cache system, so it will use whatever cache driver you've configured for your application
Testing
composer test
Changelog
Please see CHANGELOG for more information about recent changes.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email mabhelitc@gmail.com instead of using the issue tracker.
Support
If you like this package and want to support me, you can buy me a coffee ☕
Credits
License
The MIT License (MIT). Please see License File for more information.
Authors and Acknowledgment
This library would not exist without the hard work of these people:
- Based on the algorithm by
Mr. Phylypo Tum
from Khmer Calendar - Ported from momentkh by
ThyrithSor
intoJava
- Khmer New Year Time Calculation
- Ported from MetheaX/khmer-chhankitek-calendar by
MetheaX
into aLaravel Package