pkly / i18next-php
A port of the i18next JS library for PHP
Installs: 15 724
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 2
Forks: 10
Open Issues: 0
Type:project
Requires
- php: ^7.3|^8.0
- ext-json: *
- ext-mbstring: *
- psr/log: ^1.1
Requires (Dev)
- monolog/monolog: ^2.2
- phpunit/phpunit: ^9.3.3
Suggests
- monolog/monolog: An excellent logging solution, integrates seamlessly
README
A port of i18next in PHP.
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 repository is in read-only mode and no new releases will be made
As my knowledge of php grew so did my distaste for this project. While not terrible by any means it's just a port and as such there's no beauty in it. It saddens me to have written something so dull and as such I urge you to seek a replacement in Symfony's delicious translator package as it's simply a better alternative for a PHP solution. If you wish to use it or fork it you have my blessing.
I have no plans to take down the packagist package so feel free to install it if you so desire.
Features
- 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 7.3+
- Automatic language detection support
Usage
- Basic shared usage through the whole application
- Basic instancing of translation and separation from shared
- Basic plural handling
- Basic language detection
Basic example
// 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"
Composer
Simply enter your project directory and run
composer require pkly/i18next-php
Todo
- Add event emitting
Packagist
Visit the page here
Donate
If you want feel free to buy me a coffee by clicking here