Skip to content

Commit

Permalink
use php 84
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Nov 25, 2024
1 parent 466ef69 commit be9d67a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ protected function buildDockerCompose(array $services)

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

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

file_put_contents($this->laravel->basePath('docker-compose.yml'), $yaml);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class InstallCommand extends Command
protected $signature = 'sail:install
{--with= : The services that should be included in the installation}
{--devcontainer : Create a .devcontainer configuration directory}
{--php=8.3 : The PHP version that should be used}';
{--php=8.4 : The PHP version that should be used}';

/**
* The console command description.
Expand Down

0 comments on commit be9d67a

Please sign in to comment.