An open API service indexing awesome lists of open source software.

https://github.com/damienharper/doctrine-audit-bundle-demo

damienharper/doctrine-audit-bundle demo application
https://github.com/damienharper/doctrine-audit-bundle-demo

audit-entries audit-log audit-trail doctrine-audit doctrine-audit-bundle

Last synced: 6 months ago
JSON representation

damienharper/doctrine-audit-bundle demo application

Awesome Lists containing this project

README

          

# DoctrineAuditBundle demo application

This application demos what [damienharper/doctrine-audit-bundle](https://github.com/DamienHarper/DoctrineAuditBundle) can do.

Usage
=====

Before running the demo, you first need to install dev dependencies:

```bash
composer install
```

Then run the following commands to:
1. create the local database (SQLite)
2. populate it with demo data
3. clear the cache
4. start the local symfony web server

```bash
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
```

Screenshots
===========

### Audit inventory

![Audit inventory](https://github.com/DamienHarper/doctrine-audit-bundle-demo/blob/master/screenshots/inventory.png)

### Entity history

![Entity history](https://github.com/DamienHarper/doctrine-audit-bundle-demo/blob/master/screenshots/entity_history.png)

### Entry details

![Entry details](https://github.com/DamienHarper/doctrine-audit-bundle-demo/blob/master/screenshots/entry_details.png)