- Add Metered and ConvexSol (CoTURN) provider drivers with response validation and caching - Add IceCandidateManager with automatic failover and structured logging - Add IceCandidateProviderInterface and DTOs conforming to RTCIceServer format
10 lines
176 B
PHP
10 lines
176 B
PHP
<?php
|
|
|
|
use App\Providers\AppServiceProvider;
|
|
use App\Providers\IceCandidateServiceProvider;
|
|
|
|
return [
|
|
AppServiceProvider::class,
|
|
IceCandidateServiceProvider::class,
|
|
];
|