A port of i18next in PHP. With a rest API. (coming soon [tm])
Code in this repository is largely based on the original code base in JavaScript, rewritten in PHP. This project focuses only on the newest version of i18next, disregarding compatibility with previous ones.
This version is usable, but could contain bugs. If you find any issues please report them or create a PR.
- PSR3 logging support (psr/log is a hard requirement, but you're not required to actually use a logger)
- Extremely similar API to the JS version
- PHP-specific features like interfaces for modules
- PHP 8.0+
- Automatic language detection support
- Basic shared usage through the whole application
- Basic instancing of translation and separation from shared
- Basic plural handling
- Basic language detection
// You can also use I18n globally via I18n::get()
$i18n = new I18n([
'lng' => 'en',
'resources' => [
'en' => [
'translation' => [
'key' => 'Value',
'key_plural' => 'Value plural'
'deeper' => [
'key' => 'Deep value'
]
]
]
]
]);
$i18n->t('key'); // "Value"
$i18n->t('key', ['count' => 5]); // "Value plural"
$i18n->t('deeper.key'); // "Depp value"
Simply enter your project directory and run
composer require exactcure/i18next-php
- Add event emitting
Visit the page here