Skip to content

Commit

Permalink
app build done for v4.0.1 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthaksavvy committed Oct 1, 2020
1 parent 03be767 commit 554ea75
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions packr → application
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ define('LARAVEL_START', microtime(true));
|
*/

$autoloader = require file_exists(__DIR__.'/vendor/autoload.php') ? __DIR__.'/vendor/autoload.php' : __DIR__.'/../../autoload.php';
$autoloader = require file_exists(__DIR__ . '/vendor/autoload.php') ? __DIR__ . '/vendor/autoload.php' : __DIR__ . '/../../autoload.php';

$app = require_once __DIR__.'/bootstrap/app.php';
$app = require_once __DIR__ . '/bootstrap/app.php';

/*
|--------------------------------------------------------------------------
Expand All @@ -33,8 +33,8 @@ $app = require_once __DIR__.'/bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);

$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
$input = new Symfony\Component\Console\Input\ArgvInput(),
new Symfony\Component\Console\Output\ConsoleOutput()
);

/*
Expand Down
Binary file modified builds/packr
Binary file not shown.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
]
},
"bin": [
"builds/packr"
"application"
]
}
4 changes: 2 additions & 2 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
|
*/

'version' => 'v3.1.1',
'version' => app('git.version'),

/*
|--------------------------------------------------------------------------
Expand All @@ -38,7 +38,7 @@
|
*/

'production' => false,
'env' => 'development',

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 554ea75

Please sign in to comment.