| Package Data | |
|---|---|
| Maintainer Username: | CaporalDead |
| Maintainer Contact: | thomas.sieffert@devitek.fr (Thomas SIEFFERT) |
| Package Create Date: | 2014-05-01 |
| Package Last Update: | 2017-09-28 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-06 15:14:29 |
| Package Statistics | |
|---|---|
| Total Downloads: | 44,842 |
| Monthly Downloads: | 48 |
| Daily Downloads: | 0 |
| Total Stars: | 33 |
| Total Watchers: | 3 |
| Total Forks: | 17 |
| Total Open Issues: | 0 |
This package uses Symfony/Yaml parser.
Add "devitek/yaml-translation": "4.*" to your composer.json by running :
composer require devitek/yaml-translation
And select version: 4.*
Finally, publish all vendor assets to create a yaml-translation.php:
php artisan vendor:publish
You have to replace
'Illuminate\Translation\TranslationServiceProvider',
with
'Devitek\Core\Translation\TranslationServiceProvider',
in app/config/app.php.
Just use regular php files or use yml or yaml files instead.
PHP :
<?php
return [
'hello' => 'Hello :name',
'author' => 'Devitek',
];
Will be equivalent to :
YAML
hello: Hello :name
author: Devitek
Enjoy it ! Feel free to fork :) !