Uncaught PHP Exception ParseError: "syntax error, unexpected identifier "INCLUDED_GROUP", expecting "="" at /[...]/modules/contrib/condition_path/src/Plugin/Condition/RequestPathInclexcl.php line 23
The problem looks be the use of the typed constant 'string' in src/Plugin/Condition/RequestPathInclexcl.php:
protected const string INCLUDED_GROUP = 'included';
and
protected const string EXCLUDED_GROUP = 'excluded';
Typed constants are a PHP 8.3+ feature (my site is on 8.2). The compatibility declaration for condition_path says PHP 8.1, so I recommend not using them.
Active
3.0
Code