We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5d180 commit 83a30d2Copy full SHA for 83a30d2
bin/lintcron
@@ -6,11 +6,9 @@ declare(strict_types=1);
6
use JPI\CronLinter\Command;
7
use Symfony\Component\Console\Application;
8
9
-// Attempt to load Composer autoloader from multiple locations
10
-// This supports both local development and when installed as a dependency
11
$paths = [
12
- "local" => __DIR__ . "/../vendor/autoload.php", // Local development
13
- "dependency" => __DIR__ . "/../../../autoload.php", // Installed as a dependency
+ "local" => __DIR__ . "/../vendor/autoload.php",
+ "dependency" => __DIR__ . "/../../../autoload.php",
14
];
15
16
$isDependency = false;
0 commit comments