This application demos what damienharper/doctrine-audit-bundle can do.
Before running the demo, you first need to install dev dependencies:
composer install
Then run the following commands to:
- create the local database (SQLite)
- populate it with demo data
- clear the cache
- start the local symfony web server
bin/console doctrine:database:drop --force
bin/console doctrine:database:create
bin/console doctrine:schema:update --force
bin/console doctrine:fixtures:load --append
bin/console cache:clear
bin/console server:run