We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90cf5f3 commit 39952c1Copy full SHA for 39952c1
app/Providers/AppServiceProvider.php
@@ -6,6 +6,7 @@
6
use App\Services\ConfigManager;
7
use App\Services\DomainChiefService;
8
use Illuminate\Support\ServiceProvider;
9
+use LaravelZero\Framework\Components\Updater\Strategy\GithubReleasesStrategy;
10
11
class AppServiceProvider extends ServiceProvider
12
{
@@ -18,5 +19,9 @@ public function register(): void
18
19
20
$this->app->singleton(AuthService::class);
21
$this->app->singleton(DomainChiefService::class);
22
+
23
+ $this->app->afterResolving(GithubReleasesStrategy::class, function (GithubReleasesStrategy $strategy) {
24
+ $strategy->setPharName('chief.phar');
25
+ });
26
}
27
0 commit comments