remyb98/object-tracker

Track changes on objects

Maintainers

Package info

github.com/Remyb98/object-tracker

pkg:composer/remyb98/object-tracker

Statistics

Installs: 28

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v1.1.0 2026-02-24 09:34 UTC

This package is auto-updated.

Last update: 2026-03-24 09:56:35 UTC


README

Object tracker is a PHP trait that allows you to track changes in a class.
It captures the initial state of an object and detects modifications on properties annotated with the #[Track] attribute.

Features

  • Track changes in object properties
  • Supports PHP 8+ attributes
  • Use aliases or a display property for objects
  • commit() function to update the snapshot

Installation

Install via Composer:

composer require remyb98/object-tracker

Usage

Declare a class

Use the Trackable trait in your class:

<?php

use App\Trait\Trackable;
use App\Attribute\Track;

class User
{
    use Trackable;

    #[Track]
    private string $name;

    #[Track(alias: "user_email")]
    private string $email;

    public function __construct(string $name, string $email)
    {
        $this->name = $name;
        $this->email = $email;
    }
}

Take a snapshot

<?php

$user = new User("Alice", "alice@example.com");
$user->snapshot();

### Detect changes

<?php

$user->name = "Bob";

$changes = $user->getChanges();
/*
$changes = [
    'name' => [
        'before' => 'Alice',
        'after' => 'Bob',
    ]
];
*/

Commit changes

<?php

$user->commit(); // Updates the snapshot with the current state

Advanced Usage

You can track object properties and display a specific attribute instead of the full object.

<?php

use App\Trait\Trackable;
use App\Attribute\Track;

class Address
{
    public string $street;
    public string $city;

    public function __construct(string $street, string $city)
    {
        $this->street = $street;
        $this->city = $city;
    }
}

class User
{
    use Trackable;

    #[Track(display: "city")]
    private Address $address;

    public function __construct(Address $address)
    {
        $this->address = $address;
    }
}

$address = new Address("123 Main St", "Paris");
$user = new User($address);
$user->snapshot();

$address->city = "Lyon";

$changes = $user->getChanges();
/*
$changes = [
    'address' => [
        'before' => 'Paris',
        'after' => 'Lyon'
    ]
];
*/

Notes:

  • The display option in #[Track] tells Trackable which property of the object to show instead of the object itself.
  • If the object has a __toString() method, it will be used automatically.
  • Otherwise, the class name will be displayed in square brackets (e.g., [Address]).