PHPackages                             dcyilmaz/file-monitor - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. dcyilmaz/file-monitor

ActiveLibrary

dcyilmaz/file-monitor
=====================

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

v1.0.8(1y ago)614MITPHPPHP ^7.3|^8.0

Since Jul 9Pushed 1y ago1 watchersCompare

[ Source](https://github.com/duran004/FileMonitor)[ Packagist](https://packagist.org/packages/dcyilmaz/file-monitor)[ RSS](/packages/dcyilmaz-file-monitor/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (10)Used By (0)

File Monitor
============

[](#file-monitor)

[![Total Downloads](https://camo.githubusercontent.com/4dc486dec17c08cc974f48230daf8254295e2784c369448c38e0ec31b8e1e65f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f646379696c6d617a2f66696c652d6d6f6e69746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dcyilmaz/file-monitor)

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
------------

[](#installation)

You can install the package via Composer:

### Install package

[](#install-package)

```
composer require dcyilmaz/file-monitor
```

### Register provider in bootstrap/providers.php

[](#register-provider-in-bootstrapprovidersphp)

```
Dcyilmaz\FileMonitor\FileMonitorServiceProvider::class,
```

### Install file\_records table

[](#install-file_records-table)

```
php artisan migrate
```

### Scan all files

[](#scan-all-files)

```
php artisan file-monitor:check --init
```

### You should see this kind of writing.

[](#you-should-see-this-kind-of-writing)

[![image](https://private-user-images.githubusercontent.com/132943905/346761239-225c1e45-f712-4564-ab71-f0585a71da1d.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUyMDQwNjUsIm5iZiI6MTc3NTIwMzc2NSwicGF0aCI6Ii8xMzI5NDM5MDUvMzQ2NzYxMjM5LTIyNWMxZTQ1LWY3MTItNDU2NC1hYjcxLWYwNTg1YTcxZGExZC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDAzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwM1QwODA5MjVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT01ZGIyMDU4OGVhN2FmOGM3Zjg5ZGFhZGUzN2U5ZTRlZDA2Y2U1YTZmYjgwN2Q3ZTA4MWZiMTQxNmY1YmYyOGQ0JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.2PkjItXf4aAaFwG13xgycpApe27vNyZ7MMGm4qBqE00)](https://private-user-images.githubusercontent.com/132943905/346761239-225c1e45-f712-4564-ab71-f0585a71da1d.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUyMDQwNjUsIm5iZiI6MTc3NTIwMzc2NSwicGF0aCI6Ii8xMzI5NDM5MDUvMzQ2NzYxMjM5LTIyNWMxZTQ1LWY3MTItNDU2NC1hYjcxLWYwNTg1YTcxZGExZC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDAzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwM1QwODA5MjVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT01ZGIyMDU4OGVhN2FmOGM3Zjg5ZGFhZGUzN2U5ZTRlZDA2Y2U1YTZmYjgwN2Q3ZTA4MWZiMTQxNmY1YmYyOGQ0JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.2PkjItXf4aAaFwG13xgycpApe27vNyZ7MMGm4qBqE00)

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

[](#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

[](#this-is-how-you-can-see-your-scan-results)

[![image](https://private-user-images.githubusercontent.com/132943905/346761314-552f994b-273d-4bb1-a9c3-863a574f9650.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUyMDQwNjUsIm5iZiI6MTc3NTIwMzc2NSwicGF0aCI6Ii8xMzI5NDM5MDUvMzQ2NzYxMzE0LTU1MmY5OTRiLTI3M2QtNGJiMS1hOWMzLTg2M2E1NzRmOTY1MC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDAzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwM1QwODA5MjVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT03YTZhNWExZWY0Yzc5ODU3MWIzNTU1NGI2NzM3NDhkY2ZmMzA5NzAxZjVlMmJjMDlkYjg4ZDI3NjZjZTkyNWYyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.PBUPatsF6pgoPCpzoB0QXAiP0f0xZCNtPo1cpB9G3sM)](https://private-user-images.githubusercontent.com/132943905/346761314-552f994b-273d-4bb1-a9c3-863a574f9650.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUyMDQwNjUsIm5iZiI6MTc3NTIwMzc2NSwicGF0aCI6Ii8xMzI5NDM5MDUvMzQ2NzYxMzE0LTU1MmY5OTRiLTI3M2QtNGJiMS1hOWMzLTg2M2E1NzRmOTY1MC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDAzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwM1QwODA5MjVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT03YTZhNWExZWY0Yzc5ODU3MWIzNTU1NGI2NzM3NDhkY2ZmMzA5NzAxZjVlMmJjMDlkYjg4ZDI3NjZjZTkyNWYyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.PBUPatsF6pgoPCpzoB0QXAiP0f0xZCNtPo1cpB9G3sM)[![image](https://private-user-images.githubusercontent.com/132943905/346762330-be167310-f447-40af-9521-615dae83ed6b.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUyMDQwNjUsIm5iZiI6MTc3NTIwMzc2NSwicGF0aCI6Ii8xMzI5NDM5MDUvMzQ2NzYyMzMwLWJlMTY3MzEwLWY0NDctNDBhZi05NTIxLTYxNWRhZTgzZWQ2Yi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDAzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwM1QwODA5MjVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT05ZTc2MGEzNTVjZDE2M2JkNjUyNDQ2MzcyMzcxMGNmNzBhZjc0Y2QwZmQ0ZTk5NTZiODJhMGIxNTc5MDBjOWIyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.01SLzK4NGWcn00ALWnMzZVWYh0gCsfUcDoY1c5Y1Q2s)](https://private-user-images.githubusercontent.com/132943905/346762330-be167310-f447-40af-9521-615dae83ed6b.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzUyMDQwNjUsIm5iZiI6MTc3NTIwMzc2NSwicGF0aCI6Ii8xMzI5NDM5MDUvMzQ2NzYyMzMwLWJlMTY3MzEwLWY0NDctNDBhZi05NTIxLTYxNWRhZTgzZWQ2Yi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwNDAzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDQwM1QwODA5MjVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT05ZTc2MGEzNTVjZDE2M2JkNjUyNDQ2MzcyMzcxMGNmNzBhZjc0Y2QwZmQ0ZTk5NTZiODJhMGIxNTc5MDBjOWIyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.01SLzK4NGWcn00ALWnMzZVWYh0gCsfUcDoY1c5Y1Q2s)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

9

Last Release

674d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/091fc7a1270ec9ada6489efe14da3e76f54b7878456c5e075d53e1b0ecf6e161?d=identicon)[dcyilmaz](/maintainers/dcyilmaz)

---

Top Contributors

[![duran004](https://avatars.githubusercontent.com/u/132943905?v=4)](https://github.com/duran004 "duran004 (15 commits)")

### Embed Badge

![Health badge](/badges/dcyilmaz-file-monitor/health.svg)

```
[![Health](https://phpackages.com/badges/dcyilmaz-file-monitor/health.svg)](https://phpackages.com/packages/dcyilmaz-file-monitor)
```

###  Alternatives

[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135192.6k5](/packages/statamic-rad-pack-runway)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
