Skip to content

Commit

Permalink
Fix path to Composer autoload.php
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-tech committed Oct 5, 2023
1 parent 97dd870 commit d530533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/pdepend-summary-formatter
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ declare(strict_types=1);
use AndreyTech\Pdepend\Summary\Formatter\Application;

(static function() {
foreach ([ '/../', '/../vendor/' ] as $path) {
foreach ([ '/../../../', '/../vendor/' ] as $path) {
$autoloadFile = __DIR__ . $path . 'autoload.php';
if (is_file($autoloadFile)) {
if (is_readable($autoloadFile)) {
Expand Down

0 comments on commit d530533

Please sign in to comment.