We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59735ed commit c803dc9Copy full SHA for c803dc9
AbstractUriElement.php
@@ -142,7 +142,7 @@ protected function canonicalizePath($path)
142
return $path;
143
}
144
145
- if ('.' === substr($path, -1)) {
+ if (str_ends_with($path, '.')) {
146
$path .= '/';
147
148
composer.json
@@ -18,7 +18,8 @@
18
"require": {
19
"php": ">=7.1.3",
20
"symfony/polyfill-ctype": "~1.8",
21
- "symfony/polyfill-mbstring": "~1.0"
+ "symfony/polyfill-mbstring": "~1.0",
22
+ "symfony/polyfill-php80": "^1.16"
23
},
24
"require-dev": {
25
"symfony/css-selector": "^3.4|^4.0|^5.0",
0 commit comments