1. Go to this page and download the library: Download zhortein/auditable-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Zhortein\AuditableBundle\Attribute\Auditable;
use Zhortein\AuditableBundle\Attribute\AuditField;
use Zhortein\AuditableBundle\Attribute\AuditIgnore;
#[Auditable(label: 'Customer')]
final class Customer
{
#[AuditField(label: 'Email address')]
private string $email;
#[AuditIgnore]
private string $passwordHash;
}