├── .github └── issue_template.md ├── .styleci.yml ├── LICENSE ├── README.md ├── codesize.xml ├── composer.json ├── src └── Traits │ └── HistoryTracker.php └── tests └── features └── HistoryTrackerTest.php /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/README.md -------------------------------------------------------------------------------- /codesize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/codesize.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/composer.json -------------------------------------------------------------------------------- /src/Traits/HistoryTracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/src/Traits/HistoryTracker.php -------------------------------------------------------------------------------- /tests/features/HistoryTrackerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-enso/history-tracker/HEAD/tests/features/HistoryTrackerTest.php --------------------------------------------------------------------------------