Skip to content

Commit

Permalink
Move binary file to project root
Browse files Browse the repository at this point in the history
  • Loading branch information
DZunke committed Apr 9, 2024
1 parent a93ba1b commit 3a819c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
},
"bin": [
"bin/panaly"
"panaly"
],
"require": {
"php": "^8.2",
Expand Down
2 changes: 1 addition & 1 deletion bin/panaly → panaly
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<arg name="colors"/>
<arg name="cache" value=".phpcs-cache"/>

<file>bin</file>
<file>panaly</file>
<file>src</file>
<file>tests</file>

Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ parameters:
checkMissingIterableValueType: false
level: 8
paths:
- bin
- panaly
- src
- tests

0 comments on commit 3a819c5

Please sign in to comment.