This is a little base project to start new project with Symfony 4.
Not to use in production ! Just useful for start a new development !
This project requires docker and docker-compose
$ git clone https://github.com/ke20/symfony4-dev-project my-project
$ cd my-project
$ docker-compose run --rm php composer install
$ docker-compose up -d
And go to http://localhost
Run composer command :
$ docker-compose exec php composer [options][command]
Run symfony command :
$ docker-compose exec php bin/console [options][command]
Run tests command:
$ docker-compose exec php bin/phpunit [options][command]