Open smx-smx opened 5 years ago
I got further by removing MigrationCreatorFakeMigration
from composer.json and running composer install
.
I then had to change launchSettings.json
to point to the correct build folder, and i had to create the directory tree bootstrap/cache
under said directory
Now i'm hitting System.NotImplementedException
on this line
$tempPath = tempnam(dirname($path), basename($path));
in Laravel\src\Illuminate\Filesystem\Filesystem.php
Which comes from this location in PeachPie... https://github.com/peachpiecompiler/peachpie/blob/855b9a688db32a478c98b1c9bc6d1eb6e14bbe1b/src/Peachpie.Library/FileSystem.Path.cs#L237
Hello! Bit late response but the original code in this repository (the master branch) is more of a proof-of-concept then an actual use-by-other-people project. I'm currently working on a more accessible version in feature/laravel-sdk (not yet working though, I'm mostly working on getting unit tests running with PHPUnit so that I can see what's not working).
This new version also includes a way (as soon as I get it fully running) to create controller's (and extend laravel in general) in C#.
Hi, thanks for the reply 🙂 I was interested in Laravel on PeachPie (with the intention of making a Web UI for a WinForms Desktop app), but i know it's not ready for general usage yet.
I was interested to give it a go, see if i could reproduce your setup/environment and maybe give a hand in the process.
I remember i wasn't sure about the 0.9.9-dev
version reported in your .csproj files, and i tried to replace them with the latest released one.
I wanted to try using a locally built PeachPie version but i wasn't entirely sure how i could properly use that instead of the one on nuget.org
The current version in the feature/laravel-sdk branch should be runnable, although I haven't tested the .sln file in a while (dotnet run
from cli seems to work).
Steps to run for now:
composer install
in the Laravel foldercomposer install
in the website folderdotnet run
in the app folderCurrent issues are:
And I haven't even touched anything database related yet.
I have been making bug reports to PeachPie with small reproducible test cases of bugs I find in Laravel.
My current top priority has been getting PHPUnit to run correctly so I can index what does and doesn't work.
Hi. I was trying the project out. I'm using the
feature/laravel-sdk
branch, and i changed all instances of0.9.9-dev
to use version0.9.41
(as available from NuGet).Upon launching the
app
project and visiting the local webserver, this happens