Skip to content

Commit e313337

Browse files
committed
chore(deps): update to Symfony 6.3
1 parent 8bf5b3e commit e313337

File tree

2 files changed

+41
-34
lines changed

2 files changed

+41
-34
lines changed

composer.json

Lines changed: 37 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -12,57 +12,61 @@
1212
{
1313
"name": "Nuno Maduro",
1414
"email": "[email protected]"
15+
},
16+
{
17+
"name": "Owen Voke",
18+
"email": "[email protected]"
1519
}
1620
],
1721
"require": {
1822
"php": "^8.1",
1923
"ext-json": "*",
2024
"dragonmantank/cron-expression": "^3.3.2",
21-
"illuminate/cache": "^10.4.1",
22-
"illuminate/collections": "^10.4.1",
23-
"illuminate/config": "^10.4.1",
24-
"illuminate/console": "^10.4.1",
25-
"illuminate/container": "^10.4.1",
26-
"illuminate/contracts": "^10.4.1",
27-
"illuminate/events": "^10.4.1",
28-
"illuminate/filesystem": "^10.4.1",
29-
"illuminate/process": "^10.4.1",
30-
"illuminate/support": "^10.4.1",
31-
"illuminate/testing": "^10.4.1",
32-
"laravel-zero/foundation": "^10.0",
33-
"league/flysystem": "^3.12.3",
25+
"illuminate/cache": "^10.13.5",
26+
"illuminate/collections": "^10.13.5",
27+
"illuminate/config": "^10.13.5",
28+
"illuminate/console": "^10.13.5",
29+
"illuminate/container": "^10.13.5",
30+
"illuminate/contracts": "^10.13.5",
31+
"illuminate/events": "^10.13.5",
32+
"illuminate/filesystem": "^10.13.5",
33+
"illuminate/process": "^10.13.5",
34+
"illuminate/support": "^10.13.5",
35+
"illuminate/testing": "^10.13.5",
36+
"laravel-zero/foundation": "^10.12",
37+
"league/flysystem": "^3.15.1",
3438
"nunomaduro/collision": "^6.4.0|^7.2.0",
3539
"nunomaduro/laravel-console-summary": "^1.9.1",
36-
"nunomaduro/laravel-console-task": "^1.8.0",
37-
"nunomaduro/laravel-desktop-notifier": "^2.7.0",
40+
"nunomaduro/laravel-console-task": "^1.8",
41+
"nunomaduro/laravel-desktop-notifier": "^2.7",
3842
"psr/log": "^1.1|^2.0|^3.0",
3943
"ramsey/uuid": "^4.7.3",
40-
"symfony/console": "^6.2.7",
41-
"symfony/error-handler": "^6.2.7",
42-
"symfony/event-dispatcher": "^6.2.7",
43-
"symfony/finder": "^6.2.7",
44-
"symfony/process": "^6.2.7",
45-
"symfony/var-dumper": "^6.2.7",
44+
"symfony/console": "^6.3",
45+
"symfony/error-handler": "^6.3",
46+
"symfony/event-dispatcher": "^6.3",
47+
"symfony/finder": "^6.3.0",
48+
"symfony/process": "^6.3.0",
49+
"symfony/var-dumper": "^6.3.0",
4650
"vlucas/phpdotenv": "^5.5"
4751
},
4852
"require-dev": {
4953
"guzzlehttp/guzzle": "^7.5",
50-
"illuminate/bus": "^10.4.1",
51-
"illuminate/database": "^10.4.1",
52-
"illuminate/http": "^10.4.1",
53-
"illuminate/log": "^10.4.1",
54-
"illuminate/queue": "^10.4.1",
55-
"illuminate/redis": "^10.4.1",
56-
"illuminate/view": "^10.4.1",
54+
"illuminate/bus": "^10.13.5",
55+
"illuminate/database": "^10.13.5",
56+
"illuminate/http": "^10.13.5",
57+
"illuminate/log": "^10.13.5",
58+
"illuminate/queue": "^10.13.5",
59+
"illuminate/redis": "^10.13.5",
60+
"illuminate/view": "^10.13.5",
5761
"laminas/laminas-text": "^2.10",
5862
"laravel-zero/phar-updater": "^1.3",
59-
"laravel/pint": "^1.6",
60-
"nunomaduro/laravel-console-dusk": "^1.11.0",
61-
"nunomaduro/laravel-console-menu": "^3.4.0",
63+
"laravel/pint": "^1.10.3",
64+
"nunomaduro/laravel-console-dusk": "^1.11",
65+
"nunomaduro/laravel-console-menu": "^3.4",
6266
"nunomaduro/termwind": "^1.15.1",
63-
"pestphp/pest": "^2.0.2",
67+
"pestphp/pest": "^2.8.1",
6468
"pestphp/pest-plugin-laravel": "^2.0",
65-
"phpstan/phpstan": "^1.10.7"
69+
"phpstan/phpstan": "^1.10.20"
6670
},
6771
"autoload": {
6872
"psr-4": {

src/Commands/BuildCommand.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,16 @@ public function getSubscribedSignals(): array
7575
return [\SIGINT];
7676
}
7777

78-
public function handleSignal(int $signal): void
78+
/** {@inheritdoc} */
79+
public function handleSignal(int $signal): int|false
7980
{
8081
if ($signal === \SIGINT) {
8182
if (self::$config !== null) {
8283
$this->clear();
8384
}
8485
}
86+
87+
return self::SUCCESS;
8588
}
8689

8790
/**

0 commit comments

Comments
 (0)