You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Be aware that you need to clone the project into the directory your web server redirects HTTP requests to. Application's entry point is always public/index.php.
After cloning, run following:
composer install
Now test it with a simple HTTP request,
curl -i 127.0.0.1/test
OR if you are using a name server locally,
curl -i yourdomain.postfix/test
OR if you are using PHP built-in web server, assuming you ran it with port 1234,
curl -i localhost:1234/test
you should see the following:
HTTP/1.1 200 OK
Content-Type: application/json
{"status":"success","data":"get"}