pkly/i18next-php

This package is abandoned and no longer maintained. No replacement package was suggested.

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

1.1.1 2021-03-27 20:21 UTC

This package is auto-updated.

Last update: 2021-05-23 20:22:25 UTC


README

badge.svg

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

View all examples here

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