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 463f85a commit 1ce5e20Copy full SHA for 1ce5e20
.github/build-packages.php
@@ -16,5 +16,6 @@
16
17
$json = preg_replace('/\n "repositories": \[\n.*?\n \],/s', '', $json);
18
$json = rtrim(json_encode(['repositories' => $package->repositories], $flags), "\n}").','.substr($json, 1);
19
-file_put_contents('composer.json', $json);
+$json = preg_replace('/"symfony\/ux-twig-component": "(\^[\d]+\.[\d]+)"/s', '"symfony/ux-twig-component": "@dev"', $json);
20
+file_put_contents($dir.'/composer.json', $json);
21
0 commit comments