Any modification must be done in the main repository.
composer require codelytv/criteria-from-symfony-request
The criteria converter expect an url with the following format.
final readonly class CoursesGetController
{
public function __construct(private CriteriaFromSymfonyRequestConverter $converter) {}
public function __invoke(Request $request): JsonResponse
{
$criteria = $this->converter->toCriteria($request);
}