Skip to content

Commit be9d67a

Browse files
committed
use php 84
1 parent 466ef69 commit be9d67a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Console/Concerns/InteractsWithDockerComposeServices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ protected function buildDockerCompose(array $services)
107107

108108
$yaml = Yaml::dump($compose, Yaml::DUMP_OBJECT_AS_MAP);
109109

110-
$yaml = str_replace('{{PHP_VERSION}}', $this->hasOption('php') ? $this->option('php') : '8.3', $yaml);
110+
$yaml = str_replace('{{PHP_VERSION}}', $this->hasOption('php') ? $this->option('php') : '8.4', $yaml);
111111

112112
file_put_contents($this->laravel->basePath('docker-compose.yml'), $yaml);
113113
}

src/Console/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class InstallCommand extends Command
2020
protected $signature = 'sail:install
2121
{--with= : The services that should be included in the installation}
2222
{--devcontainer : Create a .devcontainer configuration directory}
23-
{--php=8.3 : The PHP version that should be used}';
23+
{--php=8.4 : The PHP version that should be used}';
2424

2525
/**
2626
* The console command description.

0 commit comments

Comments
 (0)