diff --git a/composer.json b/composer.json index 30ff5a4..7052d36 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ } }, "bin": [ - "bin/panaly" + "panaly" ], "require": { "php": "^8.2", diff --git a/bin/panaly b/panaly similarity index 98% rename from bin/panaly rename to panaly index 486687c..8be79bd 100755 --- a/bin/panaly +++ b/panaly @@ -17,7 +17,7 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\SingleCommandApplication; use Symfony\Component\Console\Style\SymfonyStyle; -require __DIR__ . '/../vendor/autoload.php'; +require __DIR__ . '/vendor/autoload.php'; (new SingleCommandApplication()) ->setName('Panaly - Project Analyzer') diff --git a/phpcs.xml.dist b/phpcs.xml.dist index a4a3855..0b32e8e 100644 --- a/phpcs.xml.dist +++ b/phpcs.xml.dist @@ -5,7 +5,7 @@ - bin + panaly src tests diff --git a/phpstan.neon b/phpstan.neon index 67ad2ec..e9c3f3b 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -6,6 +6,6 @@ parameters: checkMissingIterableValueType: false level: 8 paths: - - bin + - panaly - src - tests