From e313337ca24966eef553b0f02bbad7f8d99c179e Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Wed, 21 Jun 2023 16:45:14 +0100 Subject: [PATCH] chore(deps): update to Symfony 6.3 --- composer.json | 70 ++++++++++++++++++----------------- src/Commands/BuildCommand.php | 5 ++- 2 files changed, 41 insertions(+), 34 deletions(-) diff --git a/composer.json b/composer.json index 9594bfd0..c3b140eb 100755 --- a/composer.json +++ b/composer.json @@ -12,57 +12,61 @@ { "name": "Nuno Maduro", "email": "enunomaduro@gmail.com" + }, + { + "name": "Owen Voke", + "email": "development@voke.dev" } ], "require": { "php": "^8.1", "ext-json": "*", "dragonmantank/cron-expression": "^3.3.2", - "illuminate/cache": "^10.4.1", - "illuminate/collections": "^10.4.1", - "illuminate/config": "^10.4.1", - "illuminate/console": "^10.4.1", - "illuminate/container": "^10.4.1", - "illuminate/contracts": "^10.4.1", - "illuminate/events": "^10.4.1", - "illuminate/filesystem": "^10.4.1", - "illuminate/process": "^10.4.1", - "illuminate/support": "^10.4.1", - "illuminate/testing": "^10.4.1", - "laravel-zero/foundation": "^10.0", - "league/flysystem": "^3.12.3", + "illuminate/cache": "^10.13.5", + "illuminate/collections": "^10.13.5", + "illuminate/config": "^10.13.5", + "illuminate/console": "^10.13.5", + "illuminate/container": "^10.13.5", + "illuminate/contracts": "^10.13.5", + "illuminate/events": "^10.13.5", + "illuminate/filesystem": "^10.13.5", + "illuminate/process": "^10.13.5", + "illuminate/support": "^10.13.5", + "illuminate/testing": "^10.13.5", + "laravel-zero/foundation": "^10.12", + "league/flysystem": "^3.15.1", "nunomaduro/collision": "^6.4.0|^7.2.0", "nunomaduro/laravel-console-summary": "^1.9.1", - "nunomaduro/laravel-console-task": "^1.8.0", - "nunomaduro/laravel-desktop-notifier": "^2.7.0", + "nunomaduro/laravel-console-task": "^1.8", + "nunomaduro/laravel-desktop-notifier": "^2.7", "psr/log": "^1.1|^2.0|^3.0", "ramsey/uuid": "^4.7.3", - "symfony/console": "^6.2.7", - "symfony/error-handler": "^6.2.7", - "symfony/event-dispatcher": "^6.2.7", - "symfony/finder": "^6.2.7", - "symfony/process": "^6.2.7", - "symfony/var-dumper": "^6.2.7", + "symfony/console": "^6.3", + "symfony/error-handler": "^6.3", + "symfony/event-dispatcher": "^6.3", + "symfony/finder": "^6.3.0", + "symfony/process": "^6.3.0", + "symfony/var-dumper": "^6.3.0", "vlucas/phpdotenv": "^5.5" }, "require-dev": { "guzzlehttp/guzzle": "^7.5", - "illuminate/bus": "^10.4.1", - "illuminate/database": "^10.4.1", - "illuminate/http": "^10.4.1", - "illuminate/log": "^10.4.1", - "illuminate/queue": "^10.4.1", - "illuminate/redis": "^10.4.1", - "illuminate/view": "^10.4.1", + "illuminate/bus": "^10.13.5", + "illuminate/database": "^10.13.5", + "illuminate/http": "^10.13.5", + "illuminate/log": "^10.13.5", + "illuminate/queue": "^10.13.5", + "illuminate/redis": "^10.13.5", + "illuminate/view": "^10.13.5", "laminas/laminas-text": "^2.10", "laravel-zero/phar-updater": "^1.3", - "laravel/pint": "^1.6", - "nunomaduro/laravel-console-dusk": "^1.11.0", - "nunomaduro/laravel-console-menu": "^3.4.0", + "laravel/pint": "^1.10.3", + "nunomaduro/laravel-console-dusk": "^1.11", + "nunomaduro/laravel-console-menu": "^3.4", "nunomaduro/termwind": "^1.15.1", - "pestphp/pest": "^2.0.2", + "pestphp/pest": "^2.8.1", "pestphp/pest-plugin-laravel": "^2.0", - "phpstan/phpstan": "^1.10.7" + "phpstan/phpstan": "^1.10.20" }, "autoload": { "psr-4": { diff --git a/src/Commands/BuildCommand.php b/src/Commands/BuildCommand.php index a4c9c1cf..7a1eb7c4 100644 --- a/src/Commands/BuildCommand.php +++ b/src/Commands/BuildCommand.php @@ -75,13 +75,16 @@ public function getSubscribedSignals(): array return [\SIGINT]; } - public function handleSignal(int $signal): void + /** {@inheritdoc} */ + public function handleSignal(int $signal): int|false { if ($signal === \SIGINT) { if (self::$config !== null) { $this->clear(); } } + + return self::SUCCESS; } /**