43 lines
983 B
PHP
43 lines
983 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Laravel\Cashier\Cashier;
|
|
use Laravel\Dusk\DuskServiceProvider;
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
JsonResource::withoutWrapping();
|
|
Cashier::calculateTaxes();
|
|
|
|
if ($this->app->runningUnitTests()) {
|
|
Schema::defaultStringLength(191);
|
|
}
|
|
|
|
Validator::includeUnvalidatedArrayKeys();
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
if ($this->app->environment('local', 'testing') && class_exists(DuskServiceProvider::class)) {
|
|
$this->app->register(DuskServiceProvider::class);
|
|
}
|
|
}
|
|
}
|