Skip to content

Commit

Permalink
Laravel version preview as repo branch name (#1727)
Browse files Browse the repository at this point in the history
  • Loading branch information
angeljqv authored Feb 4, 2025
1 parent 6d0974e commit f6439aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataCollector/LaravelCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function __construct(protected ApplicationContract $laravel)
public function collect()
{
return [
"version" => Str::of($this->laravel->version())->explode('.')->first(),
"version" => Str::of($this->laravel->version())->explode('.')->first() . '.x',
];
}

Expand Down

0 comments on commit f6439aa

Please sign in to comment.