Initial PHP project structure

This commit is contained in:
2022-11-01 18:09:46 -04:00
parent 836d3ecc65
commit 7c793dac88
11 changed files with 1555 additions and 0 deletions

4
bin/run-php.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
# start a local instance of the app using PHP's built-in webserver
php -S localhost:8080 -t public/ public/index.php