Skip to content

Commit

Permalink
Compile assets
Browse files Browse the repository at this point in the history
  • Loading branch information
Hasnayeen committed Dec 19, 2018
1 parent de35d88 commit f3e0273
Show file tree
Hide file tree
Showing 39 changed files with 478,923 additions and 368 deletions.
6 changes: 5 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,8 @@ SSL_CERT_DIR=
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=

COMPANY_NAME=
COMPANY_NAME=

SCOUT_DRIVER=tntsearch

TELESCOPE_ENABLED=false
3 changes: 2 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Laravel\Telescope\TelescopeServiceProvider;
use Illuminate\Database\Eloquent\Relations\Relation;

class AppServiceProvider extends ServiceProvider
Expand Down Expand Up @@ -36,7 +37,7 @@ public function boot()
public function register()
{
if ($this->app->environment() === 'local') {
$this->app->register(\App\Providers\TelescopeServiceProvider::class);
$this->app->register(TelescopeServiceProvider::class);
}
}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"codedungeon/phpunit-result-printer": "^0.23.3",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"laravel/telescope": "^0.1.0",
"laravel/telescope": "^1.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
Expand Down
Loading

0 comments on commit f3e0273

Please sign in to comment.