Martin Bastien

Results 5 comments of Martin Bastien

In your `config/purifier.php` file, you can allow more schemes with the `URI.AllowedSchemes` parameter in the default settings: ```php 'settings' => [ 'default' => [ ... 'URI.AllowedSchemes' => [ 'http' =>...

The value in the field `idToken` is a base64 encoded string which contains a json object with the roles. You can add a new table column for it and add...

Since it's specifically used with Laravel I've found it better to just add this to line 21 : ``` if ( ! app()->runningInConsole() && ! $this->isStarted()) ```

Got the same thing happen when upgrading laravel. Vendor/Laravel/ServiceProvider.php ```php public function boot() { parent::boot(); if (!$this->getConfig('enabled')) { return false; } $this->loadRoutes(); $this->registerErrorHandler(); // $this->bootTracker(); $this->loadTranslations(); } ``` You can...