We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b98f264 + 4645666 commit 6104f20Copy full SHA for 6104f20
CHANGELOG.md
@@ -6,6 +6,10 @@
6
7
* add own CREDITS.
8
9
+### Bug fix
10
+
11
+ * Fixed message when missing required argument.
12
13
## v0.0.3 (2024-01-30)
14
15
### Features
bin/php-vendor-credits
@@ -14,6 +14,6 @@ use Smeghead\PhpVendorCredits\Command\CreditsCommand;
use Symfony\Component\Console\Application;
16
$app = new Application('php-vendor-credits', '0.0.4');
17
-$app->add(new CreditsCommand('credits'));
18
-$app->setDefaultCommand('credits', true);
+$app->add(new CreditsCommand('php-vendor-credits'));
+$app->setDefaultCommand('php-vendor-credits', true);
19
$app->run();
0 commit comments