asorasoft / chhankitek
Convert from AD (Anno Domini) to Lunar (Chhankitek) format.
Requires
- php: ^8.2
- nesbot/carbon: ^2.0|^3.0
Requires (Dev)
- illuminate/support: ^10.0|^11.0|^12.0|^13.0
- laravel/pint: ^1.0
- orchestra/testbench: ^8.0|^9.0|^10.0|^11.0
- pestphp/pest: ^3.0
- phpunit/phpunit: ^10.0|^11.0|^12.0
Suggests
- illuminate/support: Enables the Laravel facade, service provider, and persistent cache (LaravelCache).
README
Chhankitek for Laravel
A PHP package to convert dates to Lunar (Chhankitek) format β works with or without Laravel. Learn more about Khmer calendar.
π°π Stand with Cambodia β’ ααααα»ααΆ
ποΈ Cambodia Needs Peace ποΈ
We stand in solidarity with our brave soldiers defending Cambodia's sovereignty and territorial integrity. Our hearts are with those protecting our homeland during these challenging times. We call upon the international community to support peaceful resolution and respect for Cambodia's borders.
π ααααα»ααΆααααΌαααΆαααααα·ααΆα β’ Together we stand for peace and sovereignty
Documentation
For detailed documentation, please visit https://chhankitek.netlify.app
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->chhankitek(Carbon\CarbonImmutable::now()->setTimezone('Asia/Phnom_Penh')); $toLunarDate->toString(); // ααααα αααα α€ ααα ααααααΆααΆα ααααΆαααααΌα ααααΈααα αα»αααααααΆα α’α₯α¦α₯
Timezone note:
->setTimezone('Asia/Phnom_Penh')ensures the correct Cambodian date is used when your server runs in a different timezone (e.g. UTC). Near midnight UTC, the calendar date differs from Cambodia's. You can omit it ifapp.timezoneinconfig/app.phpis already set toAsia/Phnom_Penh.
Available Methods
// In your Laravel controller, use this trait use HasChhankitek; $toLunarDate = $this->chhankitek(Carbon\CarbonImmutable::now()->setTimezone('Asia/Phnom_Penh')); // see timezone note above // 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')); // ααααα αααα α€ ααα ααααααΆααΆα ααααΆαααααΌα ααααΈααα αα»αααααααΆα α’α₯α¦α₯
Pure PHP Usage (without Laravel)
The package works in any PHP project β Laravel is not required. The only runtime dependency is nesbot/carbon.
composer require asorasoft/chhankitek
Instantiate Chhankitek directly and read the lunar date from the formatKhmerDate property:
require 'vendor/autoload.php'; use Asorasoft\Chhankitek\Chhankitek; use Carbon\CarbonImmutable; $target = CarbonImmutable::now()->setTimezone('Asia/Phnom_Penh'); $toLunarDate = (new Chhankitek($target))->formatKhmerDate; $toLunarDate->toString(); // ααααα αααα α€ ααα ααααααΆααΆα ααααΆαααααΌα ααααΈααα αα»αααααααΆα α’α₯α¦α₯ $toLunarDate->getLunarMonth(); // α αααα... $toLunarDate->getLunarYear(); // α’α₯α¦α₯...
The toLunarDate() helper is also available outside Laravel:
toLunarDate(CarbonImmutable::now()->setTimezone('Asia/Phnom_Penh'));
Khmer Numerals
Convert Arabic numerals to their Khmer representation with the HasKhmerNumberConversion trait:
use Asorasoft\Chhankitek\Traits\HasKhmerNumberConversion; class SomeController { use HasKhmerNumberConversion; public function index() { $this->convertToKhmerNumber(2569); // α’α₯α¦α© $this->convertToKhmerNumber('2025-05-11'); // α’α α’α₯-α α₯-α‘α‘ } }
Caching
The package caches converted dates for one year (365 days) to minimize computational overhead for frequently accessed dates. The cache is swappable via the CacheRepository interface, so it works the same whether or not you use Laravel.
Default behavior
- Inside Laravel β automatically uses Laravel's cache system (
LaravelCache), so it respects whatever cache driver your application is configured with. No setup required. - Pure PHP β falls back to an in-memory cache (
ArrayCache) that de-duplicates lookups within a single request or script run.
Providing your own cache
Pass any implementation of Asorasoft\Chhankitek\Cache\CacheRepository as the second constructor argument:
use Asorasoft\Chhankitek\Cache\ArrayCache; use Asorasoft\Chhankitek\Cache\CacheRepository; use Asorasoft\Chhankitek\Chhankitek; use Carbon\CarbonImmutable; // Use the bundled in-memory cache explicitly $toLunarDate = (new Chhankitek($target, new ArrayCache))->formatKhmerDate; // Or wire up your own (e.g. a PSR-16 adapter) final class Psr16Cache implements CacheRepository { public function __construct(private \Psr\SimpleCache\CacheInterface $cache) {} public function remember(string $key, int $ttl, callable $callback): mixed { if ($this->cache->has($key)) { return $this->cache->get($key); } $value = $callback(); $this->cache->set($key, $value, $ttl); return $value; } } $toLunarDate = (new Chhankitek($target, new Psr16Cache($yourCache)))->formatKhmerDate;
Testing
composer test
The test suite is split into two groups β run them individually if needed:
vendor/bin/pest --testsuite=PurePhp # framework-free tests (no Laravel) vendor/bin/pest --testsuite=Laravel # Laravel integration tests
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 Tumfrom Khmer Calendar - Ported from momentkh by
ThyrithSorintoJava - Khmer New Year Time Calculation
- Ported from MetheaX/khmer-chhankitek-calendar by
MetheaXinto aLaravel Package