build version 400

This commit is contained in:
Mohit Panjwani
2020-12-02 17:54:08 +05:30
parent 326508e567
commit 89ee58590c
963 changed files with 62887 additions and 48868 deletions

View File

@ -3,12 +3,39 @@
return [
/*
|--------------------------------------------------------------------------
| Crater Configuration
|--------------------------------------------------------------------------
|
* Current version of the application.
*/
'version' => '4.0.0',
'version' => '3.2.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"=>"it", "name" => "Italian"],
["code"=>"pt-br", "name" => "Portuguese (Brazilian)"],
["code"=>"es", "name" => "Spanish"],
],
/*
* 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'],
]
];