diff --git a/README.md b/README.md index f642f37..32923d7 100644 --- a/README.md +++ b/README.md @@ -30,18 +30,23 @@ Add a `config.php`, `config.php.dist` or `config.dist.php` to the directory from '1024M', + 'maxDepth' => 5, // Specify a part of a namespace to exclude classes from the analysis. // For example, when dependencies of third-party packages are not wanted to be analyzed. // Classes starting with the given namespace will not be analyzed and classes they depend on will not. // Note that if A depends on B and C, and B depends on C, and B is excluded, // the dependence from A to C will be shown, but the dependence from B to C will not be shown. 'endOfAnalysis' => [ - 'Foo\\', + 'PhpParser\\', ], // Specify a part of a namespace. // Classes starting with the given namespace will not be analyzed. 'excludeFromAnalysis' => [ - 'Foo\Bar\\', + 'PhpParser\Node\\', + ], + // Specify the relative path from the directory where the application is executed. + 'excludeFilePath' => [ + '', ], ]; ```