Skip to content

Commit

Permalink
chore(deps): update to Symfony 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
owenvoke committed Jun 21, 2023
1 parent 8bf5b3e commit e313337
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 34 deletions.
70 changes: 37 additions & 33 deletions composer.json
Expand Up @@ -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": {
Expand Down
5 changes: 4 additions & 1 deletion src/Commands/BuildCommand.php
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit e313337

Please sign in to comment.