forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
483 B
PHTML
19 lines
483 B
PHTML
2 years ago
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use Translator\Framework\LaravelConfigLoader;
|
||
|
use Translator\Infra\LaravelJsonTranslationRepository;
|
||
|
|
||
|
return [
|
||
|
'languages' => ['fa'],
|
||
|
'directories' => [
|
||
|
app_path(),
|
||
|
resource_path('views'),
|
||
|
],
|
||
|
'output' => resource_path('lang'),
|
||
|
'extensions' => ['php'],
|
||
|
'container' => [
|
||
|
'config_loader' => LaravelConfigLoader::class,
|
||
|
'translation_repository' => LaravelJsonTranslationRepository::class,
|
||
|
],
|
||
|
];
|