create-prisma-php-app 1.22.2 → 1.22.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootstrap.php +1 -0
- package/dist/docker-compose.yml +0 -1
- package/package.json +1 -1
package/dist/bootstrap.php
CHANGED
|
@@ -515,6 +515,7 @@ function getLoadingsFiles()
|
|
|
515
515
|
$haveLoadingFileContent = array_reduce($loadingFiles, function ($carry, $route) use ($uri, $pathname, $dynamicRouteParams, $params, $referer) {
|
|
516
516
|
$normalizeUri = str_replace('\\', '/', $route);
|
|
517
517
|
$fileUrl = str_replace('./src/app', '', $normalizeUri);
|
|
518
|
+
$route = str_replace(['\\', './'], ['/', ''], $route);
|
|
518
519
|
|
|
519
520
|
ob_start();
|
|
520
521
|
include($route); // This will execute the PHP code in loading.php
|
package/dist/docker-compose.yml
CHANGED