The "Symfony Demo Application" is a reference application created to show how to develop applications following the Symfony Best Practices.
- PHP 8.0.2 or higher;
- MySQL PHP extension enabled;
- docker & docker-compose
- and the usual Symfony application requirements.
$ composer install
There's no need to configure anything to run the application. If you have installed Symfony binary, run this command:
$ cd my_project/
$ docker-compose -d
$ symfony server:start -d
Then access the application in your browser at the given URL (https://localhost:8000 by default).
Execute this command to run tests:
$ cd my_project/
$ ./bin/phpunit