symfony4 dojo
1.0.0
A simple Dojo built with Symfony4 and php7.2. Includes phpUnit and a small example test and a command to run.
Update: Also added phpspec :)
You only need docker and all the dependencies will run inside the container without installing anything on your machine.
https://www.docker.com/community-edition
$ docker-compose up -d --build
$ docker exec -it symfony4-dojo_php_1 composer install
$ docker exec -it symfony4-dojo_php_1 bin/phpunit
$ docker exec -it symfony4-dojo_php_1 bin/phpspec run
$ docker-compose down
If you prefer, you can run this command to be inside the container directly in the workdir and you can run anything as if you were on your machine.
$ docker exec -it symfony4-dojo_php_1 bash