This is a Symfony 4 app that logs events to a database using Monolog.
Currently, the app logs events to a MySQL-type DB, though in principle the app could log to any backend data store. In future, we may explore supporting logging to Elasticsearch, MongoDB or other stores.
- Composer
- PHP >= 7.1.3
-
Create a database for the app to use.
-
Copy
.env.dist
to.env
and configure your database connection with theDATABASE_URL
parameter. -
Create the database tables from the included schema:
$ php bin/console doctrine:migrations:migrate
// TODO