forked from rob006-software/flarum-translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
32 lines (28 loc) · 850 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/*
* This file is part of the flarum-translations.
*
* Copyright (c) 2019 Robert Korulczyk <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
declare(strict_types=1);
require __DIR__ . '/utils/helpers.php';
return [
'dir' => __DIR__,
'sourcesDir' => __DIR__ . '/sources',
'translationsDir' => __DIR__ . '/translations',
'components' => require __DIR__ . '/config/components.php',
'languages' => require __DIR__ . '/config/languages.php',
'subsplits' => require __DIR__ . '/config/subsplits.php',
'ignoredExtensions' => require __DIR__ . '/config/ignored-extensions.php',
'unsupportedVersions' => [
'0.1.0-beta.16',
],
'supportedVersions' => [
'1.7.0',
'1.8.0',
'1.99.99', // automatically support minor and patch releases
],
];