dcyilmaz/file-monitor

You know if your project has been hacked by checking your files.

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/dcyilmaz/file-monitor

v1.0.8 2024-07-09 01:24 UTC

This package is auto-updated.

Last update: 2025-10-09 04:43:18 UTC


README

Total Downloads

File Monitor is a Laravel package that allows you to monitor file changes within your application. It helps in keeping track of modifications, creations of files.

Installation

You can install the package via Composer:

Install package

composer require dcyilmaz/file-monitor

Register provider in bootstrap/providers.php

Dcyilmaz\FileMonitor\FileMonitorServiceProvider::class,

Install file_records table

php artisan migrate

Scan all files

php artisan file-monitor:check --init

You should see this kind of writing.

image

You can then scan and check your files at any time with this command

php artisan file-monitor:check

This is how you can see your scan results

image image