eonx-com/easy-activity
Tracking your record changes.
Maintainers
Requires
- php: ^8.2
- doctrine/collections: ^1.7.2 || ^2.1
- doctrine/dbal: ^3.8
- doctrine/orm: ^2.20
- eonx-com/easy-doctrine: ^6.22.5
- eonx-com/easy-lock: ^6.22.5
- nesbot/carbon: ^3.8.4
- symfony/config: ^7.2
- symfony/dependency-injection: ^7.2
- symfony/event-dispatcher: ^7.2
- symfony/http-kernel: ^7.2
- symfony/messenger: ^7.2
- symfony/property-access: ^7.2
- symfony/serializer: ^7.2
- symfony/uid: ^7.2
Requires (Dev)
- doctrine/doctrine-bundle: ^2.12
- eonx-com/easy-encryption: ^6.22.5
- eonx-com/easy-test: ^6.22.5
- phpunit/phpunit: ^10.5.63|^11.5.50|^12.5.8
- symfony/framework-bundle: ^7.2
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 64e16e79d70b30b640211b7eff1d6c9850f6b1d1
This package is auto-updated.
Last update: 2026-06-16 12:03:03 UTC
README
---eonx_docs--- title: Introduction weight: 0 ---eonx_docs---
Introduction
The EasyActivity package allows you to log changes to objects in your applications, including the state of the object before and after a change, and information about who initiated the change.
The following terms are used across the package:
- Action: An action performed on an object (i.e. "create", "update" or "delete").
- Actor: A person or process that performs an action. An actor is described by a type, an identifier, and a name.
- Subject: An object (entity, model, etc.) on which an action is performed.
- Activity log entry: A database entry that contains activity log data, i.e. information about a subject, the action performed on the subject, and the actor that performed the action.
Once configured with a set of subjects, the package will create activity log entries for every action performed on those subjects. See Configuration for more information on configuring subjects.
The ActivityLogEntry class defines the data that can be recorded in an activity log entry.
See Usage for information on using the EasyActivity package.
