diff --git a/composer.json b/composer.json index e997eeb7..1fbbca96 100644 --- a/composer.json +++ b/composer.json @@ -20,15 +20,15 @@ "require": { "php": "^8.0", "ext-json": "*", - "illuminate/console": "^9.0", - "illuminate/contracts": "^9.0", - "illuminate/database": "^9.0", - "illuminate/http": "^9.0", - "illuminate/log": "^9.0", - "illuminate/notifications": "^9.0", - "illuminate/routing": "^9.0", - "illuminate/support": "^9.0", - "illuminate/view": "^9.0", + "illuminate/console": "^9.21", + "illuminate/contracts": "^9.21", + "illuminate/database": "^9.21", + "illuminate/http": "^9.21", + "illuminate/log": "^9.21", + "illuminate/notifications": "^9.21", + "illuminate/routing": "^9.21", + "illuminate/support": "^9.21", + "illuminate/view": "^9.21", "moneyphp/money": "^3.2|^4.0", "nesbot/carbon": "^2.0", "stripe/stripe-php": "^7.39|^8.0", diff --git a/src/Console/WebhookCommand.php b/src/Console/WebhookCommand.php index fb043d08..524d79a1 100644 --- a/src/Console/WebhookCommand.php +++ b/src/Console/WebhookCommand.php @@ -44,12 +44,12 @@ public function handle() 'api_version' => $this->option('api-version') ?? Cashier::STRIPE_VERSION, ]); - $this->info('The Stripe webhook was created successfully. Retrieve the webhook secret in your Stripe dashboard and define it as an environment variable.'); + $this->components->info('The Stripe webhook was created successfully. Retrieve the webhook secret in your Stripe dashboard and define it as an environment variable.'); if ($this->option('disabled')) { $endpoint->update($endpoint->id, ['disabled' => true]); - $this->info('The Stripe webhook was disabled as requested. You may enable the webhook via the Stripe dashboard when needed.'); + $this->components->info('The Stripe webhook was disabled as requested. You may enable the webhook via the Stripe dashboard when needed.'); } } }