You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem seems to be here:
symfony / src / Symfony / Component / Validator / Constraints / UrlValidator.php
Line 28: ([\pL\pN\pS-]+.)+[\pL]+ # a domain name
The fix can be as simple as replacing \pS (mathematical symbol) with \pP (punctuation character) or even better i think \pPc (Connector Punctuation character)