matteocacciola / cd-checker
Circular dependency checker
1.1.1
2022-04-15 14:58 UTC
Requires
- php: >=7.2
- symfony/console: ^5
Requires (Dev)
- mikey179/vfsstream: ^1.6
- overtrue/phplint: ^1.1
- phpstan/phpstan-shim: ^0.11
- phpunit/phpunit: ^7
- squizlabs/php_codesniffer: ^3.4
This package is auto-updated.
Last update: 2025-03-15 21:10:18 UTC
README
Circular dependency checker for PHP.
Features
Detection of circular dependencies between:
- Class A and class B
- Class A and class A (self-reference)
- Scan directories recursive
- Exclude pattern
- Ability to check a single file
Requirements
- PHP 7.2+
Installation
composer require matteocacciola/cd-checker
Usage
Linux
$ vendor/bin/cd-checker {params}
Windows
> vendor\bin\cd-checker {params}
Parameters
Shortcut | Name | Description |
---|---|---|
-h | --help | Display help message. |
-d | --directory=DIRECTORY | Directory to scan. [default: "./"] |
-f | --file=filename | Single file to scan. |
-x | --exclude=EXCLUDE | Files and directories to exclude. You can use exclude patterns ex. tests/* |
-q | --quiet | Do not output any message. |
-V | --version | Display this application version. |
none | --ansi | Force ANSI output. |
none | --no-ansi | Disable ANSI output. |
-n | --no-interaction | Do not ask any interactive question. |
-v -vv -vvv | --verbose | Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug. |
License
- MIT