jeelsureja / laravel-duplication-checker
A Laravel package to detect code duplication.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/jeelsureja/laravel-duplication-checker
Requires
- php: ^7.3|^8.0
- laravel/framework: ^6|^7|^8|^9|^10|^11
This package is auto-updated.
Last update: 2025-12-10 14:06:25 UTC
README
This package detects code duplication in Laravel projects and provides warnings via a dedicated route.
Installation
-
Require the package via Composer:
composer require jeelsureja/laravel-duplication-checker
-
Publish the configuration file:
php artisan vendor:publish --tag=config --provider="Jeelsureja\LaravelDuplicationChecker\Providers\DuplicationServiceProvider" -
Run the duplication check command:
php artisan code:check-duplication
Configuration
The configuration file config/duplication.php allows you to customize the directories to be excluded and the route for warnings.
Usage
Navigate to the configured route (default: /duplication/warnings) to see the duplication warnings.