This is a simple test project which main purpose is to understand PHP Framework Symfony
- PHP >=7.1.3
- MySQL >=5.5
$ git clone https://github.com/bezgodov/symfony-test-project.git
$ cd symfony-test-project
$ composer installCustomize DB connection Make a copy of .env and change DATABASE_URL variable
$ cp .env .env.local
$ open .env.localThen install migrations
$ php bin/console doctrine:database:create
$ php bin/console make:migration
$ php bin/console doctrine:migrations:migrate