Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
musa11971 committed Jan 11, 2019
1 parent 10ba7f4 commit e08bac5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Helpers/JSONResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ public function show($doDie = true) {

$printArr = [
'success' => $this->success,
'query_count' => (int) Config::get(AppServiceProvider::$queryCountConfigKey)
'query_count' => (int) Config::get(AppServiceProvider::$queryCountConfigKey),
'version' => config('app.version')
];

if(!$this->success && strlen($this->errorMessage)) {
Expand Down
11 changes: 11 additions & 0 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@

'name' => env('APP_NAME', 'Kurozora App'),

/*
|--------------------------------------------------------------------------
| Application Version
|--------------------------------------------------------------------------
|
| Current version of the application
|
*/

'version' => '1.0.0',

/*
|--------------------------------------------------------------------------
| iOS app bundle ID
Expand Down

0 comments on commit e08bac5

Please sign in to comment.