| SETUP | |||
|---|---|---|---|
| Nginx | PHP8 | Docker | |
-
Build Docker containers
docker-compose up --build -d -
Install Composer dependencies
docker exec -it php composer install
app/Route/index.php
$route->registry('/greet', \App\Greet\GreetController::class, 'index');Where:
/useris the route that you want to register;\App\Greet\GreetController::classis the Controller namespace;indexis a controller function