A php extension that wraps the webkitgtk library and allows you to start a new web browser instance from your php scripts. For now it doesn't offer much but a window where you can load your webui using the php built-in webserver or anything else.
A lot of stuff needs to be done and implemented but for now it gives you a web browser where you can load your PHP/HTML/CSS/JS Apps!
$view = new WebKitGtk\WebView("The initial Window Title");
$view->loadURI("http://localhost:8080");
$view->show();
For now the extension only works on Linux since I don't know the whole process needed to compile gtk and webkitgtk library on anything else...
git clone https://github.com/jgmdev/php-webkitgtk
cd php-webkitgtk
phpize
./configure
make
sudo make install
I used krakjoe ui repository as the boiler plate to start developing this extension, thanks to him!