Files
crater/config/crater.php
Mwikala Kangwa 9e98a96d61 Implement PHP CS Fixer and a coding standard to follow (#471)
* Create PHP CS Fixer config and add to CI workflow

* Run php cs fixer on project

* Add newline at end of file

* Update to use PHP CS Fixer v3

* Run v3 config on project

* Run seperate config in CI
2021-05-21 17:27:51 +05:30

49 lines
1.7 KiB
PHP

<?php
return [
/*
* Current version of the application.
*/
'version' => '4.0.0',
/*
* List of languages supported by Crater.
*/
'languages' => [
["code" => "ar", "name" => "Arabic"],
["code" => "nl", "name" => "Dutch"],
["code" => "en", "name" => "English"],
["code" => "fr", "name" => "French"],
["code" => "de", "name" => "German"],
["code" => "ja", "name" => "Japanese"],
["code" => "it", "name" => "Italian"],
["code" => "lv", "name" => "Latvian"],
["code" => "pt_BR", "name" => "Portuguese (Brazilian)"],
["code" => "sr", "name" => "Serbian Latin"],
["code" => "ko", "name" => "Korean"],
["code" => "es", "name" => "Spanish"],
["code" => "sv", "name" => "Svenska"],
["code" => "sk", "name" => "Slovak"],
["code" => "vi", "name" => "Tiếng Việt"],
],
/*
* List of Fiscal Years
*/
'fiscal_years' => [
['key' => 'january-december' , 'value' => '1-12'],
['key' => 'february-january' , 'value' => '2-1'],
['key' => 'march-february' , 'value' => '3-2'],
['key' => 'april-march' , 'value' => '4-3'],
['key' => 'may-april' , 'value' => '5-4'],
['key' => 'june-may' , 'value' => '6-5'],
['key' => 'july-june' , 'value' => '7-6'],
['key' => 'august-july' , 'value' => '8-7'],
['key' => 'september-august' , 'value' => '9-8'],
['key' => 'october-september', 'value' => '10-9'],
['key' => 'november-october' , 'value' => '11-10'],
['key' => 'december-november', 'value' => '12-11'],
],
];